diff --git a/.github/workflows/app-deploy.yaml b/.github/workflows/app-deploy.yaml index 5a740a3b6..679ec2830 100644 --- a/.github/workflows/app-deploy.yaml +++ b/.github/workflows/app-deploy.yaml @@ -16,6 +16,8 @@ on: - "fad" - "store" - "fad_store" + - "ios_store" + - "android_store" jobs: build_and_deploy: @@ -37,6 +39,7 @@ jobs: cache-key: flutter-:os:-:channel:-:version:-:arch:-:hash:-${{ hashFiles('**/pubspec.lock') }} - uses: bluefireteam/melos-action@v3 - uses: actions/setup-java@v4 + if: inputs.deploy_target != 'store_ios' with: distribution: zulu java-version: "17.x" @@ -47,6 +50,7 @@ jobs: # iOS certs - name: Making sure the iOS certificates and profiles are installed + if: inputs.deploy_target != 'store_android' run: melos build:ios_match_assure # Dart/Flutter @@ -64,7 +68,7 @@ jobs: # Build and deploy to FAD - name: Build and deploy to FAD - if: inputs.deploy_target == 'fad' || inputs.deploy_target == '' + if: inputs.deploy_target == 'fad' run: melos build:deploy_fad env: SENTRY_DSN: ${{ env.SENTRY_DSN }} @@ -82,3 +86,17 @@ jobs: run: melos build:deploy_fad_store env: SENTRY_DSN: ${{ env.SENTRY_DSN }} + + # Build and deploy to Test Flight + - name: Build and deploy to Test Flight + if: inputs.deploy_target == 'ios_store' + run: melos build:deploy_ios_store + env: + SENTRY_DSN: ${{ env.SENTRY_DSN }} + + # Build and deploy to Google Play + - name: Build and deploy to Google Play + if: inputs.deploy_target == 'android_store' + run: melos build:deploy_android_store + env: + SENTRY_DSN: ${{ env.SENTRY_DSN }} \ No newline at end of file diff --git a/.gitignore b/.gitignore index e9c59c875..ebf33815a 100644 --- a/.gitignore +++ b/.gitignore @@ -128,7 +128,7 @@ pubspec_overrides.yaml .idea # Secrets -android/crystal.keystore +android/sparx.keystore android/key.properties android/fastlane/GooglePlayServiceAccount.json ios/fastlane/AuthKey_L4N29B6Z42.p8 diff --git a/android/app/build.gradle b/android/app/build.gradle index d8a0d1e0c..68d107c6a 100644 --- a/android/app/build.gradle +++ b/android/app/build.gradle @@ -48,7 +48,7 @@ android { defaultConfig { // TODO: Specify your own unique Application ID (https://developer.android.com/studio/build/application-id.html). - applicationId "com.broxus.crystal.app" + applicationId "com.broxus.sparx.app" minSdkVersion 21 targetSdkVersion flutter.targetSdkVersion versionCode flutterVersionCode.toInteger() @@ -78,17 +78,17 @@ android { production { dimension "default" applicationIdSuffix "" - manifestPlaceholders = [appName: "App"] + manifestPlaceholders = [appName: "SparX Wallet"] } staging { dimension "default" applicationIdSuffix ".stg" - manifestPlaceholders = [appName: "[STG] App"] + manifestPlaceholders = [appName: "[STG] SparX Wallet"] } development { dimension "default" applicationIdSuffix ".dev" - manifestPlaceholders = [appName: "[DEV] App"] + manifestPlaceholders = [appName: "[DEV] SparX Wallet"] } } diff --git a/android/app/src/debug/AndroidManifest.xml b/android/app/src/debug/AndroidManifest.xml index 6fc78b2ce..1132cb1fd 100644 --- a/android/app/src/debug/AndroidManifest.xml +++ b/android/app/src/debug/AndroidManifest.xml @@ -1,5 +1,5 @@ + package="com.broxus.sparx.app"> diff --git a/android/app/src/main/AndroidManifest.xml b/android/app/src/main/AndroidManifest.xml index 505c95174..c1c7b41dc 100644 --- a/android/app/src/main/AndroidManifest.xml +++ b/android/app/src/main/AndroidManifest.xml @@ -1,5 +1,5 @@ + package="com.broxus.sparx.app"> diff --git a/android/app/src/main/kotlin/com/broxus/crystal/MainActivity.kt b/android/app/src/main/kotlin/com/broxus/sparx/MainActivity.kt similarity index 78% rename from android/app/src/main/kotlin/com/broxus/crystal/MainActivity.kt rename to android/app/src/main/kotlin/com/broxus/sparx/MainActivity.kt index 6430c46ed..13461f505 100644 --- a/android/app/src/main/kotlin/com/broxus/crystal/MainActivity.kt +++ b/android/app/src/main/kotlin/com/broxus/sparx/MainActivity.kt @@ -1,4 +1,4 @@ -package com.broxus.crystal.app +package com.broxus.sparx.app import io.flutter.embedding.android.FlutterFragmentActivity diff --git a/android/app/src/profile/AndroidManifest.xml b/android/app/src/profile/AndroidManifest.xml index d4f682d08..740cdef4c 100644 --- a/android/app/src/profile/AndroidManifest.xml +++ b/android/app/src/profile/AndroidManifest.xml @@ -1,5 +1,5 @@ + package="com.broxus.sparx.app"> diff --git a/android/fastlane/Appfile b/android/fastlane/Appfile index fba5646ad..9a10b1f34 100644 --- a/android/fastlane/Appfile +++ b/android/fastlane/Appfile @@ -1,2 +1,2 @@ json_key_file("fastlane/GooglePlayServiceAccount.json") # Path to the json secret file - Follow https://docs.fastlane.tools/actions/supply/#setup to get one -package_name("com.broxus.crystal.app") # e.g. com.krausefx.app +package_name("com.broxus.sparx.app") # e.g. com.krausefx.app diff --git a/android/fastlane/Fastfile b/android/fastlane/Fastfile index 1c8ec9899..c6ef47dfd 100644 --- a/android/fastlane/Fastfile +++ b/android/fastlane/Fastfile @@ -35,7 +35,7 @@ platform :android do desc "Deploy a new build to the FAD" lane :deploy_fad do |options| firebase_app_distribution( - app: "1:1017783238389:android:23c9e07bee6cc2ef2e4fbc", + app: "1:1017783238389:android:de95e7bcfdb82f8f2e4fbc", groups: "qa", android_artifact_type: "APK", android_artifact_path: "../build/app/outputs/flutter-apk/app-production-release.apk", diff --git a/ios/Pods/Pods.xcodeproj/project.pbxproj b/ios/Pods/Pods.xcodeproj/project.pbxproj index e259fb210..93fabe77f 100644 --- a/ios/Pods/Pods.xcodeproj/project.pbxproj +++ b/ios/Pods/Pods.xcodeproj/project.pbxproj @@ -9,15 +9,15 @@ /* Begin PBXAggregateTarget section */ 0A4338C5C8BD51549298BECF630A6D57 /* MLKitCommon */ = { isa = PBXAggregateTarget; - buildConfigurationList = CDB5A4CA5BB4AC4DBCFF526483339259 /* Build configuration list for PBXAggregateTarget "MLKitCommon" */; + buildConfigurationList = 9329A4849A37F428C5AD6D4A8D05274D /* Build configuration list for PBXAggregateTarget "MLKitCommon" */; buildPhases = ( ); dependencies = ( - EA822EB0C39C4F8EE1738A847D153386 /* PBXTargetDependency */, - E95463F127BA1837E34C9CBF087E5505 /* PBXTargetDependency */, - 9D7A2C471648FB514E243C8C97A54A29 /* PBXTargetDependency */, - 67916631E49A0B13CFE1C333587B8CFA /* PBXTargetDependency */, - ABD05C8F36AE71E9211C09AB142A2728 /* PBXTargetDependency */, + D6FD12518A8FBD6BB68BCB77C9EA21BB /* PBXTargetDependency */, + 6ECC556CF29E9877D19EDE31F167AF15 /* PBXTargetDependency */, + 3F00052C871BE4AD4E785FB2A74ECC7F /* PBXTargetDependency */, + 6397FDFBB27EAA986573AE218264A573 /* PBXTargetDependency */, + C39173387B4A3DE77FF429C5BE5847EE /* PBXTargetDependency */, ); name = MLKitCommon; }; @@ -36,25 +36,25 @@ buildPhases = ( ); dependencies = ( - F43A5657C3D186A548BD49EDA0C4135D /* PBXTargetDependency */, - CF37E7576448CF68094CA2776E07F5DF /* PBXTargetDependency */, + 4961A9F689C9A0B37C83131403D12B61 /* PBXTargetDependency */, + ABF983591306EEC9AE39EC61C6453A2F /* PBXTargetDependency */, ); name = GoogleMLKit; }; 7EBF8091921DE5FE69E2062F2FAD948D /* MLKitBarcodeScanning */ = { isa = PBXAggregateTarget; - buildConfigurationList = 8419826F55DCF1016B39C34048DF8177 /* Build configuration list for PBXAggregateTarget "MLKitBarcodeScanning" */; + buildConfigurationList = 5E3843E27B09CCDE662E4ACAFA824713 /* Build configuration list for PBXAggregateTarget "MLKitBarcodeScanning" */; buildPhases = ( ); dependencies = ( - EF0C7E3B162369214F0FC57ADBDB9B2A /* PBXTargetDependency */, - F310AB62EF0B25B50FE4D524534AFF11 /* PBXTargetDependency */, + AA1F6692717A5B99C82FB11802495FDB /* PBXTargetDependency */, + B37AFEC8B4C8FF01891F2B4F584A505D /* PBXTargetDependency */, ); name = MLKitBarcodeScanning; }; BE3B5914C1194353E85796E3EE3CE245 /* MLImage */ = { isa = PBXAggregateTarget; - buildConfigurationList = AE28815A0751D98A6554A013CAE2F100 /* Build configuration list for PBXAggregateTarget "MLImage" */; + buildConfigurationList = 3FBBBF024BD749445C652CDE12D51CE8 /* Build configuration list for PBXAggregateTarget "MLImage" */; buildPhases = ( ); dependencies = ( @@ -63,14 +63,14 @@ }; F1D55369E4C8976F396F83588DAC03C4 /* MLKitVision */ = { isa = PBXAggregateTarget; - buildConfigurationList = 05C3F26891213FD192492C715B0B6F89 /* Build configuration list for PBXAggregateTarget "MLKitVision" */; + buildConfigurationList = 10D1D6D3E6815921603A1C524849E988 /* Build configuration list for PBXAggregateTarget "MLKitVision" */; buildPhases = ( ); dependencies = ( - 2AFDC892573580F8E71A13D3DD82658A /* PBXTargetDependency */, - 261E3CF00420EED45F0D60505A67E0C1 /* PBXTargetDependency */, - 0C92BC4019A73094B1733E3456FEEC69 /* PBXTargetDependency */, - A02318C1E93B6C159C04B124742C0D71 /* PBXTargetDependency */, + A5A336B12A05E681A7591F4CC0DE55FE /* PBXTargetDependency */, + 81512204B9D245A87F22AB3365D91680 /* PBXTargetDependency */, + 8395B24B37872950E15E2DAC67B72E31 /* PBXTargetDependency */, + 3335174FE33CAFBF45004A557A96936C /* PBXTargetDependency */, ); name = MLKitVision; }; @@ -78,69 +78,66 @@ /* Begin PBXBuildFile section */ 0002F2A1AA4DE5D8FD81954DEC4F097E /* GoogleDataTransport.h in Headers */ = {isa = PBXBuildFile; fileRef = F2BDF2B923BDB6FF2073D24479378FEB /* GoogleDataTransport.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 00105ED0DF4C5058D08BED554B7F7014 /* PrivacyInfo.xcprivacy in Resources */ = {isa = PBXBuildFile; fileRef = D82BA11E205906E2BA0A95C09783BB53 /* PrivacyInfo.xcprivacy */; }; 0047A30DDC79F4EF1C7D72DE0268F5D0 /* SentryDataCategoryMapper.h in Headers */ = {isa = PBXBuildFile; fileRef = 8AD8D46F45F767AF14F9282C1CDB559D /* SentryDataCategoryMapper.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 00640BA206374DD6AC2A2A1AEAAF5EBE /* FBLPromise+Validate.h in Headers */ = {isa = PBXBuildFile; fileRef = 8597015626F1920EB116375530506FB9 /* FBLPromise+Validate.h */; settings = {ATTRIBUTES = (Public, ); }; }; 007899B184DE4D68B69B65CFA3E73B8D /* SentrySession.m in Sources */ = {isa = PBXBuildFile; fileRef = B0266170C0D4DBBF9F7BC95EE1E0DDC4 /* SentrySession.m */; }; - 009FDF73B897D347701AA8E9C2994370 /* share_plus-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 4AB5B552470F1A73FB23EF2F07B3AFC1 /* share_plus-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 00EA9ED7F54CA5139A1CD236B56394A5 /* GULAppEnvironmentUtil.m in Sources */ = {isa = PBXBuildFile; fileRef = 65C9D39304783530FB1FE7D349E78FC1 /* GULAppEnvironmentUtil.m */; }; + 009C27249E34BDB134976D41E28EA351 /* FBLPromisePrivate.h in Headers */ = {isa = PBXBuildFile; fileRef = 153CD7074435D16BE02233B8AF13E1CF /* FBLPromisePrivate.h */; settings = {ATTRIBUTES = (Private, ); }; }; + 009FDF73B897D347701AA8E9C2994370 /* share_plus-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = E8751A9FB91731B86BF6CF616801081E /* share_plus-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 00B3C483F69DC78601705E04629CE433 /* PullToRefreshOptions.swift in Sources */ = {isa = PBXBuildFile; fileRef = A304FAD7D7CD9CD11A567518E3FC788F /* PullToRefreshOptions.swift */; }; 01380EC62278A5D1B4DF79994EBC3EC5 /* SentryHttpTransport.m in Sources */ = {isa = PBXBuildFile; fileRef = 74372D0DD7FD0D18E6E5233A94D5038F /* SentryHttpTransport.m */; }; - 014B3A844F250498686A51D57F5C33ED /* messages.g.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4038A0998F79A73BFA9DF39D51652B5A /* messages.g.swift */; }; 0174C9310EF8D51091BC841DDF817818 /* SentryReachability.m in Sources */ = {isa = PBXBuildFile; fileRef = 368E58C91548BBC8911410F6B303AEA4 /* SentryReachability.m */; }; 017CA760E0CCCE0A63815FCBFF3B5EE2 /* SentryUser+Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 78BD36AEBA3A750EE317E8EF0E8518E2 /* SentryUser+Private.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 019896AAB126AA4C186CA9E368EF2862 /* AssistantPermissionStrategy.m in Sources */ = {isa = PBXBuildFile; fileRef = A34F8113D9F17018AB345ABDAF1E5C6F /* AssistantPermissionStrategy.m */; }; 01B6FEFD4DF22EDB9411B42D9179252B /* GDTCORTransport.h in Headers */ = {isa = PBXBuildFile; fileRef = 654A4874CA897A7AC265EC6B88A8741F /* GDTCORTransport.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 022A0B8AFBD717956F6EE1EFAA77774C /* messages.g.m in Sources */ = {isa = PBXBuildFile; fileRef = 9311A895A54ADD4AFDA779D440EBED1A /* messages.g.m */; }; + 01D86DA5C05B5EF4F07ADB95D80419B5 /* FBLPromise+Validate.h in Headers */ = {isa = PBXBuildFile; fileRef = 8597015626F1920EB116375530506FB9 /* FBLPromise+Validate.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 021D831C78CB46B5EBE5F0FEB5D5BC03 /* messages.g.swift in Sources */ = {isa = PBXBuildFile; fileRef = E488D200DB706C89186820346F95811C /* messages.g.swift */; }; 0263E41A7FA574B7BD6088BD39096497 /* GDTCORFlatFileStorage.m in Sources */ = {isa = PBXBuildFile; fileRef = 0E4B86453487A1B28A3F6E54AADBD43C /* GDTCORFlatFileStorage.m */; }; - 030D4B50FE77903554BF28760542390A /* PathMonitorConnectivityProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = BF0E1C8D5647CF1E6CF843C8B0A62219 /* PathMonitorConnectivityProvider.swift */; }; 0330F60E9BA26F9C95FB0DB995B38608 /* SentryFramesTracker.h in Headers */ = {isa = PBXBuildFile; fileRef = C029EB6E01FDF6977F5AC6D8BFB09843 /* SentryFramesTracker.h */; settings = {ATTRIBUTES = (Public, ); }; }; 03A8E9ABDF67D00C72E0CB477254A45B /* GDTCORConsoleLogger.m in Sources */ = {isa = PBXBuildFile; fileRef = 32CA63FFD51517DB532D829B2B216ECC /* GDTCORConsoleLogger.m */; }; 03B679D15CDE7B3B593EC7B5CC02C3F9 /* SentryNSProcessInfoWrapper.mm in Sources */ = {isa = PBXBuildFile; fileRef = 9475D70B0E0A8A621E78E6630CF813EE /* SentryNSProcessInfoWrapper.mm */; }; 03F83442730897675EFC792693377D21 /* SentrySwizzleWrapper.h in Headers */ = {isa = PBXBuildFile; fileRef = 47ADF48D3C8A8605927DC27056FBC07E /* SentrySwizzleWrapper.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 040C429E42D884969A4C839E2D16D1B7 /* WKFrameInfo.swift in Sources */ = {isa = PBXBuildFile; fileRef = B5623F4B30FB287E825AE3CDACDF4B13 /* WKFrameInfo.swift */; }; - 042EFA8B4B8C4354D59ABE49F962817E /* SqfliteImport.h in Headers */ = {isa = PBXBuildFile; fileRef = BF73A1DD91E4C963ADC8287990D42690 /* SqfliteImport.h */; settings = {ATTRIBUTES = (Public, ); }; }; 044AE0D9365A1907FB8D39544893A783 /* SentryMessage.m in Sources */ = {isa = PBXBuildFile; fileRef = 714B4EA1A7762E2409B73BC76EF83933 /* SentryMessage.m */; }; 0455940408087937E1D65A4AE32AA324 /* GDTCOREndpoints.m in Sources */ = {isa = PBXBuildFile; fileRef = 17885CA53B9E47BCDBC1272F41083C90 /* GDTCOREndpoints.m */; }; - 04934A4CA9BE6CE313C82400C5C94384 /* FBLPromise+Always.h in Headers */ = {isa = PBXBuildFile; fileRef = 4A09D78CC9FBB620DE2A509B0844C4B6 /* FBLPromise+Always.h */; settings = {ATTRIBUTES = (Public, ); }; }; 04D38CA380B8994D28234E7659F78C58 /* SentryBinaryImageCache.m in Sources */ = {isa = PBXBuildFile; fileRef = 3D5033666163B2544489B2198D9308CD /* SentryBinaryImageCache.m */; }; 04E06796E110BADF910D01F0CDA33990 /* GDTCOREventDataObject.h in Headers */ = {isa = PBXBuildFile; fileRef = FC0FBFF18FDA11080C3ECB036AC3FD7F /* GDTCOREventDataObject.h */; settings = {ATTRIBUTES = (Public, ); }; }; 05289BE503943061D27B93FD648AE8A9 /* GDTCORReachability.m in Sources */ = {isa = PBXBuildFile; fileRef = 08BACB3B54C8516ED740E1005B106657 /* GDTCORReachability.m */; }; 0543C215B681B63732B2BE0383C5A092 /* SentryCrashMonitor_MachException.c in Sources */ = {isa = PBXBuildFile; fileRef = 519EA7602DFE4CFDF6CB4781415C899C /* SentryCrashMonitor_MachException.c */; }; 05AD38909AD5E38D65293B03C2AD1057 /* SentryLog.m in Sources */ = {isa = PBXBuildFile; fileRef = 802447014EE6E0C4BD02181E61CA12E9 /* SentryLog.m */; }; - 05DF1BB44915A71207E41DCF23D2B91E /* PromisePolyfillJS.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9E4E9B138AD3A7B83BB97A5DD80597A1 /* PromisePolyfillJS.swift */; }; - 064F1DEF778AB2E5783154BEACD46ADF /* SslCertificate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5AD6A568D91726A600D976F468BB6640 /* SslCertificate.swift */; }; + 05B8E0E91330A0B7F7ED93BA95F9E244 /* NSURLSession+GULPromises.h in Headers */ = {isa = PBXBuildFile; fileRef = 0C45BC473744E822B32F54305A7C1C5C /* NSURLSession+GULPromises.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 05D166185C302E2B8AD29BCE9AFC4358 /* Options.swift in Sources */ = {isa = PBXBuildFile; fileRef = B51AB66175F65EE203A9E32FC39C5F8A /* Options.swift */; }; 068A42DFEAAFC7C62D8796DC03C5C4D2 /* SentryMechanism.h in Headers */ = {isa = PBXBuildFile; fileRef = B829578B6A0A247E070D52731A1267D0 /* SentryMechanism.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 06969C56F854275BFC813B7DABA5F2B8 /* image_picker_ios-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = D81C5771F3599F2F10607CA2F1979FF8 /* image_picker_ios-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 069D2A9FCA49920F550F0942618061AD /* FLTPHPickerSaveImageToPathOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = DD4CC6F89B4F2C3742F46E44B5897956 /* FLTPHPickerSaveImageToPathOperation.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 06D1DCA1663C6640380A600D88C38CB7 /* SwiftConnectivityPlusPlugin.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9EC90CC0D11D7BD33BBCF9587F1DF72A /* SwiftConnectivityPlusPlugin.swift */; }; 0723912428A04D14413E2437279EFE13 /* SentryFramesTrackingIntegration.h in Headers */ = {isa = PBXBuildFile; fileRef = 6F1934F60BF07A8AB7C46FDD16517DAA /* SentryFramesTrackingIntegration.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 074DF06981FFD33C5698F9069B6738EB /* flutter_keyboard_visibility-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = A4F4C450535A5C9367D63B8C4834A43E /* flutter_keyboard_visibility-dummy.m */; }; + 074DF06981FFD33C5698F9069B6738EB /* flutter_keyboard_visibility-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = DFFFF28C3D894A9BACC123EF9EDC9BC3 /* flutter_keyboard_visibility-dummy.m */; }; 077E156FF7904E6B7117C45C40656E5B /* SentryException.m in Sources */ = {isa = PBXBuildFile; fileRef = C2BB8A07137E9EF57770E66673707081 /* SentryException.m */; }; 083CAF8500C638F711F789A6886080F5 /* SentryRequest.m in Sources */ = {isa = PBXBuildFile; fileRef = D8A0D5D550BAC7574D33F4DC914B0511 /* SentryRequest.m */; }; 089ADF8A980BC2F916111D14DB616E0D /* GDTCORProductData.h in Headers */ = {isa = PBXBuildFile; fileRef = 9EAAAD78DEA77B690B4E84D9496A6953 /* GDTCORProductData.h */; settings = {ATTRIBUTES = (Public, ); }; }; 08A53F017DB4786EF59353A9B2C47AD8 /* SentryMechanismMeta.h in Headers */ = {isa = PBXBuildFile; fileRef = 772503DD4BB5FCC9ABCCD8D5EFEDA011 /* SentryMechanismMeta.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 08C442A4442BE9661DC1005E0D850B78 /* package_info_plus-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 1463A6B033371A2348BD00873FFC7A0B /* package_info_plus-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 08B342BA115CE499B868985387B1C82C /* IsAppEncrypted.h in Headers */ = {isa = PBXBuildFile; fileRef = 47AEED267729EF28C857BFD49B6901B6 /* IsAppEncrypted.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 08C442A4442BE9661DC1005E0D850B78 /* package_info_plus-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = E006D77E6DC74A8610E6EC72AB4CD61A /* package_info_plus-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; 08D7AE54DB76E814250DB9A1E0D6B621 /* SentryRedactOptions.swift in Sources */ = {isa = PBXBuildFile; fileRef = 64874E43B1DAE151A3B8322504F4530D /* SentryRedactOptions.swift */; }; - 092AEE0E9C45C0CD15F3A837D8842F0E /* GoogleUtilities-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = B6E28F6FF5B761C729893AEB166B5C3F /* GoogleUtilities-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; 092AEF50F7D0F8399D0A2970D590B557 /* SentryHub.m in Sources */ = {isa = PBXBuildFile; fileRef = 94AE20587232E7DF56F7EA6449283F31 /* SentryHub.m */; }; - 092CE3672CF7158750323BA6E9EA8ECE /* Util.swift in Sources */ = {isa = PBXBuildFile; fileRef = DFFC57A844E7FB0F38C256F61F54290B /* Util.swift */; }; 096F55FD8BFBCCAC20A429E07A18C730 /* SentryRateLimitParser.m in Sources */ = {isa = PBXBuildFile; fileRef = 877D3A3234B2164914134CC7D96B1B33 /* SentryRateLimitParser.m */; }; - 09BF135F7B79382F8D86BCB65D78004D /* frb.h in Headers */ = {isa = PBXBuildFile; fileRef = 1AAB4FF7835FA52AF5768D7967082304 /* frb.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 09724DAD44E320E21A781574E315A3DC /* GoogleUtilitiesComponents-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 0FCD88646EB517501FB94E952A18D859 /* GoogleUtilitiesComponents-dummy.m */; }; 09C7E7B538F2D31C5E4A21DFBC3D0DE6 /* SentryMetricProfiler.h in Headers */ = {isa = PBXBuildFile; fileRef = D5C7191ECF1ED867D4ECAD6B9413951B /* SentryMetricProfiler.h */; settings = {ATTRIBUTES = (Project, ); }; }; 09E41A4A477883590E365D80586B8A64 /* SentryReplayType.m in Sources */ = {isa = PBXBuildFile; fileRef = 9A7F5A88F466DB4311130968B794E9A0 /* SentryReplayType.m */; }; 09FC84DF94B390AD42F39D0D77174AC2 /* NSArray+SentrySanitize.m in Sources */ = {isa = PBXBuildFile; fileRef = 4B4366A8CCC1BFEA1FF2BE6B23714DA5 /* NSArray+SentrySanitize.m */; }; 0A098AD75FBFB45E3D8527891219595F /* SentryCrashIntegration.m in Sources */ = {isa = PBXBuildFile; fileRef = 749F913FFC366232574EB5716AE6B321 /* SentryCrashIntegration.m */; }; 0A14B4984A946893EE7F14549246C4DA /* SentrySampling.m in Sources */ = {isa = PBXBuildFile; fileRef = A1CB53D620182A2DB5EEFB47514FC3B4 /* SentrySampling.m */; }; - 0A5B26701F647A4F946FD7442DBBF9FC /* BackgroundRefreshStrategy.m in Sources */ = {isa = PBXBuildFile; fileRef = 0F358A90004752CDA0382091B81438F4 /* BackgroundRefreshStrategy.m */; }; + 0AB8EB015BE660CE8AAB6262C9736424 /* SentryFlutterPlugin.m in Sources */ = {isa = PBXBuildFile; fileRef = 226983EE58B5E76F8272F93407904185 /* SentryFlutterPlugin.m */; }; + 0B13ACD9473D2D29DB7B6CD3817DD476 /* GTMDebugSelectorValidation.h in Headers */ = {isa = PBXBuildFile; fileRef = D03F3816E83144F5FB41ECDA4FC0736E /* GTMDebugSelectorValidation.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 0B3A97862DD36F6CB266AE6EF1921203 /* GTMDefines.h in Headers */ = {isa = PBXBuildFile; fileRef = 0AB9AD35C4BCCC119216B7F1F77863C4 /* GTMDefines.h */; settings = {ATTRIBUTES = (Public, ); }; }; 0B746D6C38F54616817A29108F2F53A3 /* Pods-Runner-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = E8CE1A628C6948B7970233E62542AF67 /* Pods-Runner-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 0BF98F0EE477FF3185C5145F1413CF25 /* FBLPromise+Timeout.m in Sources */ = {isa = PBXBuildFile; fileRef = 01EC835E20981E532F873F21165CD863 /* FBLPromise+Timeout.m */; }; 0C061B5E867A9CE1620E9BD9AC7EC107 /* SentryBreadcrumbTracker.h in Headers */ = {isa = PBXBuildFile; fileRef = 491531768C32C0AEE0CAABDAA7FCDA50 /* SentryBreadcrumbTracker.h */; settings = {ATTRIBUTES = (Project, ); }; }; 0C0E48F31B0D62BF5E96B49A8CBF5D62 /* GDTCORMetrics.h in Headers */ = {isa = PBXBuildFile; fileRef = D74CA78FE4B62FCF95B7C2C421F203D4 /* GDTCORMetrics.h */; settings = {ATTRIBUTES = (Project, ); }; }; 0C1405C0C006AD5F5FB83006665B73B5 /* DistributionMetric.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1737892475FBD7AB070886C7255ABEF3 /* DistributionMetric.swift */; }; + 0C9F4C5B978FD16890D4F3602CDD4D98 /* URLProtectionSpace.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5A887D92CB0E550F051157CDAA550DB9 /* URLProtectionSpace.swift */; }; 0CBA21A494E7E19A31216FDAEB355C8A /* SentrySpanId.m in Sources */ = {isa = PBXBuildFile; fileRef = 8286B8A0F0BF6C2C83170D0E827292EA /* SentrySpanId.m */; }; 0CDE274D72F2488FB49460F4226971EF /* SentryLevelMapper.h in Headers */ = {isa = PBXBuildFile; fileRef = 6B7A732473B9BB85D8E11B1181192D53 /* SentryLevelMapper.h */; settings = {ATTRIBUTES = (Project, ); }; }; 0CECF18DAA96248128D9281CDEBFB7AF /* SentryTransport.h in Headers */ = {isa = PBXBuildFile; fileRef = 69D6BFC881DC87323E29E41288C3496B /* SentryTransport.h */; settings = {ATTRIBUTES = (Project, ); }; }; 0CF4CB63CEE763320D7DE523E5A08086 /* SentrySampleDecision.m in Sources */ = {isa = PBXBuildFile; fileRef = 494E864A2F2D33801C2FAA11D9AAFEBE /* SentrySampleDecision.m */; }; - 0D15A2D6F81757F4E16EE48904442091 /* PrivacyInfo.xcprivacy in Resources */ = {isa = PBXBuildFile; fileRef = 6BA092AC59C062C1185FE39A96FB0D4E /* PrivacyInfo.xcprivacy */; }; - 0D1A3B5DE3A5A0512C94225F4EB82244 /* NotificationPermissionStrategy.h in Headers */ = {isa = PBXBuildFile; fileRef = 5A4B7642BFE42B7B3971DC137604205F /* NotificationPermissionStrategy.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 0D79C957B7B1D609C3904D95544278B6 /* FLTImagePickerMetaDataUtil.h in Headers */ = {isa = PBXBuildFile; fileRef = ADE80D35938A01D1B97F72775005E152 /* FLTImagePickerMetaDataUtil.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 0DB7FCC0BAED245733DDF501F0DD1948 /* FBLPromise+Async.h in Headers */ = {isa = PBXBuildFile; fileRef = 414E03E2449868C89991D1917F2073B4 /* FBLPromise+Async.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 0E13854E0CDF1884F91411456DE4CDC9 /* FLTImagePickerPlugin.m in Sources */ = {isa = PBXBuildFile; fileRef = 40A46BC81300CEBE4F557D47E588C7F8 /* FLTImagePickerPlugin.m */; }; 0E39D5A9E051382DCB890CF93F66E40D /* external_privacy_context.nanopb.c in Sources */ = {isa = PBXBuildFile; fileRef = FD643AD9A4F27A09E4059E41E41B66AF /* external_privacy_context.nanopb.c */; }; 0E4814380E25FB37D1B963AB6B0571F5 /* SentryCrashThread.c in Sources */ = {isa = PBXBuildFile; fileRef = 6473A85F3ACDACCD845F71132BBD297E /* SentryCrashThread.c */; }; 0E7790FCE9A24432CA6FD4D42E58831D /* SentryInternalCDefines.h in Headers */ = {isa = PBXBuildFile; fileRef = 0A76A00AE50AFFCEC9E7A39397CA634D /* SentryInternalCDefines.h */; settings = {ATTRIBUTES = (Project, ); }; }; @@ -148,1745 +145,1743 @@ 0F01FA5084D70C0CAE5D8B2D6B2B1411 /* SentryMeasurementUnit.m in Sources */ = {isa = PBXBuildFile; fileRef = 7A59AD68C79E11BAF9ACF23E4E6D925E /* SentryMeasurementUnit.m */; }; 0F15EE9A212717DCB6C6CBE129503D9A /* SentryDictionaryDeepSearch.h in Headers */ = {isa = PBXBuildFile; fileRef = BDC849B9D86FAB784A47263200A44187 /* SentryDictionaryDeepSearch.h */; settings = {ATTRIBUTES = (Project, ); }; }; 0F1B88428768F79E55A4851E41F5069D /* SentrySubClassFinder.m in Sources */ = {isa = PBXBuildFile; fileRef = F6C31727CB27ACF0D3CD4408EE0D8CE9 /* SentrySubClassFinder.m */; }; + 0F61221A8E5FD7A76AEEBB96A349F077 /* FBLPromise+Then.h in Headers */ = {isa = PBXBuildFile; fileRef = 6BA23F66424B62DD071F4C090C5F6364 /* FBLPromise+Then.h */; settings = {ATTRIBUTES = (Public, ); }; }; 0FEFB2FA8B582941A66CB22A82749D78 /* GDTCCTNanopbHelpers.m in Sources */ = {isa = PBXBuildFile; fileRef = 95036DB1EC3E583B37C102FC74B5A753 /* GDTCCTNanopbHelpers.m */; }; - 10D97694AD10103331768952538C3F09 /* GTMNSString+URLArguments.h in Headers */ = {isa = PBXBuildFile; fileRef = 511C082AB6A5D6B54BB33CFB54AA6ABE /* GTMNSString+URLArguments.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 10DD05177A7FDB55C63CA0CF75F10965 /* ConnectivityPlusPlugin.m in Sources */ = {isa = PBXBuildFile; fileRef = 946308AD47F839A7BE2BE98133317720 /* ConnectivityPlusPlugin.m */; }; + 105D5B0B65FDD982C21B3E7D994FDCFB /* InAppWebViewStatic.swift in Sources */ = {isa = PBXBuildFile; fileRef = F173A3865F6AEDB26C737F7484107758 /* InAppWebViewStatic.swift */; }; + 107779115E754752E203A29AB927B2D6 /* FLTPHPickerSaveImageToPathOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = 1FA39D45CBD24AAC1A80A7911DD5D0E4 /* FLTPHPickerSaveImageToPathOperation.m */; }; + 10907BB98864D907E266873DC51B4DBD /* FBLPromise+Reduce.h in Headers */ = {isa = PBXBuildFile; fileRef = B65BCE985B4216A2D0F68B41A9027B07 /* FBLPromise+Reduce.h */; settings = {ATTRIBUTES = (Public, ); }; }; 10F01048E2C8145C55D6D484DDC907AB /* client_metrics.nanopb.h in Headers */ = {isa = PBXBuildFile; fileRef = 4E4ED3B3B0F20B11D5843C8993682B8F /* client_metrics.nanopb.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 10F4A817B33F486C5B3CE22E19CD02CA /* GoogleToolboxForMac-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 972E29E0AAD2500F03BCEACFF9D822BA /* GoogleToolboxForMac-dummy.m */; }; - 1103B9C424068CA0DAAC99978E736DD1 /* SentryFlutterPlugin.m in Sources */ = {isa = PBXBuildFile; fileRef = 96D9F9CCB4C43D99159BB0CBB903AA10 /* SentryFlutterPlugin.m */; }; + 11022C643B912D972978886DCD0EE41B /* Util.swift in Sources */ = {isa = PBXBuildFile; fileRef = 40DFDE1568F4563299807032258A4AEC /* Util.swift */; }; + 11731626C147F0019747A2034A3509CD /* CriticalAlertsPermissionStrategy.m in Sources */ = {isa = PBXBuildFile; fileRef = 2CE61C43BE36079E33CB7C61EA3DB4C7 /* CriticalAlertsPermissionStrategy.m */; }; 1213AED6D23F06029188B6B0E3878B6C /* SentryCrashID.h in Headers */ = {isa = PBXBuildFile; fileRef = 15A0717F25BD4AD0545E9DC054FE5D31 /* SentryCrashID.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1262A3B33D00BFB6D44414921101B68D /* FBLPromise.m in Sources */ = {isa = PBXBuildFile; fileRef = CC6E6A849E8D9B748108F31A76C94231 /* FBLPromise.m */; }; - 126B3DEF551FDDC8430C59102CFFBAB6 /* PrivacyInfo.xcprivacy in Resources */ = {isa = PBXBuildFile; fileRef = 11E93C254E930A2094F7099F7F2029E6 /* PrivacyInfo.xcprivacy */; }; 12B7BB039799C65F471F85D00F96E45A /* SentryCrashStackCursor_Backtrace.c in Sources */ = {isa = PBXBuildFile; fileRef = 5CF3FAEADD5184489635D4A78F8AA64A /* SentryCrashStackCursor_Backtrace.c */; }; - 12FB3F31CB01A07420B730250AFF6837 /* ContactPermissionStrategy.h in Headers */ = {isa = PBXBuildFile; fileRef = 7440E30860AFFF5E3D2141CA647B9114 /* ContactPermissionStrategy.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 1307AD5FD33CDF0B23F08E861D57175D /* URLLaunchSession.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5AB81A750F4B3338FC4711F57CC1505E /* URLLaunchSession.swift */; }; + 130E6243905C09072874F1D0B0DDD04E /* PermissionStrategy.h in Headers */ = {isa = PBXBuildFile; fileRef = 92C20030DBD8769092782F8CC1241A8F /* PermissionStrategy.h */; settings = {ATTRIBUTES = (Public, ); }; }; 132F48039F2E3EE64C12367D72AFE2ED /* SentryUIDeviceWrapper.m in Sources */ = {isa = PBXBuildFile; fileRef = 871215DE494534EE3B912798534F2CEE /* SentryUIDeviceWrapper.m */; }; 1380626961BFB0177FCDD9FC08690CEC /* client_metrics.nanopb.c in Sources */ = {isa = PBXBuildFile; fileRef = 7A91D0FBA24BE0193B9241F00FE0B143 /* client_metrics.nanopb.c */; }; 13D0D182A1A293E6B746C353C39D0798 /* SentryDebugMeta.h in Headers */ = {isa = PBXBuildFile; fileRef = DCAB62DCECD5BA239684C006142F1DC1 /* SentryDebugMeta.h */; settings = {ATTRIBUTES = (Public, ); }; }; 13DC5681F36D9DBBCC36D5C1B7458517 /* SentryPerformanceTrackingIntegration.m in Sources */ = {isa = PBXBuildFile; fileRef = 5051A3B8D6C5160F7EF20E6F9F3238B8 /* SentryPerformanceTrackingIntegration.m */; }; 141B48260D9E6E05C36E22358404290C /* SentryMsgPackSerializer.h in Headers */ = {isa = PBXBuildFile; fileRef = 1BD80644A5AC4605105FA5EA546995D9 /* SentryMsgPackSerializer.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 143D3617F3695529F1EECED5906B4D8E /* FLALocalAuthPlugin_Test.h in Headers */ = {isa = PBXBuildFile; fileRef = B470E6A40DBE8968A48497CB9FCCB1AC /* FLALocalAuthPlugin_Test.h */; settings = {ATTRIBUTES = (Public, ); }; }; 1444D16537D1D689AE74715591CD99EC /* GDTCORLogSourceMetrics.h in Headers */ = {isa = PBXBuildFile; fileRef = C972A0894193430BBE377E22D4AF4B33 /* GDTCORLogSourceMetrics.h */; settings = {ATTRIBUTES = (Project, ); }; }; 144A36DDBF4AB0099E677A19CA97C0E2 /* SentryCoreGraphicsHelper.h in Headers */ = {isa = PBXBuildFile; fileRef = CB410E2C9DE6A74A91871B2A9FC5945F /* SentryCoreGraphicsHelper.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1459892FE645F44A85650BBFCF608250 /* FBLPromise.h in Headers */ = {isa = PBXBuildFile; fileRef = 5B8EBBC1C874C9BB52674475C9614757 /* FBLPromise.h */; settings = {ATTRIBUTES = (Public, ); }; }; 147A56257551F24F7F8F359A08E58F3C /* SentryDebugMeta.m in Sources */ = {isa = PBXBuildFile; fileRef = D5E08CF1ED315B70537E6C54EE9CEC84 /* SentryDebugMeta.m */; }; 14ADDB9F96A2FCF143F421639E509BA0 /* SentryTransaction.h in Headers */ = {isa = PBXBuildFile; fileRef = BD1FBF67283A3F6982B3A18BCD23E1B0 /* SentryTransaction.h */; settings = {ATTRIBUTES = (Project, ); }; }; 14BA6CBF820C03B7C0608C97F999DB05 /* SentryCrashMonitor_System.m in Sources */ = {isa = PBXBuildFile; fileRef = 8558EEA3118A5F259B3883150988C422 /* SentryCrashMonitor_System.m */; }; 153D652DDC7B24E75AE6C20E44F42717 /* SentryDispatchFactory.h in Headers */ = {isa = PBXBuildFile; fileRef = F53D1A7E59A6937159C5354BC3E66E2E /* SentryDispatchFactory.h */; settings = {ATTRIBUTES = (Project, ); }; }; 1556D7CECE41B34748E43DBCF520CD3D /* SentryCrashMemory.c in Sources */ = {isa = PBXBuildFile; fileRef = 6017CB85214038F38DA5C737650AC0BE /* SentryCrashMemory.c */; }; + 158A2FE99714CEC0637166EEC6295E82 /* LeakAvoider.swift in Sources */ = {isa = PBXBuildFile; fileRef = CB23C5F8B0A4ABE574CFDEF363AE78A0 /* LeakAvoider.swift */; }; 15C6FA27A28F0583452765E1A6B3747A /* PrivatesHeader.h in Headers */ = {isa = PBXBuildFile; fileRef = 21823293F7E98868C0AC99C68490EE78 /* PrivatesHeader.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 1620383FD46ED9C9F3D4C1208283C35D /* sentry_flutter-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = B65E4F1FB0BF2D382DE70AE3563B1B83 /* sentry_flutter-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 15D25523CAEE84BE95CDA7A500532F73 /* SecCertificate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 310586C337C6135938E6DA039290C0C8 /* SecCertificate.swift */; }; + 160911AE72415567E10F4FD4C2847590 /* MediaLibraryPermissionStrategy.m in Sources */ = {isa = PBXBuildFile; fileRef = 85E0ACDC2C40D9337B657062ED6035D8 /* MediaLibraryPermissionStrategy.m */; }; + 1620383FD46ED9C9F3D4C1208283C35D /* sentry_flutter-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 0B04FA279B07F968FEA7238CCE55189C /* sentry_flutter-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 164D3B562F39898FE674962845536BA6 /* GULAppEnvironmentUtil.h in Headers */ = {isa = PBXBuildFile; fileRef = 9FA8CCBC4007C219E2C0090C7645E3DB /* GULAppEnvironmentUtil.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 164EA4392409C32B15F846574FF847B4 /* InAppWebViewOptions.swift in Sources */ = {isa = PBXBuildFile; fileRef = 181513F01FB113F13B8FDB35C4F9CA28 /* InAppWebViewOptions.swift */; }; 164FD059B47BB3BC5464A8D955D8D8EA /* GDTCORLifecycle.m in Sources */ = {isa = PBXBuildFile; fileRef = FF262AD8A92F07E159AF4091A42609F7 /* GDTCORLifecycle.m */; }; - 166DA8C76C967AB79A1E9FD0B02B6972 /* PhotoPermissionStrategy.h in Headers */ = {isa = PBXBuildFile; fileRef = 06ED2B5C3CE883E614348B0A2925D587 /* PhotoPermissionStrategy.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 169DFAE8562CA60B59E9C6C896856D58 /* SqfliteDarwinDatabase.m in Sources */ = {isa = PBXBuildFile; fileRef = B5C169824A04E889155592FCA3FBDE95 /* SqfliteDarwinDatabase.m */; }; 16B81994159CB0D9EA0CFDF773FDD3D6 /* SentrySystemWrapper.mm in Sources */ = {isa = PBXBuildFile; fileRef = 66AC354FC3F3C536D91A3A6FE49FD5EB /* SentrySystemWrapper.mm */; }; + 16DFF862ED095F4E8FFBD5265E544A35 /* GULKeychainUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = B532950954DF4A88712A1FC5FF8512CD /* GULKeychainUtils.h */; settings = {ATTRIBUTES = (Public, ); }; }; 1700B334636E1C492089A348F49D45DB /* SentryCrashMach.h in Headers */ = {isa = PBXBuildFile; fileRef = A1C50A54E82F9DEF01DC27A7FDD22EF8 /* SentryCrashMach.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 172A661D3D132FECDD1B64E792102783 /* PluginScript.swift in Sources */ = {isa = PBXBuildFile; fileRef = C871E9A03CA17D37556E12D1023D5DBE /* PluginScript.swift */; }; 1736BF371FFC6887B7A36D0B214E077F /* GDTCOREvent.m in Sources */ = {isa = PBXBuildFile; fileRef = 7CE7B8378FCC6544556C22CCD9F64BBD /* GDTCOREvent.m */; }; + 1736E5D1E369D921FEE086F80D2DCDC9 /* FBLPromise+Async.m in Sources */ = {isa = PBXBuildFile; fileRef = 76479A32EBF62002DC4D798261D2AECD /* FBLPromise+Async.m */; }; 1744958AC87080FDBB828219A5F34AE5 /* SentryDependencyContainer.h in Headers */ = {isa = PBXBuildFile; fileRef = 9CA60F36C0B2AB3142AE3C2FB7B639E4 /* SentryDependencyContainer.h */; settings = {ATTRIBUTES = (Public, ); }; }; 1763D8013493E5B6C7C0DD90B67FA546 /* UrlSanitized.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0790A032473476DE853BBFD34827B17F /* UrlSanitized.swift */; }; - 17AAD742E13C501ECB006A13E559DDCD /* GTMDebugSelectorValidation.h in Headers */ = {isa = PBXBuildFile; fileRef = D03F3816E83144F5FB41ECDA4FC0736E /* GTMDebugSelectorValidation.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 17AC1CF5444705BB1987C15A61BC08CC /* sqflite-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 4A037E060424628E5D090B11C0E34DB6 /* sqflite-dummy.m */; }; + 17AC1CF5444705BB1987C15A61BC08CC /* sqflite-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = F0F69A30C36E2DD6C004A57D4BE20B7D /* sqflite-dummy.m */; }; 17B22C1EDF9A12CCDFB45C41F72C788B /* SentryAppStartMeasurement.m in Sources */ = {isa = PBXBuildFile; fileRef = BBEB686703DCA2DA0492C398A35A2585 /* SentryAppStartMeasurement.m */; }; 17C7D43605DE1FA7FA3251962CF02889 /* GDTCORMetrics+GDTCCTSupport.m in Sources */ = {isa = PBXBuildFile; fileRef = 2FE0ACB1CDDAC15FA058E3A7C505FA1F /* GDTCORMetrics+GDTCCTSupport.m */; }; 17F259BFC2A38200EDB89798C7B18A6C /* SentryCrashDebug.h in Headers */ = {isa = PBXBuildFile; fileRef = 77CE53E39698E956A2500A6631C467F7 /* SentryCrashDebug.h */; settings = {ATTRIBUTES = (Project, ); }; }; 17F578E502EBAE47F9D8DE682794C998 /* GDTCORStorageMetadata.h in Headers */ = {isa = PBXBuildFile; fileRef = 91E5668D07F0CFFB4B5210A952A0818F /* GDTCORStorageMetadata.h */; settings = {ATTRIBUTES = (Project, ); }; }; 182E86EA8D8C1EEC452EEB0DB451518E /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = BAE27CDB4E2E589B1AC89F06DE3D7D04 /* Foundation.framework */; }; + 18BA5959B647A44546C478E77366CC85 /* URLRequest.swift in Sources */ = {isa = PBXBuildFile; fileRef = FAB4F397430C0F4E9A1699E34EB56D8B /* URLRequest.swift */; }; 1901663B0C0CD08734570B9F3871E572 /* SentryUIEventTracker.h in Headers */ = {isa = PBXBuildFile; fileRef = 9160C063D7324C6F18694EDCBE602BD0 /* SentryUIEventTracker.h */; settings = {ATTRIBUTES = (Project, ); }; }; 19289C616671F11266BCFF2E611A32A0 /* SentryDispatchSourceWrapper.m in Sources */ = {isa = PBXBuildFile; fileRef = 49BE5BAFE0B74756E8EFC038C23B3530 /* SentryDispatchSourceWrapper.m */; }; - 198CFCF31A437736FDA25B861714760A /* GULCCLibrary.h in Headers */ = {isa = PBXBuildFile; fileRef = 91018E65A91578BE53624520A9CAA172 /* GULCCLibrary.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 19A87B2CF36BA1D05E9476C7F2DCB5D5 /* FBLPromise+Timeout.m in Sources */ = {isa = PBXBuildFile; fileRef = 01EC835E20981E532F873F21165CD863 /* FBLPromise+Timeout.m */; }; + 19ADBA0F62019968D223E40EC94BED6F /* ContactPermissionStrategy.h in Headers */ = {isa = PBXBuildFile; fileRef = C34D4A2FCAD5B715BC9682100596DA59 /* ContactPermissionStrategy.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 19B2DFCC05F3F8DF4B7F43210B2EE0FD /* pb.h in Headers */ = {isa = PBXBuildFile; fileRef = C59FFA97AA19AA1BC712C53B3F8F378F /* pb.h */; settings = {ATTRIBUTES = (Public, ); }; }; 19CFD4E963F703856A506D682187246A /* SentryThreadHandle.hpp in Headers */ = {isa = PBXBuildFile; fileRef = 29B9C00A5E74EB24E151DF396DECFE60 /* SentryThreadHandle.hpp */; settings = {ATTRIBUTES = (Project, ); }; }; - 1A14438E07B9CC087AC171B76740D21D /* AppTrackingTransparencyPermissionStrategy.m in Sources */ = {isa = PBXBuildFile; fileRef = 5683C799BA015A7424D336071DD9AFF8 /* AppTrackingTransparencyPermissionStrategy.m */; }; 1A44930A2C7D973A9B92F5E5ACD5D75A /* SentryBacktrace.hpp in Headers */ = {isa = PBXBuildFile; fileRef = 6CBA89D8561FB861551845FD5686506D /* SentryBacktrace.hpp */; settings = {ATTRIBUTES = (Project, ); }; }; 1A6049ADEC3322CC0360B98333199ADF /* LocalMetricsAggregator.swift in Sources */ = {isa = PBXBuildFile; fileRef = F4D9B67712C76CAA954AFCDE97CF4FF0 /* LocalMetricsAggregator.swift */; }; - 1A66EBB68F3D390BBB0E42AFCFE8EE92 /* pb_encode.c in Sources */ = {isa = PBXBuildFile; fileRef = 19E95F3D72548415AF768AA1089369AC /* pb_encode.c */; settings = {COMPILER_FLAGS = "-fno-objc-arc -fno-objc-arc"; }; }; - 1AC99AD5E0013C38863B965A205BFC99 /* flutter_nekoton_bridge.c in Sources */ = {isa = PBXBuildFile; fileRef = AA898B8FF9EAEBC866C7A5809AF52FBA /* flutter_nekoton_bridge.c */; }; + 1AB2A7045A23E665C38156847BA46117 /* ChromeSafariBrowserManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = D847CB01E9ED762D56CE7E6F180E5882 /* ChromeSafariBrowserManager.swift */; }; + 1AD4A208C9C674F4F45BE41522DD8653 /* InAppWebViewFlutterPlugin.m in Sources */ = {isa = PBXBuildFile; fileRef = AC8BED4A6B4F1FF2D1A6838EB37CF177 /* InAppWebViewFlutterPlugin.m */; }; 1B0723580AEEE264C1B2360E617BB3B3 /* SentryCrashReport.h in Headers */ = {isa = PBXBuildFile; fileRef = 84D4B8240CAF093EF7F28CA0C56005D0 /* SentryCrashReport.h */; settings = {ATTRIBUTES = (Project, ); }; }; 1B329718FF37155A4AEFCF936D5FCA56 /* SentryProfilerSerialization.mm in Sources */ = {isa = PBXBuildFile; fileRef = E5EF3CAAD340AA1E9FD9993B4540CC45 /* SentryProfilerSerialization.mm */; }; - 1B3FAA7FA7D55A8A7252C3213EC093E2 /* GoogleUtilitiesComponents-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 622C0A33F8614FAD879EF5BBA864C00F /* GoogleUtilitiesComponents-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; 1B905CE12578683E7A177FB7562FFEF1 /* GDTCORMetrics+GDTCCTSupport.h in Headers */ = {isa = PBXBuildFile; fileRef = 68D66FC00323C25EE42BA98472BB46D1 /* GDTCORMetrics+GDTCCTSupport.h */; settings = {ATTRIBUTES = (Project, ); }; }; 1C455171547143CF0BE473CB8503D9CC /* SentrySysctl.m in Sources */ = {isa = PBXBuildFile; fileRef = 45C72EC161E9F4FDEA4563135907B05A /* SentrySysctl.m */; }; 1C5341FD374E5DD8068CDC18CBCE095C /* SentryMeasurementValue.m in Sources */ = {isa = PBXBuildFile; fileRef = C42F1047A6B47D2D9137BF91245D5285 /* SentryMeasurementValue.m */; }; + 1C6C0766AB06F27FC830ADCC57461095 /* FBLPromise+Do.m in Sources */ = {isa = PBXBuildFile; fileRef = D7442893F0C2A63762CE78A3E7144481 /* FBLPromise+Do.m */; }; 1C71012DF9DF4196D9DA817E5AD9282B /* OrderedSet-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = A33F15E13B173DFE53C05EAEC14ECE77 /* OrderedSet-dummy.m */; }; - 1C925DCDAEE83354F774E3D83B8E8E1A /* FlutterEmailSenderPlugin.h in Headers */ = {isa = PBXBuildFile; fileRef = 2E408C7CFCE48282909EB0579F6DA739 /* FlutterEmailSenderPlugin.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 1CBD45EB6B66DA159538B8EB5EFF093A /* messages.g.m in Sources */ = {isa = PBXBuildFile; fileRef = 4469F91A5299787F008D44A68B038A80 /* messages.g.m */; }; 1CCC04F051EAEECA076F926F0F15CC34 /* SentryCrashExceptionApplication.m in Sources */ = {isa = PBXBuildFile; fileRef = 07DB56BBA1FBE34C36EEAC3E9BBB3D7D /* SentryCrashExceptionApplication.m */; }; - 1CEB806D2D3907BF9D70495AD8675A58 /* WebMessage.swift in Sources */ = {isa = PBXBuildFile; fileRef = 90660A0512DF3868EAE54D0970E43E41 /* WebMessage.swift */; }; + 1D1A32C0513A0025D29803BD9B7514EB /* HeadlessInAppWebViewManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = 049B4C9F84E861EC52B2E6C0B24B844A /* HeadlessInAppWebViewManager.swift */; }; 1D517D899AD2F9211F37F58ACF2DC79E /* SentryCrashMonitor_AppState.h in Headers */ = {isa = PBXBuildFile; fileRef = 79591BBB6B096549BCE6A53E42EDF31E /* SentryCrashMonitor_AppState.h */; settings = {ATTRIBUTES = (Project, ); }; }; 1DA15E4B63B9320AF8E93C95CB191EE0 /* SentryCoreDataTrackingIntegration.m in Sources */ = {isa = PBXBuildFile; fileRef = 68F9FAA480BE82B6982334CCB752A1A7 /* SentryCoreDataTrackingIntegration.m */; }; 1DFFDDF08742F17D4CB6A5E63637436F /* GDTCCTUploadOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = F0CC2E7CE85C4F156D620676140EAF8A /* GDTCCTUploadOperation.m */; }; + 1E1A50BCFA9221E3AAC0DE2CF7F3CC77 /* SensorPermissionStrategy.m in Sources */ = {isa = PBXBuildFile; fileRef = CD581969E081A31FC373B1AFED9B9E54 /* SensorPermissionStrategy.m */; }; + 1EE60B01E532BCD683270775190B6EDA /* MobileScanner.swift in Sources */ = {isa = PBXBuildFile; fileRef = EC8939AAC93F6D8F834AC7120A066C54 /* MobileScanner.swift */; }; 1EF562CA7DCB442C4FCD133EDE6BD769 /* SentryWatchdogTerminationLogic.m in Sources */ = {isa = PBXBuildFile; fileRef = A11197FF8B0DDE4285721F1F9FC805A7 /* SentryWatchdogTerminationLogic.m */; }; 1FAC12106E65276D6469844154689F1A /* SentryCrashDoctor.m in Sources */ = {isa = PBXBuildFile; fileRef = 5E2B5B681A1B94B9A02516B52B9382BB /* SentryCrashDoctor.m */; }; + 1FC1F1C45A53ED3BFDF88AFE660CA099 /* FBLPromise+Await.m in Sources */ = {isa = PBXBuildFile; fileRef = A00EFA30CB2E9AF709910D0589129EC8 /* FBLPromise+Await.m */; }; + 1FD324DB1CD78CCB027F676B9EC97E55 /* GULCCComponent.m in Sources */ = {isa = PBXBuildFile; fileRef = 1BC2B4C3413CC2A47158DB170BD1BF10 /* GULCCComponent.m */; }; 20045E9A9A7F376B54B0E9FA83DC63E4 /* SentryThreadInspector.h in Headers */ = {isa = PBXBuildFile; fileRef = DAAFE570FE3956384AD5313295DAAB9C /* SentryThreadInspector.h */; settings = {ATTRIBUTES = (Project, ); }; }; 20053330B6EDEB7945F3031867296B7C /* SentryCrashCString.m in Sources */ = {isa = PBXBuildFile; fileRef = 21AA8007CA3FE1AC8367C626C7D200E4 /* SentryCrashCString.m */; }; + 204DF58CDE5389E7A84F863097F982F7 /* DownloadStartRequest.swift in Sources */ = {isa = PBXBuildFile; fileRef = 15051AC442FEF4B644008D3C002446D4 /* DownloadStartRequest.swift */; }; 2055A890680789B176B52854FD9B274F /* SentryViewHierarchyIntegration.m in Sources */ = {isa = PBXBuildFile; fileRef = 9B006744471F610C0956DF5D831B4BE7 /* SentryViewHierarchyIntegration.m */; }; - 205D15E0810BEA66C87BC02205815C6E /* FlutterKeyboardVisibilityPlugin.m in Sources */ = {isa = PBXBuildFile; fileRef = 04A761A51931839778D46A342EC2AED7 /* FlutterKeyboardVisibilityPlugin.m */; }; + 2060C7102B14A59C553A5BA18C7FB999 /* GULCCDependency.m in Sources */ = {isa = PBXBuildFile; fileRef = 45C8B9BD99FDE9D0FC0A288F497B5827 /* GULCCDependency.m */; }; 206EF7C084A77AB1BEF9C08F1C1010AF /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = BAE27CDB4E2E589B1AC89F06DE3D7D04 /* Foundation.framework */; }; + 20828860F08A3E400B097025E9758ACE /* FBLPromise+Retry.h in Headers */ = {isa = PBXBuildFile; fileRef = D7C37246E671C1932E04A79C193FBC21 /* FBLPromise+Retry.h */; settings = {ATTRIBUTES = (Public, ); }; }; 20A3D360299357EE7D17885FF90423BF /* SentrySessionCrashedHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = EC3574CE417F6A81EF8DBA4EFAD838F6 /* SentrySessionCrashedHandler.m */; }; - 20AE4E8E020857E53BC4AEABE5E9A2FC /* FBLPromise+All.h in Headers */ = {isa = PBXBuildFile; fileRef = D0997143DB9678D3A78894DF3A5CCD98 /* FBLPromise+All.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 215FE094B3D4CF95039690C50C5272EA /* PrivacyInfo.xcprivacy in Resources */ = {isa = PBXBuildFile; fileRef = 5C14E1383414006C7CB65F7A866C8A96 /* PrivacyInfo.xcprivacy */; }; + 20DDFF21ECB18E0D303E49AEB041B5E6 /* FBLPromise+All.m in Sources */ = {isa = PBXBuildFile; fileRef = BFB741B1A06893994242E906776C525D /* FBLPromise+All.m */; }; + 214F6AA3078E6A76C4BDF327A78A88C6 /* PullToRefreshControl.swift in Sources */ = {isa = PBXBuildFile; fileRef = ABCF247BEE2B624CB2BDDAF5B8CF1A35 /* PullToRefreshControl.swift */; }; + 2168A6F6A1522A673D88CBC021A55BD3 /* FLALocalAuthPlugin.m in Sources */ = {isa = PBXBuildFile; fileRef = 6F1ABA9F5D09ED0D561D477370ED0794 /* FLALocalAuthPlugin.m */; }; + 21B2ABD9D4D052EB29068EB8BB762FB0 /* InterceptFetchRequestJS.swift in Sources */ = {isa = PBXBuildFile; fileRef = 821470D1B6770146D8BBE717A950515A /* InterceptFetchRequestJS.swift */; }; 21CBB480518D7A241CAAA7C3E339E72F /* GDTCORClock.h in Headers */ = {isa = PBXBuildFile; fileRef = 0F0CF5B8DD8C47040410B0C606FC0973 /* GDTCORClock.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 21D44B3502A0FBA6D00B17D63AF157F0 /* GoogleUtilities-GoogleUtilities_Privacy in Resources */ = {isa = PBXBuildFile; fileRef = 44E291D18340EAC3F761346198515323 /* GoogleUtilities-GoogleUtilities_Privacy */; }; 22017D7D76140341333EB4A1327156AB /* GDTCORLogSourceMetrics.m in Sources */ = {isa = PBXBuildFile; fileRef = FA2FD8E7057D6F6741C01295F2C66C3D /* GDTCORLogSourceMetrics.m */; }; 223B4F68B9C0A8A5CDB5EC2A3051E04A /* GDTCOREventDropReason.h in Headers */ = {isa = PBXBuildFile; fileRef = DD438EE1EAFFE008E46C70D1E3D60734 /* GDTCOREventDropReason.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2241EAC41A340D17E11110B171A139D1 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = BAE27CDB4E2E589B1AC89F06DE3D7D04 /* Foundation.framework */; }; 22506D4A95B3B27BFCCD85A6ED1F886D /* SentryCrashUUIDConversion.c in Sources */ = {isa = PBXBuildFile; fileRef = 3C4996057B86092BBCEBD81FEF7D68F9 /* SentryCrashUUIDConversion.c */; }; + 2272B4B5A4A1BED005F4B8160CC90EC7 /* FBLPromise+Any.h in Headers */ = {isa = PBXBuildFile; fileRef = C22F0409AB437A01840082104DF7C869 /* FBLPromise+Any.h */; settings = {ATTRIBUTES = (Public, ); }; }; 2282E2718CCAB0FADBB653166055FC27 /* SentryCrashReportFilterBasic.h in Headers */ = {isa = PBXBuildFile; fileRef = 17C6CB15ABD2C85B0830E662363D33B6 /* SentryCrashReportFilterBasic.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 22958570DB6990591A91C09008DD26A2 /* PrintJS.swift in Sources */ = {isa = PBXBuildFile; fileRef = 075A07B70395CC8477DDA1E9DE788156 /* PrintJS.swift */; }; 22BA6F3D9068B1511DBEE0F8B8279573 /* SentryBreadcrumbTracker.m in Sources */ = {isa = PBXBuildFile; fileRef = EB01BFDB3A5927BD9F77737C92F42672 /* SentryBreadcrumbTracker.m */; }; 22E44884B83D5EAF16099636E83D7CE5 /* SentryHttpTransport.h in Headers */ = {isa = PBXBuildFile; fileRef = 8CEBA848D5FD59C2B864100589872D08 /* SentryHttpTransport.h */; settings = {ATTRIBUTES = (Project, ); }; }; 22ED18F7048B555830DFC8BDA0CAD8D2 /* GDTCORReachability_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = DCA35F778FCE208137F9B51BBC95B8D9 /* GDTCORReachability_Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 230CD140D07DE91B89D29381CD037711 /* GTMNSString+URLArguments.h in Headers */ = {isa = PBXBuildFile; fileRef = 511C082AB6A5D6B54BB33CFB54AA6ABE /* GTMNSString+URLArguments.h */; settings = {ATTRIBUTES = (Public, ); }; }; 239FE67D72F0AD5EA92EF7A5F6492A06 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = BAE27CDB4E2E589B1AC89F06DE3D7D04 /* Foundation.framework */; }; 23F0813FD3E20A204B207F424D9572C4 /* SentryCrashMonitor_Signal.h in Headers */ = {isa = PBXBuildFile; fileRef = EFA56AF12A0D81891B3407F1589D48C5 /* SentryCrashMonitor_Signal.h */; settings = {ATTRIBUTES = (Project, ); }; }; 24AB42EE7F8EC5B7DDCFAF91D8881078 /* SentryTransactionContext+Private.h in Headers */ = {isa = PBXBuildFile; fileRef = A82F7BC945C3A7E06B39ED6320BF3B75 /* SentryTransactionContext+Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 24DC0FAA468C12DD112FC1EA8C5CE129 /* messages.g.swift in Sources */ = {isa = PBXBuildFile; fileRef = 36CF2B35A3CB6FB76D417EC7A65B800D /* messages.g.swift */; }; + 24DADBAC70A6C62B872621AB7286D120 /* PermissionHandlerPlugin.h in Headers */ = {isa = PBXBuildFile; fileRef = C9BC3B8B5E02329527B5034A165214BF /* PermissionHandlerPlugin.h */; settings = {ATTRIBUTES = (Public, ); }; }; 25AE39596D7C3BA03EE4DEE455C7A994 /* GDTCORLifecycle.h in Headers */ = {isa = PBXBuildFile; fileRef = C364039BB9D04F6AE21820706E3C2129 /* GDTCORLifecycle.h */; settings = {ATTRIBUTES = (Project, ); }; }; 25FD7C02A9D17BC3E39A7EC5AE4AEB8D /* SentryPredicateDescriptor.h in Headers */ = {isa = PBXBuildFile; fileRef = 2A0182BD5E06515BCB4E267D4D1E7EC7 /* SentryPredicateDescriptor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 26323FCCDA2F5B5E8852A98D0C9B54BF /* NSAttributedString.swift in Sources */ = {isa = PBXBuildFile; fileRef = D21ED2F3A0000D9727C96CDD5D2E964B /* NSAttributedString.swift */; }; + 2644596CE3CCFFCB219819F24C311490 /* SupportZoomJS.swift in Sources */ = {isa = PBXBuildFile; fileRef = 24CEE5AA14FFDCB36BD0D3163B43861C /* SupportZoomJS.swift */; }; 2664C856BEA16310FF7F81F9C484DE4A /* SentryAttachment+Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 95E399FADF1663593526BF9866D9974E /* SentryAttachment+Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; 267B53233A29601782912F06EA820C8C /* SentryExperimentalOptions.swift in Sources */ = {isa = PBXBuildFile; fileRef = C4A38E9E8092AC0179F106376DDAF21C /* SentryExperimentalOptions.swift */; }; + 267E364C7FA774A43F01CE437FA1E21B /* FBLPromise+Recover.h in Headers */ = {isa = PBXBuildFile; fileRef = 352450B601648E8FC906DD98E956FF04 /* FBLPromise+Recover.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 26D4BE2DCFFE9F24F5CF3EACBBE104E6 /* GULKeychainUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = 42A590E66E9E83BA695620C5B6ADE928 /* GULKeychainUtils.m */; }; 273171EBDF3AD2A5A70C69592F553FC9 /* SentryDelayedFramesTracker.h in Headers */ = {isa = PBXBuildFile; fileRef = FCEF64DA164E6D2288C8A700BA99E0CC /* SentryDelayedFramesTracker.h */; settings = {ATTRIBUTES = (Project, ); }; }; 276FE3AE17769F44D4B6A9771ABD7174 /* SystemConfiguration.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = D1C7EEFE1089D4748208931AB74C173B /* SystemConfiguration.framework */; }; 27CFFD3B21EAAEF7E745471E66C03D3B /* SentryUIDeviceWrapper.h in Headers */ = {isa = PBXBuildFile; fileRef = EE97AC70388FAD91DCA5FDC194887C97 /* SentryUIDeviceWrapper.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 27F81D237CAF2BD977E9D4E70D45E56F /* ConnectivityPlusPlugin.h in Headers */ = {isa = PBXBuildFile; fileRef = 6D11B878F8E3EC57360BDCA5E111BA2F /* ConnectivityPlusPlugin.h */; settings = {ATTRIBUTES = (Public, ); }; }; 27FDFDF511D7D5A3391164DC6F4B26FB /* SentryByteCountFormatter.m in Sources */ = {isa = PBXBuildFile; fileRef = AB2008F2A74F483F40CE85E2886633A1 /* SentryByteCountFormatter.m */; }; 281F6BE3D073B41B09301629323D27EC /* GDTCORMetricsControllerProtocol.h in Headers */ = {isa = PBXBuildFile; fileRef = C7E6691D10A8EA36D8A4E9CAA53C5677 /* GDTCORMetricsControllerProtocol.h */; settings = {ATTRIBUTES = (Project, ); }; }; 283386B3099301E0F4437D42BF8A195A /* SentryUser.m in Sources */ = {isa = PBXBuildFile; fileRef = 29FC47930451B8B0C303DF95D045B540 /* SentryUser.m */; }; + 285D846A24BB89952A667BD698E3D5BF /* UserScript.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD86AB52B1AF8FF238297BA9E26FA678 /* UserScript.swift */; }; 28670C199FA66A67A958F438448EA7EC /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = BAE27CDB4E2E589B1AC89F06DE3D7D04 /* Foundation.framework */; }; 28860195BD70CA90D3AC1661F104F235 /* SentryFormatter.h in Headers */ = {isa = PBXBuildFile; fileRef = 959ECEB76C92817E4D0DE69F1C181E87 /* SentryFormatter.h */; settings = {ATTRIBUTES = (Public, ); }; }; 288E5C778B9F2F2C4306EAFC1D6A5A33 /* SentryGeo.m in Sources */ = {isa = PBXBuildFile; fileRef = F264CD6970CA8428C812DDA353BC2AE8 /* SentryGeo.m */; }; 28B8D399ED69EFAE30B8567C65DCD637 /* SentryStatsdClient.m in Sources */ = {isa = PBXBuildFile; fileRef = 81A0C604033A299FD6BE3DB77845742D /* SentryStatsdClient.m */; }; - 28C46A322AE7B95EDE3763A33EAB3420 /* mobile_scanner-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 8A18B24DB7C4332121DE9235A9AB8A4B /* mobile_scanner-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 28C46A322AE7B95EDE3763A33EAB3420 /* mobile_scanner-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 5D3DF78F3AB1A8212A48E1DA7888300A /* mobile_scanner-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; 28EA5DC524997AA2B2462BD5A6F89D8E /* SentryRandom.m in Sources */ = {isa = PBXBuildFile; fileRef = 531D2B339D5FD260E76AEB3CBEABA60A /* SentryRandom.m */; }; 28EF789C9F2E99D9A7F1DD835EBA9BB2 /* SentryCrashSysCtl.h in Headers */ = {isa = PBXBuildFile; fileRef = F6910B4246B651A35A3F8F6BC10466C3 /* SentryCrashSysCtl.h */; settings = {ATTRIBUTES = (Project, ); }; }; 28FB664AD1CC30E08A391AE2F075B149 /* SentryCrashFileUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = A572ED2C4CC94BD627D639A2CFD81E9E /* SentryCrashFileUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 28FEBDA0C9526C596730471DDD3E17FF /* SqfliteDatabase.m in Sources */ = {isa = PBXBuildFile; fileRef = 2391BAB127258E3C8526525F690CFD22 /* SqfliteDatabase.m */; }; 291D47BEB6CBAF893DE834C574B1EB53 /* SentrySystemEventBreadcrumbs.m in Sources */ = {isa = PBXBuildFile; fileRef = DEAB66DF15F23DF0551BB319AD3969C0 /* SentrySystemEventBreadcrumbs.m */; }; 29275445EFAAA3FF590C5079762DF8BD /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = BAE27CDB4E2E589B1AC89F06DE3D7D04 /* Foundation.framework */; }; 2931C0D13E2A242200892EF93D5DEFEB /* SentryTracer.m in Sources */ = {isa = PBXBuildFile; fileRef = 54808F4C79F1B3DD7E6279997A2C4A20 /* SentryTracer.m */; }; + 294C74CDC5D18716AD59BFA83ABED622 /* FlutterSecureStorage.swift in Sources */ = {isa = PBXBuildFile; fileRef = 85D9E65CB912A77F7601101C780C7D80 /* FlutterSecureStorage.swift */; }; 297543566DABDADC1CC700C9D48C1B11 /* SentryWatchdogTerminationTrackingIntegration.m in Sources */ = {isa = PBXBuildFile; fileRef = 0A7D3E86EBA808B1F87A41322646A9B3 /* SentryWatchdogTerminationTrackingIntegration.m */; }; 29C9033EA26CC74178F554EF501E5797 /* SentryScope.h in Headers */ = {isa = PBXBuildFile; fileRef = D6C561A907D5E12E42188C89849CC4C6 /* SentryScope.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 29D055BB2732D76D4A244246A57DD730 /* SqfliteDarwinResultSet.h in Headers */ = {isa = PBXBuildFile; fileRef = 5BF758C9ADCCF1C7EEA72EA32EE476FE /* SqfliteDarwinResultSet.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 29F6016D9BEAD8071B843114823FDAAD /* PrivacyInfo.xcprivacy in Resources */ = {isa = PBXBuildFile; fileRef = 32941FABD3095FE6680473B1D2416DDA /* PrivacyInfo.xcprivacy */; }; - 2A306D19119B2FCFE7D659BF4F8DDB16 /* PrivacyInfo.xcprivacy in Resources */ = {isa = PBXBuildFile; fileRef = E994165DFFCFEFCBBD12F31704039D09 /* PrivacyInfo.xcprivacy */; }; - 2A4F0B3A40D5A4D9C7713D4C7B978CB5 /* SafariBrowserOptions.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3F32EED31B61D144402BF782E67C0C27 /* SafariBrowserOptions.swift */; }; 2A5014683AA0617344F7273723EDB519 /* SentryPredicateDescriptor.m in Sources */ = {isa = PBXBuildFile; fileRef = FBE8F02CFF74C1E76D8E43F3A17BE1A5 /* SentryPredicateDescriptor.m */; }; - 2A6DEBE20E54743D280D71618CF9986C /* GULHeartbeatDateStorage.h in Headers */ = {isa = PBXBuildFile; fileRef = A4C3538AB734BE0A6C8917BFF82E0EC6 /* GULHeartbeatDateStorage.h */; settings = {ATTRIBUTES = (Public, ); }; }; 2B14A0BDC72C90EA30B0D2464BF5446E /* SentrySample.h in Headers */ = {isa = PBXBuildFile; fileRef = 13CE41860C1C1B5C77FC793DC0F3A466 /* SentrySample.h */; settings = {ATTRIBUTES = (Project, ); }; }; 2B19B993B3F6817A20C99C3BF76C1094 /* SentryHttpStatusCodeRange.h in Headers */ = {isa = PBXBuildFile; fileRef = 6D543797953E07E2E2C9EA6371379391 /* SentryHttpStatusCodeRange.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 2B6219F5F6D67D025CD72448DBC65087 /* pb_decode.c in Sources */ = {isa = PBXBuildFile; fileRef = 5BC0650D481B6EFD806654B3DB150F71 /* pb_decode.c */; settings = {COMPILER_FLAGS = "-fno-objc-arc -fno-objc-arc"; }; }; - 2B6EE5682905F88B7C796B3F9EA4798B /* SpeechPermissionStrategy.m in Sources */ = {isa = PBXBuildFile; fileRef = 01CF91ED5CB1345E34251218FAD7EF27 /* SpeechPermissionStrategy.m */; }; + 2B49CDD9A57DEFF4076C4F69041EADBF /* FlutterSecureStoragePlugin.h in Headers */ = {isa = PBXBuildFile; fileRef = 78C5CE67517A32D94B574C0EF923EC4A /* FlutterSecureStoragePlugin.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 2B5A1F61AB0FF5E04CD48E302DF033AA /* FlutterNativeSplashPlugin.m in Sources */ = {isa = PBXBuildFile; fileRef = D50DDE6BCB10AAC26EC304A8E285253F /* FlutterNativeSplashPlugin.m */; }; 2C16DACD147D75BD85B29AAC464C5769 /* SentryFileContents.m in Sources */ = {isa = PBXBuildFile; fileRef = F29CC2B6EA1A464494861D5AB50C1C98 /* SentryFileContents.m */; }; 2C3587408455E8ADA5D9D43B0CF3BE62 /* SentryCoreGraphicsHelper.m in Sources */ = {isa = PBXBuildFile; fileRef = 7BCCC183DE33AF859F065C1FECCF7963 /* SentryCoreGraphicsHelper.m */; }; 2C96D3999F174B00F59260B00653C436 /* SentryDiscardReasonMapper.m in Sources */ = {isa = PBXBuildFile; fileRef = 6B3D7A6B96ED24026FAE078C4945C9B9 /* SentryDiscardReasonMapper.m */; }; - 2D1D7D8CAC921512F242DAA17700CD83 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = BAE27CDB4E2E589B1AC89F06DE3D7D04 /* Foundation.framework */; }; - 2D5A22B3227484FDCE5D3D54CD188147 /* GULHeartbeatDateStorageUserDefaults.m in Sources */ = {isa = PBXBuildFile; fileRef = 71AAFEE5A6C434754DF178E428EC4AD5 /* GULHeartbeatDateStorageUserDefaults.m */; }; 2D7828CFD13885D3659A12CCB9C75DB6 /* SentryMXCallStackTree.swift in Sources */ = {isa = PBXBuildFile; fileRef = 91C57452DAD54145EE375009A0EF6919 /* SentryMXCallStackTree.swift */; }; - 2D7CB8D24CFE7C615AF8CDFAFBE9CAFF /* InterceptAjaxRequestJS.swift in Sources */ = {isa = PBXBuildFile; fileRef = 03FA97B7884F29821200BEFB1523A9DD /* InterceptAjaxRequestJS.swift */; }; 2DE94594921B6A37C2ECF8332194FF39 /* GTMSessionUploadFetcher.m in Sources */ = {isa = PBXBuildFile; fileRef = 4D0C9F7705400E2EFE2B25F3A465754E /* GTMSessionUploadFetcher.m */; }; - 2E1704068E96FA0415A8EFE26ECA1579 /* GULCCComponent.h in Headers */ = {isa = PBXBuildFile; fileRef = 9D8ABD31EB61204CADF2FEAFAD188549 /* GULCCComponent.h */; settings = {ATTRIBUTES = (Public, ); }; }; 2E3F6AA2B00182893A1D9629E4173B02 /* SentryMetricKitIntegration.m in Sources */ = {isa = PBXBuildFile; fileRef = DB30673718FE3B155757809D84C4BEAA /* SentryMetricKitIntegration.m */; }; - 2EAE2DDDF1DA989CAF74EE9A4EFBD2E4 /* InAppWebViewMethodHandler.swift in Sources */ = {isa = PBXBuildFile; fileRef = D4493C528FD69CCD2BF6CCD59E68EC22 /* InAppWebViewMethodHandler.swift */; }; + 2E5C3C13EFC1F4CDCC52255BFCEAB261 /* FindTextHighlightJS.swift in Sources */ = {isa = PBXBuildFile; fileRef = FB392AD594041D414134E0A51014BFDF /* FindTextHighlightJS.swift */; }; 2EB97F7AFCF87B51CD3370DC454367B6 /* SentryProfilerSerialization+Test.h in Headers */ = {isa = PBXBuildFile; fileRef = EE245FB06DF3387EEA0598B222FEE15E /* SentryProfilerSerialization+Test.h */; settings = {ATTRIBUTES = (Project, ); }; }; 2EDF11A03477BFEA73D8F1556C44EF41 /* SentryCrashExceptionApplication.h in Headers */ = {isa = PBXBuildFile; fileRef = 3008F9A9F931AC60CD3A6E53E5312227 /* SentryCrashExceptionApplication.h */; settings = {ATTRIBUTES = (Public, ); }; }; 2F47282305CDD646704DBE579EECC4FD /* SentryPixelBuffer.swift in Sources */ = {isa = PBXBuildFile; fileRef = DFC3E0BC794720BE3C746834927B016C /* SentryPixelBuffer.swift */; }; 2F74D7CABE9B119AFAB0058E69D9B60D /* SentryInternalSerializable.h in Headers */ = {isa = PBXBuildFile; fileRef = CB1E2AFEBDB108A057ABEE2088A7B7A3 /* SentryInternalSerializable.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 30141F8DBCD80F3BD66C70FB5EA28A54 /* SwiftFlutterSecureStoragePlugin.swift in Sources */ = {isa = PBXBuildFile; fileRef = 11A5218DCFEC8C72A4898C0D2BB381FC /* SwiftFlutterSecureStoragePlugin.swift */; }; + 2FBA30677C364EBCFE1299031FE64730 /* ClientCertChallenge.swift in Sources */ = {isa = PBXBuildFile; fileRef = FA1779EEA8F9A6A5DC462192D6945C64 /* ClientCertChallenge.swift */; }; 30292D9B268553F47E3396E47191E4A1 /* GDTCORStorageEventSelector.m in Sources */ = {isa = PBXBuildFile; fileRef = 75951C52A9D7C240706899E552C0BA3D /* GDTCORStorageEventSelector.m */; }; 306165016705C31E7D52A544F0C8D71C /* SentryCrashLogger.c in Sources */ = {isa = PBXBuildFile; fileRef = AA4305BAF35486F4CD99515D4CBF2826 /* SentryCrashLogger.c */; }; 30E2CB52224C8D764244083E1B6905F2 /* connectivity_plus-connectivity_plus_privacy in Resources */ = {isa = PBXBuildFile; fileRef = 497F2B75C867D2399270877559788776 /* connectivity_plus-connectivity_plus_privacy */; }; - 3107A9601C3A4333F232A29E0CFA5AE0 /* SharedPreferencesPlugin.swift in Sources */ = {isa = PBXBuildFile; fileRef = ACD6155C7CB3E227EEF3EC84F925870A /* SharedPreferencesPlugin.swift */; }; - 31857F3560B260AD81F800F08064DDAB /* FLTImagePickerPhotoAssetUtil.m in Sources */ = {isa = PBXBuildFile; fileRef = 3CC2A851736FD3567A68F55DC606E5F9 /* FLTImagePickerPhotoAssetUtil.m */; }; + 30ECC4D6788BF3131B1B75574D3ACEC8 /* EventPermissionStrategy.m in Sources */ = {isa = PBXBuildFile; fileRef = 148703012B70444E07ADD934486CCB2C /* EventPermissionStrategy.m */; }; + 31188B82DF476167928898B251D2706D /* PrivacyInfo.xcprivacy in Resources */ = {isa = PBXBuildFile; fileRef = 22618D13774344E2E37442B3CA9F6388 /* PrivacyInfo.xcprivacy */; }; 31C608A14395F9DD240B749607CC0AA0 /* SentryUIEventTracker.m in Sources */ = {isa = PBXBuildFile; fileRef = 273FED516B335D864F56CF45FA6D9595 /* SentryUIEventTracker.m */; }; - 31CDCF868E6007E92DAB2077875FB431 /* FlutterSecureStoragePlugin.h in Headers */ = {isa = PBXBuildFile; fileRef = 2250BECE009253DF68289C6639E30128 /* FlutterSecureStoragePlugin.h */; settings = {ATTRIBUTES = (Public, ); }; }; 31CE989A1DDC801409537CF18DD9143E /* shared_preferences_foundation-shared_preferences_foundation_privacy in Resources */ = {isa = PBXBuildFile; fileRef = 0652FCE3FC19056983AABE058B3CC45B /* shared_preferences_foundation-shared_preferences_foundation_privacy */; }; 320D3081D5E10F92A22E804622EB7EA9 /* GDTCCTNanopbHelpers.h in Headers */ = {isa = PBXBuildFile; fileRef = 0795F3A1277FDD9E9F4AB3835BD86DB5 /* GDTCCTNanopbHelpers.h */; settings = {ATTRIBUTES = (Project, ); }; }; 32211CDC6F3D5CD2BAEA86D68AE42EAD /* GDTCCTCompressionHelper.m in Sources */ = {isa = PBXBuildFile; fileRef = F5B6E4319120E80FC5300233F5FA3326 /* GDTCCTCompressionHelper.m */; }; + 323AAAD5BE3AF4D71B8212705BE000EE /* PromisesObjC-FBLPromises_Privacy in Resources */ = {isa = PBXBuildFile; fileRef = 3F238BB22C5201CE689CAF2F766AED95 /* PromisesObjC-FBLPromises_Privacy */; }; + 3258AD34B7C54E6BAC29ADE70E643003 /* MobileScannerPlugin.h in Headers */ = {isa = PBXBuildFile; fileRef = C7D75F7B89F963626F90754C93424F58 /* MobileScannerPlugin.h */; settings = {ATTRIBUTES = (Public, ); }; }; 329A35F0224F0D0869BC818EAC4A4AAB /* SentryNSDataTracker.m in Sources */ = {isa = PBXBuildFile; fileRef = BB4C9A735A9294D2FE1B2B3A6526DA26 /* SentryNSDataTracker.m */; }; + 32D0E859678111A0A87FCBD322C5FF6E /* FPPPackageInfoPlusPlugin.m in Sources */ = {isa = PBXBuildFile; fileRef = BA5D290335566CBC2DB4D4F0E89D2248 /* FPPPackageInfoPlusPlugin.m */; }; 32EFFA6A6A581D1D1FE89CF3238A5610 /* SentryMXManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = 80760ECAC32713E337C424D7299253E4 /* SentryMXManager.swift */; }; 331499894F717BC839074B6B979CAB21 /* SentryDevice.mm in Sources */ = {isa = PBXBuildFile; fileRef = E32E3DB30251F74B6DF6842BB1780952 /* SentryDevice.mm */; }; - 332A85564C3042BF792517BBBC94DE0D /* SwiftConnectivityPlusPlugin.swift in Sources */ = {isa = PBXBuildFile; fileRef = C016E5E6AA5CD61AA11A542E79B1EC4A /* SwiftConnectivityPlusPlugin.swift */; }; 3391A4EC692A06012649F9341E4F000E /* cct.nanopb.h in Headers */ = {isa = PBXBuildFile; fileRef = FBC278FC1AF29B6623D40E4F0553472F /* cct.nanopb.h */; settings = {ATTRIBUTES = (Project, ); }; }; 33AEDB5112CC5A3360E05A80AC483900 /* SentryWatchdogTerminationTracker.m in Sources */ = {isa = PBXBuildFile; fileRef = B0060167B0CF1423DDC7E69F5FFBA264 /* SentryWatchdogTerminationTracker.m */; }; - 33B3495B87F62D55A9A1D45AB76FD345 /* SqfliteDarwinDatabaseAdditions.m in Sources */ = {isa = PBXBuildFile; fileRef = 21B0385C0A0F5B09B99F16727C474D5B /* SqfliteDarwinDatabaseAdditions.m */; }; - 33C9F643BF3B45170611450B5C625874 /* SensorPermissionStrategy.h in Headers */ = {isa = PBXBuildFile; fileRef = 0BDAE31134E038637B7A2CDDC1482B44 /* SensorPermissionStrategy.h */; settings = {ATTRIBUTES = (Public, ); }; }; 33EC70A4CC834B64A1079AE9C5C77790 /* SentryDateUtil.m in Sources */ = {isa = PBXBuildFile; fileRef = 07458F25144B7F7CD48EB78A09027D03 /* SentryDateUtil.m */; }; 341B9C12C14FA387B1D518B2E96E6134 /* SentryCrashJSONCodecObjC.m in Sources */ = {isa = PBXBuildFile; fileRef = D8CFE406E78AE8756F6DA906B6BC638C /* SentryCrashJSONCodecObjC.m */; }; 3445ACE726CF1585B16425B50B48F113 /* SentrySpanStatus.m in Sources */ = {isa = PBXBuildFile; fileRef = 5E53C3D1835B1285E62CECB0D558A30B /* SentrySpanStatus.m */; }; 3475EA2182FA95F5BA362080224B7015 /* SentryThreadHandle.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4A171D792F2C643BC0F41FEC9FA46433 /* SentryThreadHandle.cpp */; }; 348C9858B007F7A28C7547D7D31EC40A /* SentryStackFrame.hpp in Headers */ = {isa = PBXBuildFile; fileRef = 75CB6A5E3FD06F14E3640B10DEB2E52E /* SentryStackFrame.hpp */; settings = {ATTRIBUTES = (Project, ); }; }; - 349C0C88E237E5EF167556E6E5BA3F82 /* SqfliteCursor.h in Headers */ = {isa = PBXBuildFile; fileRef = 27B2F91022612A25AE234E38132BF9E1 /* SqfliteCursor.h */; settings = {ATTRIBUTES = (Public, ); }; }; 349CB143DEBE2A547D4429A781A1D013 /* SentryMsgPackSerializer.m in Sources */ = {isa = PBXBuildFile; fileRef = 08BCF888CAEA1FF01E47BB34DC9D6B5D /* SentryMsgPackSerializer.m */; }; 34A8DE17BB395583B25538A85EC6A8A3 /* package_info_plus-package_info_plus_privacy in Resources */ = {isa = PBXBuildFile; fileRef = 64FB8D36F3D5FD1F4E08A8CB92BCD154 /* package_info_plus-package_info_plus_privacy */; }; - 34E79A20C7012B02115954A55AD73488 /* UIColor.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3C06302D722083A52A9F138FD867674C /* UIColor.swift */; }; - 35329107A2043BEBAC0A758095A9CB1C /* IntegrationTestPlugin.h in Headers */ = {isa = PBXBuildFile; fileRef = 38ABAE0CDBCB2A856AA1B77F606B2CB0 /* IntegrationTestPlugin.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 34B4B1FA05F5E645F7038812B7583B68 /* Codec.m in Sources */ = {isa = PBXBuildFile; fileRef = 8828EAA8DFFF7D81443F07F6A05D1E68 /* Codec.m */; }; + 3574B3324CC007136846044250906EF0 /* SqfliteDarwinDatabase.m in Sources */ = {isa = PBXBuildFile; fileRef = BBA5802F64DFDE62B165E4CBB2D642A7 /* SqfliteDarwinDatabase.m */; }; 359DB2AC74032860F9B26EF49D5E8445 /* SentryCrashScopeObserver.m in Sources */ = {isa = PBXBuildFile; fileRef = A7570EB118A5328797AAA226B673FE8C /* SentryCrashScopeObserver.m */; }; - 36325F022B0B0E8F9ECE2E492AB5E523 /* FBLPromise+Await.h in Headers */ = {isa = PBXBuildFile; fileRef = 4C7548C3B18D0964239630227BAAECFD /* FBLPromise+Await.h */; settings = {ATTRIBUTES = (Public, ); }; }; 36E1275D904BE03F5172275E998F7749 /* SentryCrashNSErrorUtil.h in Headers */ = {isa = PBXBuildFile; fileRef = 02234F8144B8DFE1A51F54CFE77527AC /* SentryCrashNSErrorUtil.h */; settings = {ATTRIBUTES = (Project, ); }; }; 371EFE7BFB1B7B37C03E42ACEF28FC8F /* SentrySessionReplay.h in Headers */ = {isa = PBXBuildFile; fileRef = AB84582693D0F85350B1545EC02FBCC8 /* SentrySessionReplay.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 37266331EA149EC27F891EE1EDA1FF87 /* Options.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4394870251B440C1407E966C52CB86B4 /* Options.swift */; }; 3751B3DEEFE159957B32A1938C68D05A /* SentrySystemWrapper.h in Headers */ = {isa = PBXBuildFile; fileRef = 684C475EEEC4740BF2506B973AC769EF /* SentrySystemWrapper.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 37806F124A4F40DEF3E7AA173B3B1823 /* PrivacyInfo.xcprivacy in Resources */ = {isa = PBXBuildFile; fileRef = D9B7F4F975214E63AA39FFDB75B3CC5F /* PrivacyInfo.xcprivacy */; }; 37B5F1B22D622DD4099B6291F608E19F /* SentryCrashDefaultBinaryImageProvider.m in Sources */ = {isa = PBXBuildFile; fileRef = BCDE44E0E6ABDC87BDCB53E2F315E3A6 /* SentryCrashDefaultBinaryImageProvider.m */; }; - 381F2636BD785935B14EE8EACD86EEDC /* InAppBrowserDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = EFE5CAABA79A4B4E30B617147D990665 /* InAppBrowserDelegate.swift */; }; - 38547A6839EBC5AFE946036B3BE6D50A /* GULCCDependency.h in Headers */ = {isa = PBXBuildFile; fileRef = D0B44C2162379BA98ABCF1888039B69C /* GULCCDependency.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 38745E24545C31CB6DC19769A56E20CE /* FLTImagePickerPlugin_Test.h in Headers */ = {isa = PBXBuildFile; fileRef = DA8FBB6B2E4FD1657B023CF8D372B5B3 /* FLTImagePickerPlugin_Test.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 3882E4360F2D715931C911D18F405A87 /* GULLogger.m in Sources */ = {isa = PBXBuildFile; fileRef = 11E9B0F96B20D63D8EFB2065D2A89716 /* GULLogger.m */; }; + 385EAECF8AA2CF4AB65982793AC048C3 /* SwiftMobileScannerPlugin.swift in Sources */ = {isa = PBXBuildFile; fileRef = 528EB47381E7DE10DDAC6F9AEB7A6DC5 /* SwiftMobileScannerPlugin.swift */; }; + 38C408FF63F01DA9B144202EB0A24CE5 /* FBLPromise+Race.m in Sources */ = {isa = PBXBuildFile; fileRef = 88B73C31C801AE75820A454A309150EA /* FBLPromise+Race.m */; }; 39C4C7DDC7B03235B234779467165B12 /* SentryUIViewControllerPerformanceTracker.m in Sources */ = {isa = PBXBuildFile; fileRef = 82C7E289530A6FD5DD8E9FEF3DF2069F /* SentryUIViewControllerPerformanceTracker.m */; }; 39C4FF137584031C16273240AC4ACA9C /* GTMSessionFetcher.m in Sources */ = {isa = PBXBuildFile; fileRef = 18358020B1AD5CC8C84504E29E9C5948 /* GTMSessionFetcher.m */; }; - 3A00845A05560B897BED38A60D376052 /* FBLPromise+Catch.m in Sources */ = {isa = PBXBuildFile; fileRef = B18730B0F1AC94B13E74F27BE7E721CF /* FBLPromise+Catch.m */; }; - 3A97B805480272ACF3EF77433E68459D /* PromisesObjC-FBLPromises_Privacy in Resources */ = {isa = PBXBuildFile; fileRef = 3F238BB22C5201CE689CAF2F766AED95 /* PromisesObjC-FBLPromises_Privacy */; }; 3AB68B70F26C03A9EDE5989413525E2F /* OrderedSet.swift in Sources */ = {isa = PBXBuildFile; fileRef = DC0723F46DAF3B7DFA22AA2372451BDD /* OrderedSet.swift */; }; - 3AD61378C167F9F2F7C12DE568CA864E /* GTMLogger.m in Sources */ = {isa = PBXBuildFile; fileRef = 3C2C6251441F3BD9D4EFFEDB34578906 /* GTMLogger.m */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; - 3B1CFD7A4B64E6EFEC48FC05527890FD /* FBLPromise+Then.h in Headers */ = {isa = PBXBuildFile; fileRef = 6BA23F66424B62DD071F4C090C5F6364 /* FBLPromise+Then.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 3ADB4086C1954102181BCF115EAF37A1 /* PhonePermissionStrategy.h in Headers */ = {isa = PBXBuildFile; fileRef = 27291D9AA336B64AF35485F8BE409257 /* PhonePermissionStrategy.h */; settings = {ATTRIBUTES = (Public, ); }; }; 3B235F290A801990B8365F1909C3B9F4 /* SentryVideoInfo.swift in Sources */ = {isa = PBXBuildFile; fileRef = 57B84415D83500D8EDA8824C6E12DAD9 /* SentryVideoInfo.swift */; }; - 3B34CE5936D008DC77061EA3952DA8E5 /* MediaLibraryPermissionStrategy.m in Sources */ = {isa = PBXBuildFile; fileRef = 72D0DCE781E7E4A6C99D317490B954BB /* MediaLibraryPermissionStrategy.m */; }; - 3B4A9096E22B45B07F5287C62653EC76 /* InterceptFetchRequestJS.swift in Sources */ = {isa = PBXBuildFile; fileRef = 99CF0EBD4A7377A9C5F8A3F74A514AB7 /* InterceptFetchRequestJS.swift */; }; 3B9797A9935F26A3462C7E143950D7B8 /* share_plus-share_plus_privacy in Resources */ = {isa = PBXBuildFile; fileRef = C839C9567748BADA576920A5CFC4D59E /* share_plus-share_plus_privacy */; }; - 3BB49E3997E724860EB21754076B6942 /* GULHeartbeatDateStorable.h in Headers */ = {isa = PBXBuildFile; fileRef = 3E577FC8654F2EC339DA7E5269E24B96 /* GULHeartbeatDateStorable.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 3BB6619F7D2355C3920E337F55FF1F61 /* FLALocalAuthPlugin.h in Headers */ = {isa = PBXBuildFile; fileRef = 3C52C60804BA29D2462E0DCDAE3C4933 /* FLALocalAuthPlugin.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 3BC3D41242176E1C0F21E77B60EC270F /* SqfliteDatabase.h in Headers */ = {isa = PBXBuildFile; fileRef = 22F6495158FE36910A567672B32B3FB7 /* SqfliteDatabase.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 3BEE30B4ACB2B845DD496C9045E3E2ED /* PermissionHandlerPlugin.m in Sources */ = {isa = PBXBuildFile; fileRef = 3772919F8EE536F0B9FC21305A65E4E6 /* PermissionHandlerPlugin.m */; }; 3CA036D38E04693B649E5996BE4085E9 /* SentryCrashReportStore.h in Headers */ = {isa = PBXBuildFile; fileRef = 71103611B115123AF9F71FA4D7967A30 /* SentryCrashReportStore.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3D28EE1B75172893917F6CD02CA1CED5 /* ContextMenuOptions.swift in Sources */ = {isa = PBXBuildFile; fileRef = A3E1A80C2D687BC494970260F0A04BD2 /* ContextMenuOptions.swift */; }; + 3CFC95092D25FD2062334EBC0A0681B9 /* WKProcessPoolManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4124F1BBB9A75A0DBA297C41EC2A56D9 /* WKProcessPoolManager.swift */; }; 3D2ACCFF8EEE470991F35CAF10718A08 /* SentrySessionTracker.m in Sources */ = {isa = PBXBuildFile; fileRef = 01E60C30D908B25C760C39A99FF98180 /* SentrySessionTracker.m */; }; 3D524C988E76301990459E36A1A5A741 /* SentryMetricProfiler.mm in Sources */ = {isa = PBXBuildFile; fileRef = B7B52DAC8AB3FD8737E012F6A695C79C /* SentryMetricProfiler.mm */; }; - 3D7172308ED2AEC29620320ECBD1DDA0 /* LocationPermissionStrategy.m in Sources */ = {isa = PBXBuildFile; fileRef = 8A4B01529FEBBCD8879D5DC3910BEB6E /* LocationPermissionStrategy.m */; }; 3DDC156435577BF068CF8DDFC80A82E7 /* HTTPHeaderSanitizer.swift in Sources */ = {isa = PBXBuildFile; fileRef = B60CD43B5FE5A4B7AC28EA1C86635EF9 /* HTTPHeaderSanitizer.swift */; }; 3DFB17BE06DBD8F1244D98953100EA76 /* SentryMachLogging.hpp in Headers */ = {isa = PBXBuildFile; fileRef = 04A3EDB813064809ED7E9DFF3463B235 /* SentryMachLogging.hpp */; settings = {ATTRIBUTES = (Project, ); }; }; - 3EA275F38F345DA42ECBF3610B042A13 /* FBLPromise+Any.m in Sources */ = {isa = PBXBuildFile; fileRef = F0EE3EBE67E2912F7CE5F0595FBBAA2F /* FBLPromise+Any.m */; }; 3EC273057F26A0EDF1BCA6ACB46E758A /* SentryHub.h in Headers */ = {isa = PBXBuildFile; fileRef = 9AC4DED97E5FC69B5B3DA32CAA3CE70E /* SentryHub.h */; settings = {ATTRIBUTES = (Public, ); }; }; 3EC3B826D6064013BCED8C4C720BAFE7 /* SentryCrashCPU_arm.c in Sources */ = {isa = PBXBuildFile; fileRef = 4CF5ECD8C48193F9C8D6BD83C5E7AF53 /* SentryCrashCPU_arm.c */; }; - 3F0FD841E83370C2A8F2D21B6390AFCD /* GULAppEnvironmentUtil.h in Headers */ = {isa = PBXBuildFile; fileRef = 9FA8CCBC4007C219E2C0090C7645E3DB /* GULAppEnvironmentUtil.h */; settings = {ATTRIBUTES = (Public, ); }; }; 3FAFB20B462824D22D07AC58B3B22516 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = BAE27CDB4E2E589B1AC89F06DE3D7D04 /* Foundation.framework */; }; 3FDDCE06C48DE69F36A2858C61028C1E /* local_auth_darwin-local_auth_darwin_privacy in Resources */ = {isa = PBXBuildFile; fileRef = 074282E39D46BA74A765730C057AFC43 /* local_auth_darwin-local_auth_darwin_privacy */; }; 403C9556DFD7505B8C164B2D5327E10D /* SentrySession+Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 6050E13CCB8BA3F9A4998EB3FAC0945A /* SentrySession+Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; 406FF569F6B9BC82671B21DDC79AE096 /* SentryContinuousProfiler.h in Headers */ = {isa = PBXBuildFile; fileRef = 270884FD70409A1461685D7F754ED90A /* SentryContinuousProfiler.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4090704E14BBF75A0A8F3A2027082F8E /* FLTImagePickerPlugin.m in Sources */ = {isa = PBXBuildFile; fileRef = 3F5272EA66106DBBF8754F49E0915252 /* FLTImagePickerPlugin.m */; }; + 4072E2EFD1C5F06379392F2A367D3E0A /* GULHeartbeatDateStorable.h in Headers */ = {isa = PBXBuildFile; fileRef = 3E577FC8654F2EC339DA7E5269E24B96 /* GULHeartbeatDateStorable.h */; settings = {ATTRIBUTES = (Public, ); }; }; 409FB33F21F91A24DB94F8046C180CB7 /* SentryCrashObjC.h in Headers */ = {isa = PBXBuildFile; fileRef = A4F1D9286B7E8373289B0F03E2563A35 /* SentryCrashObjC.h */; settings = {ATTRIBUTES = (Project, ); }; }; 40B82BB7577B8266FBD044002F006EB1 /* SentrySerializable.h in Headers */ = {isa = PBXBuildFile; fileRef = 6EBF652D2972BFE2EF13050E16FDD19C /* SentrySerializable.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 40BBD239E1900F271717AAD7B08B86B0 /* MyWebStorageManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = F43FB3FF02053F3FBC9D0184C04F584F /* MyWebStorageManager.swift */; }; + 40E0B6DBD8FDAFBC77D472ED5173C882 /* SwiftFlutterSecureStoragePlugin.swift in Sources */ = {isa = PBXBuildFile; fileRef = 612B9727B9129F63754F26C7CE5D80AB /* SwiftFlutterSecureStoragePlugin.swift */; }; 411D71AC32361A9A05BDE9156F9E1314 /* SentryEnvelope.m in Sources */ = {isa = PBXBuildFile; fileRef = 635C0CF1AF8D62C8BE7306B19084A183 /* SentryEnvelope.m */; }; - 417CFA6A0636AA886228A7FA10001556 /* package_info_plus-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 4BD959FE67BD0252AE48B5E4F2974626 /* package_info_plus-dummy.m */; }; + 417CFA6A0636AA886228A7FA10001556 /* package_info_plus-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 0422D1FD2FDB5A7D631672A6E0A9F216 /* package_info_plus-dummy.m */; }; 419A674907E19CC5113A5B852D423E68 /* SentryLaunchProfiling.m in Sources */ = {isa = PBXBuildFile; fileRef = 91B9AF85D2860B5F37F488F0B3B1ABE1 /* SentryLaunchProfiling.m */; }; 41A10CB87A21785B3D64F3584CC19916 /* GDTCORConsoleLogger.h in Headers */ = {isa = PBXBuildFile; fileRef = 2FBA8EC7ED4B8EC73BCF440F48D729B3 /* GDTCORConsoleLogger.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 41B709C97BE2D1DEE923F9CAD802EC2E /* url_launcher_ios-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 6AAFB65C4BA5A2F7AF16F48ED6216196 /* url_launcher_ios-dummy.m */; }; + 41B709C97BE2D1DEE923F9CAD802EC2E /* url_launcher_ios-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = E6EE0C9724ADD6798CB63C60D7B54D7D /* url_launcher_ios-dummy.m */; }; 422E38E3EA131514765E845D18CD02CB /* SentryProfilerTestHelpers.m in Sources */ = {isa = PBXBuildFile; fileRef = 9236ADD0C764444C8636FB04D84F82ED /* SentryProfilerTestHelpers.m */; }; 424A35C9E87A5E8612EEE6A2E9280EBF /* GDTCORDirectorySizeTracker.m in Sources */ = {isa = PBXBuildFile; fileRef = 0CA0B86DE5F4F225F05140A3AE512DEE /* GDTCORDirectorySizeTracker.m */; }; + 4295E0C6CA615423A4A057D367833CF0 /* GULCCComponentContainer.m in Sources */ = {isa = PBXBuildFile; fileRef = 9B14867CC9E159E74BEB194C5EC2D1A4 /* GULCCComponentContainer.m */; }; 42AB76A1AEB732F0FED70314C4429E07 /* SentryAppStartTrackingIntegration.m in Sources */ = {isa = PBXBuildFile; fileRef = 4F65148A46BA4F8E3C17C5B85FA94EF6 /* SentryAppStartTrackingIntegration.m */; }; 42C2AEBE919B2A15FE5FA1117FE78A37 /* SentryFramesTrackingIntegration.m in Sources */ = {isa = PBXBuildFile; fileRef = AA5651B737ECC89731E27D280E249403 /* SentryFramesTrackingIntegration.m */; }; 42E134A8B45B9522309DB83EECEF8F3B /* SentryCrashInstallation.h in Headers */ = {isa = PBXBuildFile; fileRef = 218BECBA0B061EFB5512D9A12B5C047A /* SentryCrashInstallation.h */; settings = {ATTRIBUTES = (Project, ); }; }; 430EBDE3925BD5F2C7F670A438F91005 /* GDTCORStorageSizeBytes.h in Headers */ = {isa = PBXBuildFile; fileRef = 2227FC3EBD795C9EAB70E697AB9D33B3 /* GDTCORStorageSizeBytes.h */; settings = {ATTRIBUTES = (Project, ); }; }; 43868F62E6DA1CE349F2E54C4AF3927F /* SentryWatchdogTerminationScopeObserver.m in Sources */ = {isa = PBXBuildFile; fileRef = 3CFA1719AAEC1C0B7851EF83E9661170 /* SentryWatchdogTerminationScopeObserver.m */; }; - 439C66BD6212BC75705402F21E73D383 /* SqfliteDarwinDatabaseAdditions.h in Headers */ = {isa = PBXBuildFile; fileRef = 3D07BB026EB842C5DC8FF24C1DBC931C /* SqfliteDarwinDatabaseAdditions.h */; settings = {ATTRIBUTES = (Public, ); }; }; 43B44E1074161DF811E7A4347DB67DDA /* SentryNSDataSwizzling.m in Sources */ = {isa = PBXBuildFile; fileRef = 3F83C5A22BF88512B7F39C4AC16071EE /* SentryNSDataSwizzling.m */; }; 43E61169A4446624564CA49179FA2731 /* SentryViewHierarchy.h in Headers */ = {isa = PBXBuildFile; fileRef = EDCF5482EB2302586BDA1BADA014E1D2 /* SentryViewHierarchy.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 440AC27DE65D9AA4C64F876B4B591FC2 /* nanopb-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = DBC0D63D64ED539A6F33CFFD6BE1E7B9 /* nanopb-dummy.m */; }; 442C895582D75BAA1080172F52F658BF /* SentryRequest.h in Headers */ = {isa = PBXBuildFile; fileRef = DD8124312C50293B16DCD46912338D5A /* SentryRequest.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 444E98A8A1E0DA8B7087A5C9DB6629DB /* flutter_secure_storage-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 29C83713F0C404FE67A1ACD7964E0227 /* flutter_secure_storage-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 444E98A8A1E0DA8B7087A5C9DB6629DB /* flutter_secure_storage-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 0DB9807AB269DA3CF5EEAC3603677A07 /* flutter_secure_storage-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; 44A863AC104C79296758964B39976B49 /* SentrySwizzle.m in Sources */ = {isa = PBXBuildFile; fileRef = F443E0A80380DEB0FFA45DB3CED4C78D /* SentrySwizzle.m */; }; 44D867FED70075FFAF3B024CDB628504 /* SentryCrashMonitor_CPPException.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 87A8255876DEB4D31DC62E9DFF0FEE28 /* SentryCrashMonitor_CPPException.cpp */; }; 44EBDE19E0045D9ADF76F733A7D7F041 /* SentryCrashBinaryImageCache.c in Sources */ = {isa = PBXBuildFile; fileRef = A6BE617569D952D77DD8AA5AEB913687 /* SentryCrashBinaryImageCache.c */; }; 4513C3A9FD11FF74E9FA886A76970FA0 /* SentryCrashDoctor.h in Headers */ = {isa = PBXBuildFile; fileRef = 903460DF5E8DAF47D7882BFA4292F639 /* SentryCrashDoctor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 45924977D4F16B8ADF5E20112D96E5DC /* GULCCComponentContainerInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = 6F4B1DA7D8F4EE7984CB784CE11D028C /* GULCCComponentContainerInternal.h */; settings = {ATTRIBUTES = (Private, ); }; }; - 4600DF38A2580644D02FD2DEBC2247FF /* CriticalAlertsPermissionStrategy.h in Headers */ = {isa = PBXBuildFile; fileRef = BDA2A4A968C99D18DA8843ADD45A552C /* CriticalAlertsPermissionStrategy.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 458715479694087963DB2C634F25C888 /* OnWindowFocusEventJS.swift in Sources */ = {isa = PBXBuildFile; fileRef = 86EC6DD73822E686A767E6331858E1B7 /* OnWindowFocusEventJS.swift */; }; + 4587261CC27EEFA3E5436380C5634233 /* GULSecureCoding.h in Headers */ = {isa = PBXBuildFile; fileRef = 63D826D31EDCEB80FAA88CC787159DD1 /* GULSecureCoding.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 45AA87E2E157343F1F16BB29A133469D /* MyCookieManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2EC17703646BE4B7F5DF4EF21DA6FDDF /* MyCookieManager.swift */; }; 460F2DEE35E8718080AA4526FDB42D06 /* SentryTime.h in Headers */ = {isa = PBXBuildFile; fileRef = 7A2BEBDF9E9A0AE8FB2A5F0F2797E9E5 /* SentryTime.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4632D7CCBFD9A23B0A8B5D762EF42F49 /* AudioVideoPermissionStrategy.m in Sources */ = {isa = PBXBuildFile; fileRef = 8A6447C25B2E6E801F15037F78F1673F /* AudioVideoPermissionStrategy.m */; }; - 46C5261107FECFA0CCB397511D8A5E6B /* FBLPromises.h in Headers */ = {isa = PBXBuildFile; fileRef = C72AD5DD9EA78E2303BDA3D316DFE4A8 /* FBLPromises.h */; settings = {ATTRIBUTES = (Public, ); }; }; 46CA74D04453CB57C289352E07017B58 /* SentryOnDemandReplay.swift in Sources */ = {isa = PBXBuildFile; fileRef = C02704EE14E7DB496003BF4BD38138A8 /* SentryOnDemandReplay.swift */; }; 477BEC4E4477966FBC5E821C86559F6A /* SentryCrashInstallation+Private.h in Headers */ = {isa = PBXBuildFile; fileRef = EFA5AA39B67B437AE70B342D8536EA45 /* SentryCrashInstallation+Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; 47E02CBDD9040224C9F0729AEEF89CA4 /* SentryDsn.h in Headers */ = {isa = PBXBuildFile; fileRef = 4476EDC56C67184C6B45570D7ACB8C6D /* SentryDsn.h */; settings = {ATTRIBUTES = (Public, ); }; }; 47F2F8EED934C4DF9A2DB9D7E0B96011 /* SentrySpotlightTransport.m in Sources */ = {isa = PBXBuildFile; fileRef = ACD62FB3907FB80AC71C927F9BF7024F /* SentrySpotlightTransport.m */; }; - 48663821FCA7F7EF145D2F618AFC3F6A /* FBLPromise+Retry.h in Headers */ = {isa = PBXBuildFile; fileRef = D7C37246E671C1932E04A79C193FBC21 /* FBLPromise+Retry.h */; settings = {ATTRIBUTES = (Public, ); }; }; 487255919EF2B9DDFC5AFC10BCEDD435 /* GDTCOREvent.h in Headers */ = {isa = PBXBuildFile; fileRef = C858EAE363FCFCB79E3C91A82B27D67D /* GDTCOREvent.h */; settings = {ATTRIBUTES = (Public, ); }; }; 48B486B946BF81D96CC4E3CF3C78728C /* SentryCrashMachineContextWrapper.h in Headers */ = {isa = PBXBuildFile; fileRef = 48858418C67BAB587096BD607EFA0C79 /* SentryCrashMachineContextWrapper.h */; settings = {ATTRIBUTES = (Project, ); }; }; 48E65CB0F3C99821A4496FA5847646F4 /* SentrySamplingProfiler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D5A01996538A8D5728B172431A733B90 /* SentrySamplingProfiler.cpp */; }; 48E878231A52BCDF38284EB4515FE345 /* SentryError.mm in Sources */ = {isa = PBXBuildFile; fileRef = 1215052680548C931BBB686371349F46 /* SentryError.mm */; }; 48F119DA8208F83874A0CEF0656CDE0F /* BucketsMetricsAggregator.swift in Sources */ = {isa = PBXBuildFile; fileRef = C4AD0D3536C01E28F916B76F5158122F /* BucketsMetricsAggregator.swift */; }; 491F23C5AC5BA6DC038E2FC79E7C06CF /* GDTCORStorageMetadata.m in Sources */ = {isa = PBXBuildFile; fileRef = DD33DF67AC61FAC767E3FCE2F28BB9C0 /* GDTCORStorageMetadata.m */; }; + 495AA59E4977F8D05DD28F1D46B23117 /* SqflitePlugin.m in Sources */ = {isa = PBXBuildFile; fileRef = AC01FA9D77CC8D999FF4AD7FF8C54E18 /* SqflitePlugin.m */; }; 496CFC297573371524A9F3EB5AF9A954 /* SentryCrashReportSink.m in Sources */ = {isa = PBXBuildFile; fileRef = C05E6177A22C369CBB1285CB86BF091E /* SentryCrashReportSink.m */; }; 49B056ECAAEC2E2355366CD340215B82 /* SentryNSError.m in Sources */ = {isa = PBXBuildFile; fileRef = 04775ED80C5CD9BF786F4F85BC968CF5 /* SentryNSError.m */; }; + 4A01BFCC908085E066080B699723E729 /* UIColor.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5F732997C856FFFBE03B3F9D18458E97 /* UIColor.swift */; }; 4A3298EF2FB08E46CCE9165C4B77852B /* SentryConcurrentRateLimitsDictionary.m in Sources */ = {isa = PBXBuildFile; fileRef = 96213C2E18D4026F1099B0F345766FD3 /* SentryConcurrentRateLimitsDictionary.m */; }; 4A740195287B535F1D334E30555152DC /* SentryCrashMachineContext.c in Sources */ = {isa = PBXBuildFile; fileRef = 23526B5C8BF6768C2DFBA470AEE47355 /* SentryCrashMachineContext.c */; }; - 4AA7455F425BEFF16144BC74269C3520 /* DetectionSpeed.swift in Sources */ = {isa = PBXBuildFile; fileRef = E06F50968CD2762355272E22872CD78D /* DetectionSpeed.swift */; }; - 4B39D7141A53E90E287F5DE11EE3A5BF /* FlutterSecureStoragePlugin.m in Sources */ = {isa = PBXBuildFile; fileRef = 90C21B016CC22ED733735905CCF87B26 /* FlutterSecureStoragePlugin.m */; }; + 4A794724E991E7AB83EA0C88CD157C19 /* SwiftFlutterEmailSenderPlugin.swift in Sources */ = {isa = PBXBuildFile; fileRef = C382B3855032F0B79332CA6A9BCC2955 /* SwiftFlutterEmailSenderPlugin.swift */; }; + 4ADDB3A336E50A1A53A5FC0EADA5B7BC /* GULCCDependency.h in Headers */ = {isa = PBXBuildFile; fileRef = D0B44C2162379BA98ABCF1888039B69C /* GULCCDependency.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 4B35C16FE570965D44416ADF88FFE55B /* SpeechPermissionStrategy.h in Headers */ = {isa = PBXBuildFile; fileRef = 5D1DC509408A3AC2E1A90C74C1E3FC08 /* SpeechPermissionStrategy.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 4B4B83DCBF2A85639C45F2AF33BF945B /* SensorPermissionStrategy.h in Headers */ = {isa = PBXBuildFile; fileRef = 7FB3E79A608C15B86EC670162E505CA5 /* SensorPermissionStrategy.h */; settings = {ATTRIBUTES = (Public, ); }; }; 4B5D79D5099E1C86DA1805ABDE0994DE /* SentrySamplerDecision.m in Sources */ = {isa = PBXBuildFile; fileRef = C2F63EB24316CD8D60BEB6647C3993D7 /* SentrySamplerDecision.m */; }; 4B99694AB6B90BF51F5B8CC634A53FFA /* Sentry-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = C5F3A2EFD60AB32FE0BB2EAC15B9A73F /* Sentry-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 4B9D745426A493235E175565B8349DCA /* FLTIntegrationTestRunner.m in Sources */ = {isa = PBXBuildFile; fileRef = 095A7EF55EACDD7A2B4E9DB288CC5799 /* FLTIntegrationTestRunner.m */; }; - 4BBD6ABAE97506D17E527FD8C29ED003 /* sentry_flutter-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 46B590971878E46D6CCCF1367F625174 /* sentry_flutter-dummy.m */; }; + 4BBD6ABAE97506D17E527FD8C29ED003 /* sentry_flutter-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = DA12844A52F847283F7C5B1B0AE2EFDF /* sentry_flutter-dummy.m */; }; + 4C21C7F342C74DE02A0CD2F2D9F73225 /* FPPPackageInfoPlusPlugin.h in Headers */ = {isa = PBXBuildFile; fileRef = C02601FB6638E1A3060C8A020F03271F /* FPPPackageInfoPlusPlugin.h */; settings = {ATTRIBUTES = (Public, ); }; }; 4C6163661BAB6675DDC496455CF38910 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = BAE27CDB4E2E589B1AC89F06DE3D7D04 /* Foundation.framework */; }; 4C6FCFCA1E0C2DC981E0FA8345979DB8 /* SentryTransactionContext.mm in Sources */ = {isa = PBXBuildFile; fileRef = BC658F4BCBDC9B0A80895594FE8F40DA /* SentryTransactionContext.mm */; }; 4C785D93DA3C028F0D6602CAC71513E4 /* SentryUIApplication.h in Headers */ = {isa = PBXBuildFile; fileRef = 78F78EC88B8BF0A8B1B90B0087E6E034 /* SentryUIApplication.h */; settings = {ATTRIBUTES = (Project, ); }; }; 4C925F976307A924B5CA383DF48773D5 /* SentryCrashBinaryImageProvider.h in Headers */ = {isa = PBXBuildFile; fileRef = 229745DEDB304422C8F9AB456ABC7E41 /* SentryCrashBinaryImageProvider.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4D085FA6F2A49F0E353618EE6BA4FA14 /* FlutterNativeSplashPlugin.h in Headers */ = {isa = PBXBuildFile; fileRef = DF26DFB15462009B8183757F542F07E6 /* FlutterNativeSplashPlugin.h */; settings = {ATTRIBUTES = (Public, ); }; }; 4D5DA952A9257668202814EB116FCE01 /* SentryThread.h in Headers */ = {isa = PBXBuildFile; fileRef = C0BBDEFA26E2A7E0FF6D75F48E07CC92 /* SentryThread.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 4DC24EF55BD97295DFCC549A2479D20C /* WKUserContentController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2B8AF3A64553B8CFFCCDF8D62596A375 /* WKUserContentController.swift */; }; + 4D6E7DC74D0298463073211242608559 /* SqfliteDarwinDatabaseAdditions.m in Sources */ = {isa = PBXBuildFile; fileRef = 037B903BE9BB63D9718E0EAC828A68C8 /* SqfliteDarwinDatabaseAdditions.m */; }; + 4DF977EB8F96D73F14C2DD3F82C7222E /* GULUserDefaults.h in Headers */ = {isa = PBXBuildFile; fileRef = AEF0CAC7EEA5D21533C5E49E84B2994B /* GULUserDefaults.h */; settings = {ATTRIBUTES = (Public, ); }; }; 4E47ACBE941744DBDE2BB4E441C14701 /* SentryCrashWrapper.m in Sources */ = {isa = PBXBuildFile; fileRef = CF49679DCB6D9803ACD2F8C90106302C /* SentryCrashWrapper.m */; }; + 4E55E702DC4EF13946FCD732320F8DA1 /* PrivacyInfo.xcprivacy in Resources */ = {isa = PBXBuildFile; fileRef = D8F2F730DA7B87E8E05226416AEFFE24 /* PrivacyInfo.xcprivacy */; }; 4E5D1B11C39AFA646BA964E289664069 /* GDTCORUploadCoordinator.m in Sources */ = {isa = PBXBuildFile; fileRef = D7368C5419CD4781BCD0226CB23C22FF /* GDTCORUploadCoordinator.m */; }; - 4EC46CD37A5BE290DA8A48166EA99644 /* PermissionStrategy.h in Headers */ = {isa = PBXBuildFile; fileRef = 5B0EFBE07BFA616A4F4C7EEECC387452 /* PermissionStrategy.h */; settings = {ATTRIBUTES = (Public, ); }; }; 4F1C58AA460BF274E6AF8A421993C26E /* SentryNSURLRequest.h in Headers */ = {isa = PBXBuildFile; fileRef = 202F85E0834F8D0D431F865A7388B4FC /* SentryNSURLRequest.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4F35D71C18C9657061A12AE2B99084ED /* GULLogger.h in Headers */ = {isa = PBXBuildFile; fileRef = FB42A217170A295E7B9D979509DA77AD /* GULLogger.h */; settings = {ATTRIBUTES = (Public, ); }; }; 4F801A7AA9F046FADCC96E57C8454B83 /* SentryEnvelopeRateLimit.h in Headers */ = {isa = PBXBuildFile; fileRef = 5B05273205EA6ECCA9864157ED11CE74 /* SentryEnvelopeRateLimit.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4F8561C52EA5214773A682A5FACFBA71 /* LastTouchedAnchorOrImageJS.swift in Sources */ = {isa = PBXBuildFile; fileRef = 219397827D65EF950553FF08B64A822E /* LastTouchedAnchorOrImageJS.swift */; }; - 4FDB6692374D7BCF7650ABBAC7A6E6AA /* FlutterSecureStorage.swift in Sources */ = {isa = PBXBuildFile; fileRef = DC9D048ED59B93A151EA5477A8181C82 /* FlutterSecureStorage.swift */; }; + 4FCB6B9C2B29A4ED7EA5DAB17E4C29C6 /* GULHeartbeatDateStorageUserDefaults.h in Headers */ = {isa = PBXBuildFile; fileRef = 1B068CDDEE40925B45BBF998C6C3CB8A /* GULHeartbeatDateStorageUserDefaults.h */; settings = {ATTRIBUTES = (Public, ); }; }; 4FEFE1C524626E301A47C0EDF9DEF5D0 /* SentryCrashObjCApple.h in Headers */ = {isa = PBXBuildFile; fileRef = 3C51F808CA0B29A391D8945894792B71 /* SentryCrashObjCApple.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 50047576B8698081A963CB6719C3C47C /* PrivacyInfo.xcprivacy in Resources */ = {isa = PBXBuildFile; fileRef = 05D3B7FC1B5C90B8C6ED72FFB439FA8E /* PrivacyInfo.xcprivacy */; }; 50208B87EB55205FEC85853F396D1D77 /* SentryCrashSignalInfo.c in Sources */ = {isa = PBXBuildFile; fileRef = B5C31D6B0507BE5AA16FA2ED0DB53676 /* SentryCrashSignalInfo.c */; }; + 5038AE01A8D92457BAAAA1706C5B592F /* OnLoadResourceJS.swift in Sources */ = {isa = PBXBuildFile; fileRef = FE07DEE03B0ED4C45FDEB630488C8B62 /* OnLoadResourceJS.swift */; }; 507B2A8B9ED05F728587A2C2D9920996 /* SentryCrashThread.h in Headers */ = {isa = PBXBuildFile; fileRef = CB280D9814B31387B82EA5BB8953B35E /* SentryCrashThread.h */; settings = {ATTRIBUTES = (Project, ); }; }; 507B2BF65EE7EE9635D0EA13B9637A50 /* UIKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = D0229F11FB39C1A98B4CBDCE978F6990 /* UIKit.framework */; }; 50AE829E4DC83A08A32148C79CD33BB7 /* NSLocale+Sentry.h in Headers */ = {isa = PBXBuildFile; fileRef = 41828143482AEB812D120C57E82452BE /* NSLocale+Sentry.h */; settings = {ATTRIBUTES = (Project, ); }; }; 5103A4EF97281D0AAB9D409372D4EBB5 /* external_prequest_context.nanopb.c in Sources */ = {isa = PBXBuildFile; fileRef = E204B84878155F78928233A674350886 /* external_prequest_context.nanopb.c */; }; 51350BAB52CD73EF4EE08B246CC5EBF2 /* SentryHttpStatusCodeRange+Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 9F77F090AF60912EA9612155EB9BB1CB /* SentryHttpStatusCodeRange+Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; 5158CB00379E8A22F62BF111615FE23F /* SentryUIEventTrackerMode.h in Headers */ = {isa = PBXBuildFile; fileRef = 05A080C0AF6D235E4A2CFFD438A6BA2C /* SentryUIEventTrackerMode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 51B148E14C4C8F6F7C09C98CF809A0FA /* NSAttributedString.swift in Sources */ = {isa = PBXBuildFile; fileRef = 10864F3E8C3F89FB23B46C36F9BBD8FE /* NSAttributedString.swift */; }; 51C847437F5356AAD29CFE72DB85052A /* SentryClient+Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 7EEC9AD6B31F7D2B8E4CCE831381BA2D /* SentryClient+Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 51D774C6E0B46E71624853B89EB7BF26 /* URLResponse.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7EB14EECD4BAEF7CD98F5611C103ADFC /* URLResponse.swift */; }; - 52002BF299992FC4273549D37067F250 /* PermissionManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 7A64A8A7DFBF51924FE6734E85933D45 /* PermissionManager.h */; settings = {ATTRIBUTES = (Public, ); }; }; 52121FACC5DB7985D45DA63861E5E970 /* GDTCORClock.m in Sources */ = {isa = PBXBuildFile; fileRef = 6BA0C9B5233795A9BEB379FB5C600708 /* GDTCORClock.m */; }; 521FD7A3E420CC892EF8928FBCECD162 /* SentryCrashUUIDConversion.h in Headers */ = {isa = PBXBuildFile; fileRef = B5F2F836EF4BCEF397FAC588BA9B1449 /* SentryCrashUUIDConversion.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5235DA445E252F346EBC4B2859D35012 /* IsAppEncrypted.m in Sources */ = {isa = PBXBuildFile; fileRef = 0D79CD7BAB911B77C3EEB85F93029450 /* IsAppEncrypted.m */; }; 52610B862825C9EF0606F73D616E9E8B /* SentryInAppLogic.m in Sources */ = {isa = PBXBuildFile; fileRef = 542D736D64717B205A7F5F91418040B3 /* SentryInAppLogic.m */; }; - 53148EC4184BB9F169DE996CBB936B06 /* WebMessageChannel.swift in Sources */ = {isa = PBXBuildFile; fileRef = E314798A0A07820FA7D756A36DA4B2AC /* WebMessageChannel.swift */; }; + 5293DB2841ECC5CA6E33CFA4B3CE136E /* PrivacyInfo.xcprivacy in Resources */ = {isa = PBXBuildFile; fileRef = 7246D6DE594B2308AA230961D858E204 /* PrivacyInfo.xcprivacy */; }; + 52AA6D11A0925EDA8B478577C22040F7 /* GoogleUtilities-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = B6E28F6FF5B761C729893AEB166B5C3F /* GoogleUtilities-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; 531F80368842565BBF2FA3E9E1936519 /* GDTCOREventTransformer.h in Headers */ = {isa = PBXBuildFile; fileRef = B2FD0867F93A192FBE155AE32D104D85 /* GDTCOREventTransformer.h */; settings = {ATTRIBUTES = (Public, ); }; }; 535963D96A00D1A7BC0EA97F04C1832E /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = BAE27CDB4E2E589B1AC89F06DE3D7D04 /* Foundation.framework */; }; - 537F104E4175DF02D2CCE04F2BF020D4 /* Codec.h in Headers */ = {isa = PBXBuildFile; fileRef = E4B87B692F3DD24C55B8A11F9DF2A035 /* Codec.h */; settings = {ATTRIBUTES = (Public, ); }; }; 539ADC6A3B456879745BE186E4408A23 /* GDTCORProductData.m in Sources */ = {isa = PBXBuildFile; fileRef = 2B82DE9A4259ADE276F731398B0D97F8 /* GDTCORProductData.m */; }; 542DB81A56BCBA96B7B2FFC58C30553E /* GDTCORDirectorySizeTracker.h in Headers */ = {isa = PBXBuildFile; fileRef = 692F4BFE75D1792D2D8989315F1596B8 /* GDTCORDirectorySizeTracker.h */; settings = {ATTRIBUTES = (Project, ); }; }; 543D424FB9D73681247A844F9C61131F /* SentryCrashInstallationReporter.m in Sources */ = {isa = PBXBuildFile; fileRef = 09FCCCA850AAE7D373DBD3CD330554EC /* SentryCrashInstallationReporter.m */; }; 54B9D484585D88BFAA99E4705E5B3B8C /* SentryBuildAppStartSpans.m in Sources */ = {isa = PBXBuildFile; fileRef = F507103DFA665F1BADD4612D622C3ACC /* SentryBuildAppStartSpans.m */; }; 54C628314F5C4F7FF35D339FEB686018 /* SentryPrivate.h in Headers */ = {isa = PBXBuildFile; fileRef = C9CADB5A9D249BFD7885AADEFBFFAF45 /* SentryPrivate.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 54CB10A007D736C1ED5BEF0730FBEC7E /* WebMessagePort.swift in Sources */ = {isa = PBXBuildFile; fileRef = C85EE2D2805C0213D502BEDC92E92549 /* WebMessagePort.swift */; }; 54E03D15E67B461319BCFC32A0D590C7 /* SentryBaggage.h in Headers */ = {isa = PBXBuildFile; fileRef = FC316CE7F31D0C131BDB442923496E1C /* SentryBaggage.h */; settings = {ATTRIBUTES = (Project, ); }; }; 5522E840795CB5DA989891811E554DC3 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = BAE27CDB4E2E589B1AC89F06DE3D7D04 /* Foundation.framework */; }; 5568957B795236CCEB94368A268881DD /* SentrySubClassFinder.h in Headers */ = {isa = PBXBuildFile; fileRef = E3CB4802FF79C6E7265ACD916FE421C4 /* SentrySubClassFinder.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5581F3C7F1E11D02D27396145EB15F6D /* PrivacyInfo.xcprivacy in Resources */ = {isa = PBXBuildFile; fileRef = 99C8C4CCFC25379F6DB567D12FD279FF /* PrivacyInfo.xcprivacy */; }; - 564365FF54B915330637733ED11B0E41 /* ContactPermissionStrategy.m in Sources */ = {isa = PBXBuildFile; fileRef = 2238798E9A95B42DFAF1B773ABC69C55 /* ContactPermissionStrategy.m */; }; + 556DF684B67F5E0E3DC5385831ADFC81 /* GULLogger.m in Sources */ = {isa = PBXBuildFile; fileRef = 11E9B0F96B20D63D8EFB2065D2A89716 /* GULLogger.m */; }; 56E6EB416A0C45D48E15FD1FD11D70E2 /* GTMSessionFetcher-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 78B272E58EE03E6DDC470FEC773AE7DF /* GTMSessionFetcher-dummy.m */; }; - 5725B045C043C0352B5CBF493037C206 /* FBLPromise+Recover.m in Sources */ = {isa = PBXBuildFile; fileRef = 9C3043C5A2F888947EF1F69B00DD7E9A /* FBLPromise+Recover.m */; }; 57399BF53628D611A02CD36243229EF9 /* SentryId.swift in Sources */ = {isa = PBXBuildFile; fileRef = C3B98E18FC5F24F299D3C9D6A65BAE6E /* SentryId.swift */; }; 5754504EDEC8153360A06A04EA756152 /* SentryCrashSymbolicator.h in Headers */ = {isa = PBXBuildFile; fileRef = 0954CD2C86A1BC5EB8EE626EFAD02E05 /* SentryCrashSymbolicator.h */; settings = {ATTRIBUTES = (Project, ); }; }; 5782AC85F65EB2839E0214871FC3F99E /* SentryCrashCString.h in Headers */ = {isa = PBXBuildFile; fileRef = 9B5354AB23E962C7916DC424613FAC4C /* SentryCrashCString.h */; settings = {ATTRIBUTES = (Project, ); }; }; 57944BB04DA5186E041932F930B045BB /* SentryDsn.m in Sources */ = {isa = PBXBuildFile; fileRef = 559F076843D3DEAFFB1D632C66454C7E /* SentryDsn.m */; }; 57D148A257A44B64934055564976352A /* SentryEnvelope+Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 0ECFAA9267D340FB2BB767DB24730257 /* SentryEnvelope+Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 57DCB40EAC2C73850A5ADD32226DFE19 /* FBLPromise+Any.h in Headers */ = {isa = PBXBuildFile; fileRef = C22F0409AB437A01840082104DF7C869 /* FBLPromise+Any.h */; settings = {ATTRIBUTES = (Public, ); }; }; 585BFB8C625FFBB3199CE842C568D16E /* Sentry.h in Headers */ = {isa = PBXBuildFile; fileRef = 0C8CF44885986E9DD45B473E1C779E93 /* Sentry.h */; settings = {ATTRIBUTES = (Public, ); }; }; 5871399C836FE681B20AD7363A94836A /* SentryUIViewControllerPerformanceTracker.h in Headers */ = {isa = PBXBuildFile; fileRef = BD66A59719E544B5BF87611C75452236 /* SentryUIViewControllerPerformanceTracker.h */; settings = {ATTRIBUTES = (Project, ); }; }; 5877AE7EBE324070BF2C28486C8B9F04 /* SentryCoreDataTracker.h in Headers */ = {isa = PBXBuildFile; fileRef = E16BF6A45A7AEEF52F326699D29E21C3 /* SentryCoreDataTracker.h */; settings = {ATTRIBUTES = (Project, ); }; }; 59C805E19DE2CB05D2269BCED9B555E2 /* SentrySDK+Private.h in Headers */ = {isa = PBXBuildFile; fileRef = D352538B076766FECA69521414D37B6C /* SentrySDK+Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; 59D8C74021196B3681ADD1D626DEE965 /* SentryDefaultObjCRuntimeWrapper.m in Sources */ = {isa = PBXBuildFile; fileRef = F237FA4CCAC5F377358AFEE09DC902DF /* SentryDefaultObjCRuntimeWrapper.m */; }; - 5A1EEB4B25EE21121F7FA3C37BA799E0 /* PhotoPermissionStrategy.m in Sources */ = {isa = PBXBuildFile; fileRef = F16EECBDF59FF367406198D05A91FEC6 /* PhotoPermissionStrategy.m */; }; 5A29C9A1A66ACBCD01819FE961B8B6F1 /* GDTCORTransformer_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 56867300E59CF9049482A380553A2901 /* GDTCORTransformer_Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5A6D37D2789683B0E7196A0D3F72A537 /* SqfliteDarwinResultSet.m in Sources */ = {isa = PBXBuildFile; fileRef = 14095BA69201A92D570BECBAE4BC4F9C /* SqfliteDarwinResultSet.m */; }; 5A917127FA4DD29F7D3EF1FD0FD5B652 /* SentryCrashCachedData.h in Headers */ = {isa = PBXBuildFile; fileRef = C414C2A3A48B21FDC723424F3D664FF4 /* SentryCrashCachedData.h */; settings = {ATTRIBUTES = (Project, ); }; }; 5AB17E682F3D901C4779BFD480493B76 /* SentryAppStateManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 9184A146A5703AE8BDFBE3DD78319AB3 /* SentryAppStateManager.m */; }; - 5ABE1D58D35638DC10D288C1DAF818DE /* LocationPermissionStrategy.h in Headers */ = {isa = PBXBuildFile; fileRef = 6D6077BCEAA98B23BF0FA1AAB28DDF92 /* LocationPermissionStrategy.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 5ACEFC06465A25AE42E15132A784B25D /* FlutterWebViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 476CF3183D4DC343B96465324FB8BBE7 /* FlutterWebViewController.swift */; }; - 5AFA3A90D77FAA5BE7C00C1736B452A9 /* permission_handler_apple-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 6DAB145DCC86BE217B8CA28E31296D28 /* permission_handler_apple-dummy.m */; }; - 5B44AFA509E1073B888EF4509DA46C59 /* SentryFlutterPluginApple.swift in Sources */ = {isa = PBXBuildFile; fileRef = 333875AE4BA7297C8003590B4FC30E92 /* SentryFlutterPluginApple.swift */; }; - 5B8321A956B1DBE3A536C6D9223E8B5B /* FBLPromise+Race.h in Headers */ = {isa = PBXBuildFile; fileRef = 6EA5C374EE6EAA132A09D9DACFDA6118 /* FBLPromise+Race.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 5ADFB7D736804A6DE702BEAB5CD94FDF /* WebMessageListenerJS.swift in Sources */ = {isa = PBXBuildFile; fileRef = B9930922C1D6387FF165550732846EC0 /* WebMessageListenerJS.swift */; }; + 5AFA3A90D77FAA5BE7C00C1736B452A9 /* permission_handler_apple-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = ABB5C16C612BB704BA7E586B7051B005 /* permission_handler_apple-dummy.m */; }; 5B8F87CD3BAE9BE0C2FDCFA078F2D1C8 /* SentryProfiler+Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 7EF35FE526759CA0FEF02E044FA66D40 /* SentryProfiler+Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5B94364CBA3BDF451AFEDD7DB0D24B53 /* FLTImagePickerPlugin_Test.h in Headers */ = {isa = PBXBuildFile; fileRef = 06CBC8E9472E758BFF443CF6F8D020A0 /* FLTImagePickerPlugin_Test.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 5B99C3872BF52080CAC755449B197178 /* GULCCComponentType.m in Sources */ = {isa = PBXBuildFile; fileRef = EAA266D7F3CDC5B26B124E9DC486A56F /* GULCCComponentType.m */; }; 5BBF5F4905A0837B6934D3C713552D57 /* SentryNSDictionarySanitize.h in Headers */ = {isa = PBXBuildFile; fileRef = 70A07789AE7D9B3D1767FFDE222B478C /* SentryNSDictionarySanitize.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5BE6148A8BBBDD8410E664F32181FB87 /* PermissionHandlerEnums.h in Headers */ = {isa = PBXBuildFile; fileRef = 2A2E55B197F2638C8C5C67077FA69F67 /* PermissionHandlerEnums.h */; settings = {ATTRIBUTES = (Public, ); }; }; 5BEDF321ACAFEDA4170B7F58DD46535D /* SentryProfiledTracerConcurrency.h in Headers */ = {isa = PBXBuildFile; fileRef = 3DA0622263CF287DCB158296725B2E01 /* SentryProfiledTracerConcurrency.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5C217ECDE137B9C6669CD13A7306D581 /* IntegrationTestIosTest.m in Sources */ = {isa = PBXBuildFile; fileRef = 609A48A47FDE743A7EEB5DECF1A08A5E /* IntegrationTestIosTest.m */; }; 5C4678384D214B22CBBD94E79BBE7B91 /* GTMSessionFetcherService.h in Headers */ = {isa = PBXBuildFile; fileRef = DABA70FB283129F4D98C27B71D7CA6AB /* GTMSessionFetcherService.h */; settings = {ATTRIBUTES = (Public, ); }; }; 5D1F311787AEEA804505D661767D2CA7 /* Metric.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2329729B04AE5FB23DFCD3A3538E0D57 /* Metric.swift */; }; - 5D3832487757B7FBD285DF6C2AD36836 /* OriginalViewPortMetaTagContentJS.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0BE5DF8A50A053A75A3666A46815DD01 /* OriginalViewPortMetaTagContentJS.swift */; }; 5E336CF81102E149A8B560152C8D33D9 /* SentryReachability.h in Headers */ = {isa = PBXBuildFile; fileRef = E8B763AE2BCC68669B8808B285B68A2F /* SentryReachability.h */; settings = {ATTRIBUTES = (Project, ); }; }; 5E41403DAD6F2FE912B6CB4DCD6E1629 /* SentryAutoSessionTrackingIntegration.m in Sources */ = {isa = PBXBuildFile; fileRef = C8195F39A41D01F8E5762CAE8089D601 /* SentryAutoSessionTrackingIntegration.m */; }; 5E8046F66D33084B8858ABD7423CFF52 /* GTMSessionFetcher.h in Headers */ = {isa = PBXBuildFile; fileRef = 6CB0A8EA063D106650DE5F999A8DCC5F /* GTMSessionFetcher.h */; settings = {ATTRIBUTES = (Public, ); }; }; 5E8F850BC37B68BF07B18C68E7CB7E37 /* SentryCrashReportVersion.h in Headers */ = {isa = PBXBuildFile; fileRef = 03A5322EB6763F4F50E1877C587292B9 /* SentryCrashReportVersion.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5EA9774656407BF8F69B902F8749A4FF /* flutter_keyboard_visibility-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = BEEEEB6AB23D0D20DAD95CA5BC5D3C6F /* flutter_keyboard_visibility-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 5F04F5637A8624CD5B00080DCA5BB416 /* path_provider_foundation-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 8CA925AA351548EBB9321E1FDE94F18A /* path_provider_foundation-dummy.m */; }; - 5F12ABEBC0FB134DDC3C25EC9A02DBEB /* GULKeychainUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = B532950954DF4A88712A1FC5FF8512CD /* GULKeychainUtils.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 5EA9774656407BF8F69B902F8749A4FF /* flutter_keyboard_visibility-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = C9322E1168A609698B674CB3C81AE007 /* flutter_keyboard_visibility-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 5F04F5637A8624CD5B00080DCA5BB416 /* path_provider_foundation-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = E01D7B3F02E734AC7115492E027971D4 /* path_provider_foundation-dummy.m */; }; 5F14D48068792685CAD3A194D0B469F4 /* Pods-Runner-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 5EADC9E9EA3DF5DF3AA6EA903D6E29CC /* Pods-Runner-dummy.m */; }; 5F14FD30F4C2367ED1B537105FA2804A /* SentryCoreDataSwizzling.h in Headers */ = {isa = PBXBuildFile; fileRef = 5118A18B56D7B2498E81F6FE8224F0CE /* SentryCoreDataSwizzling.h */; settings = {ATTRIBUTES = (Project, ); }; }; 5F3B90FC3C6E183F6A92253FFD1BC30C /* SentrySpan.h in Headers */ = {isa = PBXBuildFile; fileRef = F3C4A8A067600D5CB9C6E06272A801BC /* SentrySpan.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5F57FA5AA0B442F09044E92D740B7EA7 /* integration_test-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = B8DEAD210B70F433C63E76D22273541C /* integration_test-dummy.m */; }; + 5F57FA5AA0B442F09044E92D740B7EA7 /* integration_test-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 3D0061CE65BA57CAA0D9F8DF4AC65B99 /* integration_test-dummy.m */; }; + 5F7428C718CB1956EC6F27E8D514A742 /* messages.g.swift in Sources */ = {isa = PBXBuildFile; fileRef = 29A8D728C0F1220032C0A6897AD2BEA2 /* messages.g.swift */; }; + 5FD6789A63CBF4EA7A0CB49117573DEA /* FBLPromise+Retry.m in Sources */ = {isa = PBXBuildFile; fileRef = 6604CD48E585158CC87FE8AF25825A8D /* FBLPromise+Retry.m */; }; 5FEFBA24D58612796F83844B419C7EC9 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = BAE27CDB4E2E589B1AC89F06DE3D7D04 /* Foundation.framework */; }; 5FF54E435C026660A2AA05256F0FC9C9 /* SentrySpan.m in Sources */ = {isa = PBXBuildFile; fileRef = 310E69A3A1BEFED5EC91F58C5DBCCF3D /* SentrySpan.m */; }; 6042E9FECF926C982D33F3F4B522555A /* SentryAppState.m in Sources */ = {isa = PBXBuildFile; fileRef = B392E10C773DEF5C13213DF8B25E50B1 /* SentryAppState.m */; }; + 606358EDD4D83F7AC3F9CE07F884959E /* GULCCComponentType.h in Headers */ = {isa = PBXBuildFile; fileRef = 474AEB344B92539603838B1058978418 /* GULCCComponentType.h */; settings = {ATTRIBUTES = (Public, ); }; }; 60806D2AFB25DB40715ECA9565829E8F /* SentryRateLimits.h in Headers */ = {isa = PBXBuildFile; fileRef = 8DBD9841718ED3ACEF396147768066CB /* SentryRateLimits.h */; settings = {ATTRIBUTES = (Project, ); }; }; 60AB0D912C2599C428F8B1CAEEE63C4C /* SentryTransportAdapter.h in Headers */ = {isa = PBXBuildFile; fileRef = 1C43C906B742CE6222C2F7940F3408A4 /* SentryTransportAdapter.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 60B48F69DA6E06BAC8FF729B5831CD48 /* pb_decode.h in Headers */ = {isa = PBXBuildFile; fileRef = C55C678B2D0A4C4A604DB66D1918C56F /* pb_decode.h */; settings = {ATTRIBUTES = (Public, ); }; }; 60C0AC3617F18E06A544E84F3875F7AB /* GDTCORFlatFileStorage+Promises.h in Headers */ = {isa = PBXBuildFile; fileRef = C22F82F1D9DCA65791C12A6DF6BED849 /* GDTCORFlatFileStorage+Promises.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 60C4698A28A4675BEAA6008928162E7E /* FBLPromise+Catch.h in Headers */ = {isa = PBXBuildFile; fileRef = E3D37A343A9673CC5B8EEFB11C730266 /* FBLPromise+Catch.h */; settings = {ATTRIBUTES = (Public, ); }; }; 60E3A16AE5B2B625BDEEA6C07BFB3790 /* SentryProfilerState.h in Headers */ = {isa = PBXBuildFile; fileRef = 2DEDC8F564683037B489D6A3E4FA5E92 /* SentryProfilerState.h */; settings = {ATTRIBUTES = (Project, ); }; }; 61382DE13F1C5A590669294BD7AF4391 /* SentryDispatchQueueWrapper.h in Headers */ = {isa = PBXBuildFile; fileRef = 7E65C40F2BC417B8762FE2729FAEDCCA /* SentryDispatchQueueWrapper.h */; settings = {ATTRIBUTES = (Project, ); }; }; 61A5A20A13FBDF3E64DC6D78AB4A1CAE /* SentryCrashMonitor_Signal.c in Sources */ = {isa = PBXBuildFile; fileRef = A5B64D272F92F18314DC0BBEF0CF7EC7 /* SentryCrashMonitor_Signal.c */; }; 61ED101A0C03AE25A9D6B773F3457970 /* SentryStacktraceBuilder.h in Headers */ = {isa = PBXBuildFile; fileRef = A58BC5D2E2359E3DE3F5CF846088940C /* SentryStacktraceBuilder.h */; settings = {ATTRIBUTES = (Project, ); }; }; 623D20B89206A60D5EA96BAB5307F3CC /* SetMetric.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3D30009FC6C0FA1CCFF4FA898470B1E7 /* SetMetric.swift */; }; 62648CAA71640BA5CCE8FDAEC57A8E44 /* SentryDelayedFrame.h in Headers */ = {isa = PBXBuildFile; fileRef = 7B8484DD9C6B6E0CFFB2ECCE978CD33A /* SentryDelayedFrame.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 628550C39B977C267DC8D4912EC104D9 /* SqflitePlugin.h in Headers */ = {isa = PBXBuildFile; fileRef = 7272F005E477C3FBAD9DE3EC07911A47 /* SqflitePlugin.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 635F92086260992F521316C19C74AF2B /* FLALocalAuthPlugin.h in Headers */ = {isa = PBXBuildFile; fileRef = 5F6CDE1EE76A3B1438204E603889FD49 /* FLALocalAuthPlugin.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 6279206DF8DB752E5B60DA43EDDCF620 /* WebMessageChannelJS.swift in Sources */ = {isa = PBXBuildFile; fileRef = 46505DA302F7A14AE8349A3A258DB9E3 /* WebMessageChannelJS.swift */; }; + 63639DF707F2AED50A7986D08096D67B /* FBLPromise+Catch.h in Headers */ = {isa = PBXBuildFile; fileRef = E3D37A343A9673CC5B8EEFB11C730266 /* FBLPromise+Catch.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 6363A0544AE3AA00D384EBAB62276186 /* MobileScannerError.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7380A80DD59DD117058A2FA104D28D3D /* MobileScannerError.swift */; }; + 63765FE88FE367C1CB7374FCA3EDB115 /* URLCredential.swift in Sources */ = {isa = PBXBuildFile; fileRef = B36DC51F9448548C7D98D5C6350F9825 /* URLCredential.swift */; }; 63CB34C14CAE14E4CDC3F2804B4B86F0 /* SentryDispatchSourceWrapper.h in Headers */ = {isa = PBXBuildFile; fileRef = DB7BF62B22CD2B3F63E05A0B57D8FD0C /* SentryDispatchSourceWrapper.h */; settings = {ATTRIBUTES = (Project, ); }; }; 63F0A82E14D4F1DD8212F627EF187878 /* SentryOptions+Private.h in Headers */ = {isa = PBXBuildFile; fileRef = AA42AE12DE0972FE8D9C314CA6AE6E4A /* SentryOptions+Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; 6486F1253DC3035F952D21E72F6122A7 /* SentryStacktraceBuilder.m in Sources */ = {isa = PBXBuildFile; fileRef = BC1EC0F26263E9682D55643B633E033E /* SentryStacktraceBuilder.m */; }; - 64BFCCF674A121CA9DBE02B265FF7262 /* GULCCDependency.m in Sources */ = {isa = PBXBuildFile; fileRef = 45C8B9BD99FDE9D0FC0A288F497B5827 /* GULCCDependency.m */; }; 64E721D05AE95F45B1F8AAF80EF7C466 /* SentryCoreDataSwizzling.m in Sources */ = {isa = PBXBuildFile; fileRef = 1C127815933B174A0532DE97130FAF17 /* SentryCoreDataSwizzling.m */; }; 651830CDB8C5CA856C220864840704D4 /* SentrySessionReplayIntegration.m in Sources */ = {isa = PBXBuildFile; fileRef = B655059B97BB67E3B95C033A9B259E74 /* SentrySessionReplayIntegration.m */; }; - 6519946B2FB7D62756622EBC94782494 /* FlutterKeyboardVisibilityPlugin.h in Headers */ = {isa = PBXBuildFile; fileRef = D41102F713F218B3893FF145EBA97E38 /* FlutterKeyboardVisibilityPlugin.h */; settings = {ATTRIBUTES = (Public, ); }; }; 6566478B6E0522FD191F523BDF87D126 /* SentryPropagationContext.m in Sources */ = {isa = PBXBuildFile; fileRef = A68A7937250C5E9D87D14D4CD1BFF77A /* SentryPropagationContext.m */; }; 657997F5FE32F09DBFA09CA86170451F /* SentryCoreDataTrackingIntegration.h in Headers */ = {isa = PBXBuildFile; fileRef = A554C0918D398E7121A1684254F012C2 /* SentryCoreDataTrackingIntegration.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 657C696F613930F969C02A8A4B03E07A /* EventPermissionStrategy.h in Headers */ = {isa = PBXBuildFile; fileRef = 90BEC67F3A9C7DFD5F68892422349552 /* EventPermissionStrategy.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 662B1EE1958B8C37C2EC01CA2304A380 /* PrivacyInfo.xcprivacy in Resources */ = {isa = PBXBuildFile; fileRef = 7246D6DE594B2308AA230961D858E204 /* PrivacyInfo.xcprivacy */; }; - 6636474AD3ACBF6C852FE398E8E75AC3 /* mobile_scanner-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = DE71A59998DEBF140B4120E043AC6349 /* mobile_scanner-dummy.m */; }; + 65992529678FE7A9E25BAC72E255F899 /* CriticalAlertsPermissionStrategy.h in Headers */ = {isa = PBXBuildFile; fileRef = B9777677AA99B4D6A35B0B528B638929 /* CriticalAlertsPermissionStrategy.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 6636474AD3ACBF6C852FE398E8E75AC3 /* mobile_scanner-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 71BD6A002FADC2715665B373D33DAC46 /* mobile_scanner-dummy.m */; }; 6639F656B4BC8ABD1C0410CB2097536C /* GDTCORAssert.m in Sources */ = {isa = PBXBuildFile; fileRef = 853282C483C54D8A6AD7E5A0E7E373DC /* GDTCORAssert.m */; }; - 66885B23DED14768389EAAC01624029B /* PrivacyInfo.xcprivacy in Resources */ = {isa = PBXBuildFile; fileRef = 45613676B34FC0CE7FDF844DA5F6E623 /* PrivacyInfo.xcprivacy */; }; 66CFD637565C7A2855486A0544D07307 /* SentryLevelMapper.m in Sources */ = {isa = PBXBuildFile; fileRef = 1F74F6D9D5F87F31B7A5F7B0D6DA7DD0 /* SentryLevelMapper.m */; }; 66F50A6D01E318CEB81250D00D2EBD3A /* SentryBuildAppStartSpans.h in Headers */ = {isa = PBXBuildFile; fileRef = 3F5C910E71EF1BB643C081F75181E25D /* SentryBuildAppStartSpans.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 672645E55F7730350B3C5A3B594E89EE /* pb.h in Headers */ = {isa = PBXBuildFile; fileRef = C59FFA97AA19AA1BC712C53B3F8F378F /* pb.h */; settings = {ATTRIBUTES = (Public, ); }; }; 67382377042E672329A93AF08D92F46F /* SentryUIViewControllerSwizzling.m in Sources */ = {isa = PBXBuildFile; fileRef = B395317EFA76C37BF34006AA345C5BF1 /* SentryUIViewControllerSwizzling.m */; }; 67AD6CA2B842B6D54B2C42C602C8CB4A /* cct.nanopb.c in Sources */ = {isa = PBXBuildFile; fileRef = 6C7BD7ECD1749D1485B7EAFD1AE85595 /* cct.nanopb.c */; }; - 67B9DC302604E4BCC89C9A63F7BB4794 /* permission_handler_apple-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 8684EAFD4AE4887DE04C59B5F234F68B /* permission_handler_apple-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 67B9DC302604E4BCC89C9A63F7BB4794 /* permission_handler_apple-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = F1C60D72E00A9ABD9DE9614DE151EF63 /* permission_handler_apple-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; 67C60E56227588F6CEF142FC37A39515 /* SentryCrashReportWriter.h in Headers */ = {isa = PBXBuildFile; fileRef = 2444A83377FB3DC1B2E75A6011A262AA /* SentryCrashReportWriter.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 685FEF9FD0CC3E562449ABE7CD290D2C /* CustomeSchemeHandler.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7B35B9163141D4D5A48B93618D537C3D /* CustomeSchemeHandler.swift */; }; - 688C646B6D36A9E4BC8EE6A55C06EA4B /* WKProcessPoolManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = C85136AA40C1D3E5573AD93B18C30C7B /* WKProcessPoolManager.swift */; }; + 68DFD4E09438B4137CD35B4A0D13B1A2 /* PrivacyInfo.xcprivacy in Resources */ = {isa = PBXBuildFile; fileRef = 13CA0401AEFD3CDD9FA791F4FECA251E /* PrivacyInfo.xcprivacy */; }; 6923345F7602BCB60751BD86D235DFA3 /* SentryNetworkTrackingIntegration.h in Headers */ = {isa = PBXBuildFile; fileRef = EE0B7FD52EBCA0FB74A29197126127AF /* SentryNetworkTrackingIntegration.h */; settings = {ATTRIBUTES = (Project, ); }; }; 6979C89D9D4B25A2E7B09C5C177106F0 /* SentryCrashJSONCodec.h in Headers */ = {isa = PBXBuildFile; fileRef = 41BCF36C9536C0FCE1A9F4A3EE01E6D4 /* SentryCrashJSONCodec.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 69BDDB99BB989F7EA6852B7C8B31E2B4 /* URLCredential.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8051B5ECBE878BC68F1CD7537D3C18A0 /* URLCredential.swift */; }; + 699132D1D4AACA3E31756A5FE0C58069 /* SafariBrowserOptions.swift in Sources */ = {isa = PBXBuildFile; fileRef = F8D0813EB02AB40EE5DA2869F98A7D1F /* SafariBrowserOptions.swift */; }; 69CC9AFDF00ACBADA6DDC7CBA42F96F7 /* GDTCORMetricsMetadata.m in Sources */ = {isa = PBXBuildFile; fileRef = 3ED56D1626A8C0214DFC609B49833D06 /* GDTCORMetricsMetadata.m */; }; - 69F5C69CC1EDDB8DE9B91ED4589A728E /* MediaLibraryPermissionStrategy.h in Headers */ = {isa = PBXBuildFile; fileRef = 0B7A20766BD9058845163D99C76C3663 /* MediaLibraryPermissionStrategy.h */; settings = {ATTRIBUTES = (Public, ); }; }; 6A393977BE25256703875A39B8BCF493 /* flutter_email_sender-flutter_email_sender in Resources */ = {isa = PBXBuildFile; fileRef = 7A477D4470E8CB44CD671F077D8C9D15 /* flutter_email_sender-flutter_email_sender */; }; 6A3E43E3ED78B7E3C29EF3D26DF3DE03 /* SentryClient.h in Headers */ = {isa = PBXBuildFile; fileRef = 3345A13F977D97083649BF4634210ED7 /* SentryClient.h */; settings = {ATTRIBUTES = (Public, ); }; }; 6A3F4B4EBB0FBC15556A2A1B97072F7E /* SentryNetworkTrackingIntegration.m in Sources */ = {isa = PBXBuildFile; fileRef = C1450CB270EA835C1768F8F717E89680 /* SentryNetworkTrackingIntegration.m */; }; 6A8151A3EC3631DDA72F919FEE2A15CD /* SentryCrashCPU_arm64.c in Sources */ = {isa = PBXBuildFile; fileRef = 5A2B7648720FA0EB7F1ECBC027E35E34 /* SentryCrashCPU_arm64.c */; }; - 6AEFDE4660CA28F458805E9326E655C5 /* FBLPromise.h in Headers */ = {isa = PBXBuildFile; fileRef = 5B8EBBC1C874C9BB52674475C9614757 /* FBLPromise.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 6ADCF5598DBBCC933FC875B6B568D9D3 /* EventPermissionStrategy.h in Headers */ = {isa = PBXBuildFile; fileRef = 2A9B0E25C0A53591DD2B8559D5DE5F16 /* EventPermissionStrategy.h */; settings = {ATTRIBUTES = (Public, ); }; }; 6B356FC27D50E0C114C09BE500C8741A /* SentrySamplingContext.m in Sources */ = {isa = PBXBuildFile; fileRef = 7046C45DDED919DE570D73C202E9F002 /* SentrySamplingContext.m */; }; 6B3DE988D6E517C9DC0D59FA56C94DE8 /* GTMSessionFetcher-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 4065D80CB4D0C909ECD272A83B5F0988 /* GTMSessionFetcher-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; 6B4FEFC95213E65EB7CB7EE2DB11DAAC /* UIViewController+Sentry.m in Sources */ = {isa = PBXBuildFile; fileRef = 7F99A84EA6DD42C8C55DA1F447A9E488 /* UIViewController+Sentry.m */; }; - 6BE211642C6AF00810DB9AD6553D3AD0 /* FBLPromiseError.m in Sources */ = {isa = PBXBuildFile; fileRef = 3B9B683A32923328EF51AB07F795B00C /* FBLPromiseError.m */; }; - 6C01A2642A802AFC256BF58D5B60C124 /* FLTImagePickerMetaDataUtil.m in Sources */ = {isa = PBXBuildFile; fileRef = 9368641DE87B7952BCFBF657CBDDC1D5 /* FLTImagePickerMetaDataUtil.m */; }; + 6B7E0B065F21C7C2D9D59FCC34B1E657 /* PromisePolyfillJS.swift in Sources */ = {isa = PBXBuildFile; fileRef = FB23FDB6605E48398CC1A6C08C32BB22 /* PromisePolyfillJS.swift */; }; + 6BC6E6AA888C7320E804954EEC78DCB4 /* WebView.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 800D25E6937FB53826A08DC35B0DA086 /* WebView.storyboard */; }; + 6BEDD0FEDC10688BA0374600E15F5F6B /* EnforceBundling.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1EAE0DC233EA4B730542869D852B8D54 /* EnforceBundling.swift */; }; 6C1AD3ADFF1301AD4CA1AF3DB9253CEA /* GDTCCTUploader.h in Headers */ = {isa = PBXBuildFile; fileRef = C6D96678FD089F20B3C53D72743D8D12 /* GDTCCTUploader.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6C40715415C72FBFD8F31B7DCA057EE0 /* GULLoggerLevel.h in Headers */ = {isa = PBXBuildFile; fileRef = F3521A8D237471295EC57082DCFF69A9 /* GULLoggerLevel.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 6C65E04F6B6DC3810ED5C5EA1BFB8139 /* URLLaunchSession.swift in Sources */ = {isa = PBXBuildFile; fileRef = D4CBAAA489729E21117B24FFAF1AFF19 /* URLLaunchSession.swift */; }; 6C6DA90D922D3AF9B32DAC55E28932F2 /* SentryTransactionContext.h in Headers */ = {isa = PBXBuildFile; fileRef = CBD1C2711DB710382BF2FC4E73063630 /* SentryTransactionContext.h */; settings = {ATTRIBUTES = (Public, ); }; }; 6CA6685E94E726F14511051E10643AA4 /* SentrySampling.h in Headers */ = {isa = PBXBuildFile; fileRef = 5F279B792130F53EB9A0EB23219B8265 /* SentrySampling.h */; settings = {ATTRIBUTES = (Project, ); }; }; 6CAA412424BA038119E4600EC521BA5A /* SentryTransportFactory.h in Headers */ = {isa = PBXBuildFile; fileRef = 05B2D17A07DA00F0CE0B0BC76C0D748B /* SentryTransportFactory.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6CD465170B8FE695FBC493107D84E94B /* integration_test-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = F596F057CA1AE7F19DE99FC14F24C2D9 /* integration_test-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 6CEEF6F3FEE2AA8546EB838CE7BA4094 /* GTMLogger.h in Headers */ = {isa = PBXBuildFile; fileRef = 5C432F086D8174EA640A97AA8BF3E826 /* GTMLogger.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 6CB2B6B0F014F035987320ADFA3BEB89 /* FLTImagePickerPhotoAssetUtil.m in Sources */ = {isa = PBXBuildFile; fileRef = 17F0737683AB458FA39A0DF3DB75E0FA /* FLTImagePickerPhotoAssetUtil.m */; }; + 6CD465170B8FE695FBC493107D84E94B /* integration_test-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 92529E3AE4C4D2CD8D0B5A86B25DF790 /* integration_test-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; 6D26BDD783D1265BB0318A5C473AD654 /* SentryEnvelopeRateLimit.m in Sources */ = {isa = PBXBuildFile; fileRef = F95195C323F3E7C6A1712F78ABA4EF36 /* SentryEnvelopeRateLimit.m */; }; - 6D466F91E49BF2DBF889D02BC68F9730 /* WebMessagePort.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3BFBF7C7E81A0074C9D5C035E387E9AF /* WebMessagePort.swift */; }; - 6D4A80D71F7ED3F8B901D2A113688CD6 /* PrivacyInfo.xcprivacy in Resources */ = {isa = PBXBuildFile; fileRef = 14D3318652D3E88B1F58FCE0D1C4760C /* PrivacyInfo.xcprivacy */; }; - 6DA9076998228BDAF17939D589C8B8CD /* PermissionManager.m in Sources */ = {isa = PBXBuildFile; fileRef = F3D75BC1CCB38990B39E8B43CA5907A5 /* PermissionManager.m */; }; + 6D26D59E2355B79A8DAACA95AEFADF14 /* FLTIntegrationTestRunner.h in Headers */ = {isa = PBXBuildFile; fileRef = C76D16D4C1A75F1D2F6BE4210D843D7C /* FLTIntegrationTestRunner.h */; settings = {ATTRIBUTES = (Public, ); }; }; 6DA97D8D2B0A9190B7E9950438DA7F70 /* SentrySessionTracker.h in Headers */ = {isa = PBXBuildFile; fileRef = ED7F2D04BF278EBD4EE1A5E6E66FFA66 /* SentrySessionTracker.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6E485ADE77CD48533F0B843BEBFD4FCC /* FlutterNativeSplashPlugin.h in Headers */ = {isa = PBXBuildFile; fileRef = 1F985D15FBDD8B3FDF6763750490369D /* FlutterNativeSplashPlugin.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 6E92872EA469989D59739C10F2E29FB3 /* FindElementsAtPointJS.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0DFFFBACD219B36433C22F177CCB17F9 /* FindElementsAtPointJS.swift */; }; + 6E5930CD8548EAA35C079EDE6A18FFD4 /* Codec.h in Headers */ = {isa = PBXBuildFile; fileRef = E5E3E33B0D144B2AE6AB3752D725ABD7 /* Codec.h */; settings = {ATTRIBUTES = (Public, ); }; }; 6EE5DA0DC049357722336173715B228B /* SentryCompiler.h in Headers */ = {isa = PBXBuildFile; fileRef = B0F6B2F55CC2D09BC98FD7D9D2E89F1D /* SentryCompiler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6EF0B0153681BDA51264B114AE5DB72E /* GULCCComponent.h in Headers */ = {isa = PBXBuildFile; fileRef = 9D8ABD31EB61204CADF2FEAFAD188549 /* GULCCComponent.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 6F56374B31A42EEA920650E2DCAAA875 /* SentryFlutterPlugin.h in Headers */ = {isa = PBXBuildFile; fileRef = 95B947BC8B83F62A5989B560EB54C722 /* SentryFlutterPlugin.h */; settings = {ATTRIBUTES = (Public, ); }; }; 6F6EE46DDAAE2C734EF3EBBC5B70A247 /* SentryMeta.h in Headers */ = {isa = PBXBuildFile; fileRef = 882EA29C4B15D2A5091AF04A1358C670 /* SentryMeta.h */; settings = {ATTRIBUTES = (Project, ); }; }; 6FD43AC9452FD1945B6A91C2E7147D75 /* SentryEvent.h in Headers */ = {isa = PBXBuildFile; fileRef = 79AFEA1877F0BE13E9A791B047A601D2 /* SentryEvent.h */; settings = {ATTRIBUTES = (Public, ); }; }; 703AED3005529F6BAD1384A39EA72803 /* SentryCrashObjC.c in Sources */ = {isa = PBXBuildFile; fileRef = 70FF7DF0C0BE63A1F51F61ABDDDC8DDB /* SentryCrashObjC.c */; }; - 703EBC2F3C569B6BA930051C10EAA581 /* flutter_email_sender-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 8D9CE7555B698593037949399D5F76E9 /* flutter_email_sender-dummy.m */; }; + 703EBC2F3C569B6BA930051C10EAA581 /* flutter_email_sender-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = DCEBE7B67D6D1240D112F878993B0E9A /* flutter_email_sender-dummy.m */; }; 7085E749C527C7F619DDB0DA3452C437 /* SentryDisplayLinkWrapper.m in Sources */ = {isa = PBXBuildFile; fileRef = E889C31DCB0B3615FD5BE5E4F9920523 /* SentryDisplayLinkWrapper.m */; }; 708A00D3097F300BEB7F7F7576B0C472 /* SentrySpanStatus.h in Headers */ = {isa = PBXBuildFile; fileRef = 8DF9ACA1110033A13C74768574783033 /* SentrySpanStatus.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 70E5859B740BFCE6AC56E2D41CFD855E /* FBLPromise+Wrap.h in Headers */ = {isa = PBXBuildFile; fileRef = 16E2AE0248BE22404B43BC748BEDC1C9 /* FBLPromise+Wrap.h */; settings = {ATTRIBUTES = (Public, ); }; }; 7118B1AF452CE12ADC7A488EC2583069 /* SentryWatchdogTerminationTracker.h in Headers */ = {isa = PBXBuildFile; fileRef = DDE10DB14C5ECBCA470DC38E17587A8A /* SentryWatchdogTerminationTracker.h */; settings = {ATTRIBUTES = (Project, ); }; }; 712314DB75A0CF0EAD7FB8A9BE75BE0A /* SentryFrame.h in Headers */ = {isa = PBXBuildFile; fileRef = 1017C5D7AA4D2F248AF31C2FE2C74578 /* SentryFrame.h */; settings = {ATTRIBUTES = (Public, ); }; }; 715AF43943CC94740370B9A1658F5CF2 /* GDTCORStorageEventSelector.h in Headers */ = {isa = PBXBuildFile; fileRef = AC4DF084A53A51D8F8E15E25F86E2625 /* GDTCORStorageEventSelector.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7166D9A726526C5CAE4F8A5447FF2C05 /* FLTImagePickerPhotoAssetUtil.h in Headers */ = {isa = PBXBuildFile; fileRef = AB40EA8C7339437233C6A9E594323AFE /* FLTImagePickerPhotoAssetUtil.h */; settings = {ATTRIBUTES = (Public, ); }; }; 716DB7315A425415EAA5C613F8209DFA /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = BAE27CDB4E2E589B1AC89F06DE3D7D04 /* Foundation.framework */; }; - 71CEA3FFCE442BD20E43892323738F1A /* FBLPromise+Retry.m in Sources */ = {isa = PBXBuildFile; fileRef = 6604CD48E585158CC87FE8AF25825A8D /* FBLPromise+Retry.m */; }; - 71EC944083FA184418FAA938BE5415D0 /* AudioVideoPermissionStrategy.h in Headers */ = {isa = PBXBuildFile; fileRef = 75EAA2DB58396DE3BE2549843DB864AE /* AudioVideoPermissionStrategy.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 71B788C7F9438862D82038E71872C888 /* NotificationPermissionStrategy.h in Headers */ = {isa = PBXBuildFile; fileRef = CBC5A031E6729E06D57FE34564F75618 /* NotificationPermissionStrategy.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 720FD394378D96C6C1F63FFCBD8AA038 /* WebMessageChannel.swift in Sources */ = {isa = PBXBuildFile; fileRef = 19156C8DC8376C68638F7EDD562EE60F /* WebMessageChannel.swift */; }; 724265D78C5AC5A86BB047DA360A14B5 /* SentryCrashMonitor_CPPException.h in Headers */ = {isa = PBXBuildFile; fileRef = 192E5316A100FF81BED4C3679FE68600 /* SentryCrashMonitor_CPPException.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 726A68F8A12B824454E3A71618EFBF4F /* MobileScanner.swift in Sources */ = {isa = PBXBuildFile; fileRef = 05DE087D13C32655BB2AF58C3A0A6CBA /* MobileScanner.swift */; }; + 725E67AF16D87A7F74453777C307114B /* FlutterWebViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = F419FA65A0CC37678FB11816ED21F143 /* FlutterWebViewController.swift */; }; 7380F3F85128BEBCD1E080A8F5E7A576 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = BAE27CDB4E2E589B1AC89F06DE3D7D04 /* Foundation.framework */; }; - 738DF38FCDE475C0CB6D47ED28083651 /* BluetoothPermissionStrategy.m in Sources */ = {isa = PBXBuildFile; fileRef = 29E55405D83348477879CD2613E556D0 /* BluetoothPermissionStrategy.m */; }; + 73E2D2CA141DD835BC4905EB36E52516 /* SqfliteDarwinDatabase.h in Headers */ = {isa = PBXBuildFile; fileRef = 94BCAC6C7500E45D9D4F67E9AB3C7636 /* SqfliteDarwinDatabase.h */; settings = {ATTRIBUTES = (Public, ); }; }; 744479F857A8C30E934B3C29B9D570BA /* SentryCrashMonitor.h in Headers */ = {isa = PBXBuildFile; fileRef = 4834D8F0FA3C261746D306E316226F3D /* SentryCrashMonitor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 74952DD4A646701ABA933F3D6A5FF640 /* GULNetworkInfo.m in Sources */ = {isa = PBXBuildFile; fileRef = 9B439CA32CF823E9EEAC56C9870FDDF8 /* GULNetworkInfo.m */; }; 7495CF6730A892F99D002FCBBE0BEDF4 /* SentryReplayRecording.h in Headers */ = {isa = PBXBuildFile; fileRef = 0A729C10CDE198780944372E7BFB66E4 /* SentryReplayRecording.h */; settings = {ATTRIBUTES = (Project, ); }; }; 74C6F73BCE761CDB31B34ECDD92C55A1 /* SentryCrashDate.c in Sources */ = {isa = PBXBuildFile; fileRef = 3C07C9D0A16C4A26C466F72F0F6003E8 /* SentryCrashDate.c */; }; - 75524BD393FEA942A61BD8F8051964CB /* AppTrackingTransparencyPermissionStrategy.h in Headers */ = {isa = PBXBuildFile; fileRef = B07C8B8EB2D6CD7E0AB13253E213A449 /* AppTrackingTransparencyPermissionStrategy.h */; settings = {ATTRIBUTES = (Public, ); }; }; 7591BB4E963FD491D1FD8570C14B111E /* SentryProfiler.mm in Sources */ = {isa = PBXBuildFile; fileRef = 6071F28FAC4B53E4A6B2FD5AAF68EE01 /* SentryProfiler.mm */; }; - 75BD02F12160BE9F4A5200781F5AFEBF /* local_auth_darwin-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = DED3FFFD78288FF0B9B9C88CDBC72796 /* local_auth_darwin-dummy.m */; }; + 75BD02F12160BE9F4A5200781F5AFEBF /* local_auth_darwin-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 73F7D2C98CEEAF905F9784C9CA48A4CF /* local_auth_darwin-dummy.m */; }; + 75C90849266EEDA8786A16273A2F38E9 /* PrivacyInfo.xcprivacy in Resources */ = {isa = PBXBuildFile; fileRef = B4A26C540B5560BCBD136D125899F5F7 /* PrivacyInfo.xcprivacy */; }; + 7664A48E2D389851A5E2F5A20A730818 /* OriginalViewPortMetaTagContentJS.swift in Sources */ = {isa = PBXBuildFile; fileRef = 452E7613985D693048389B9D08533845 /* OriginalViewPortMetaTagContentJS.swift */; }; 769F8D4BC987FC6C51ADB9176FFD239B /* Sentry-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 7B3ACB572F94421E5D69196B761AC1B1 /* Sentry-dummy.m */; }; + 76E874C9954D0FF90BC74AE8B3B7DF39 /* FLTImagePickerImageUtil.m in Sources */ = {isa = PBXBuildFile; fileRef = E167B7652C5602C60BC1E17BDAE5B344 /* FLTImagePickerImageUtil.m */; }; 770A25775635B61254F114A2E4DA1C42 /* SentryCrashMonitor.c in Sources */ = {isa = PBXBuildFile; fileRef = 8B81891C7059849E5DD8E5CD2D8B8C39 /* SentryCrashMonitor.c */; }; - 7768E53A1821E70CCF96721FC97EDBCF /* connectivity_plus-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 8E22760BDE6AC84F410C3E92DE2FAB81 /* connectivity_plus-dummy.m */; }; - 778103E7340240A90AAFF5846C6215E7 /* AssistantPermissionStrategy.h in Headers */ = {isa = PBXBuildFile; fileRef = 693AFE2EF4356A24632C838F756F9056 /* AssistantPermissionStrategy.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 7768E53A1821E70CCF96721FC97EDBCF /* connectivity_plus-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 81DCA56217E2AE8869DC409CC3E479DD /* connectivity_plus-dummy.m */; }; 77F00118068F6DF8CCE01714051FE735 /* SentryScopeObserver.h in Headers */ = {isa = PBXBuildFile; fileRef = FEFE3000BEFA7DD280C618C38D6F0BDA /* SentryScopeObserver.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7810AB5B6738B5BE5C0F96F8793584C3 /* messages.g.h in Headers */ = {isa = PBXBuildFile; fileRef = 3F195CDC771001F7D31D7CEF182D87B8 /* messages.g.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 7813A38E8CEE6EEBD6DADB50018D383A /* SqfliteDarwinDatabaseQueue.m in Sources */ = {isa = PBXBuildFile; fileRef = 1FEA7CFB3121FF5495C507EFD69EBDFA /* SqfliteDarwinDatabaseQueue.m */; }; - 78418138325B7B7B9AD4D6E5D5696F59 /* PrivacyInfo.xcprivacy in Resources */ = {isa = PBXBuildFile; fileRef = 3A21217B0FA27B578F9E4BE217B7CBFA /* PrivacyInfo.xcprivacy */; }; 7875981AA1AD9E6EC5891B5C1A8D63B6 /* SentryDefaultRateLimits.m in Sources */ = {isa = PBXBuildFile; fileRef = 381C18F23818A70A7EE3CCE0C84C28B3 /* SentryDefaultRateLimits.m */; }; 787B04AF0674E9F93E797B0DB6CA4841 /* SentrySwiftAsyncIntegration.m in Sources */ = {isa = PBXBuildFile; fileRef = DFFEED589A13A6920C364C4F173745C1 /* SentrySwiftAsyncIntegration.m */; }; 78804BA48FE3349AC298EE2CF9F351BD /* SentryBreadcrumbDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = 33BA8F55BDDDB787238768FBCC9F2CEB /* SentryBreadcrumbDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 788BE724FC2B29E124A4ECE3471C02DD /* SqfliteDarwinDatabaseAdditions.h in Headers */ = {isa = PBXBuildFile; fileRef = E27FCFF1CE2A5C241513D86FB81E4AD4 /* SqfliteDarwinDatabaseAdditions.h */; settings = {ATTRIBUTES = (Public, ); }; }; 78C33801A446F00BAF8B7ADCEFFAE94F /* SentrySamplingContext.h in Headers */ = {isa = PBXBuildFile; fileRef = 2345281918711A1EB4CAB08EBBB178EF /* SentrySamplingContext.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 79665496EDC89A82E696F5C6E6B232D3 /* flutter_secure_storage-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 6CF561F3B325D5AB022AE5DA4E78C443 /* flutter_secure_storage-dummy.m */; }; + 7919FB98AA3BDB652C239CA29E23A431 /* InAppBrowserDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = F3AC465488CFBE96FA12C9E4156FB312 /* InAppBrowserDelegate.swift */; }; + 79665496EDC89A82E696F5C6E6B232D3 /* flutter_secure_storage-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = D98E8679E89C302EDCB6D3B9344E538D /* flutter_secure_storage-dummy.m */; }; 796DB3FF95D34B3BC55998263BFA7FA7 /* SentryBreadcrumb+Private.h in Headers */ = {isa = PBXBuildFile; fileRef = DB02C28AE33317F0E92E34A4931FB274 /* SentryBreadcrumb+Private.h */; settings = {ATTRIBUTES = (Public, ); }; }; 797835877E2542080290BF6E480AE8D0 /* SentryDevice.h in Headers */ = {isa = PBXBuildFile; fileRef = 40CA14D1691F10465C57350427345371 /* SentryDevice.h */; settings = {ATTRIBUTES = (Project, ); }; }; 797CDC4483547AEFD9D9A2ABCEE71510 /* SentrySessionReplay.m in Sources */ = {isa = PBXBuildFile; fileRef = E4F59B126D9B52118AEF8996F5218179 /* SentrySessionReplay.m */; }; + 79943A2B67522D497BC9754FB39C7BB7 /* HttpAuthenticationChallenge.swift in Sources */ = {isa = PBXBuildFile; fileRef = EE8CAE6D180F13AA656D7B68D0D3728F /* HttpAuthenticationChallenge.swift */; }; + 79B56AF4D8998F61999D67AD59B9BFD5 /* FlutterKeyboardVisibilityPlugin.h in Headers */ = {isa = PBXBuildFile; fileRef = F860B634A7BF0DB4DEB82650F4966046 /* FlutterKeyboardVisibilityPlugin.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 7A4EC6C8C48609ECDCE3992C5FD5F3FE /* nanopb-nanopb_Privacy in Resources */ = {isa = PBXBuildFile; fileRef = 3227F3FC45681D7CEE5D1355A532398A /* nanopb-nanopb_Privacy */; }; 7A58B91CB6136A1A358BF4CD798FD932 /* SentryCrashDynamicLinker.c in Sources */ = {isa = PBXBuildFile; fileRef = 3219664BDB46B258DBD3CD70E19A5AFF /* SentryCrashDynamicLinker.c */; }; 7AAA7356BA10C7E5FFDC0DE287DB5AC2 /* SentryCrashC.h in Headers */ = {isa = PBXBuildFile; fileRef = 11A8899076D5FAF2FBE3A0DE09C7EBB5 /* SentryCrashC.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7AB53E70362C4E40AB3DE0702C0D28C4 /* GoogleToolboxForMac-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 972E29E0AAD2500F03BCEACFF9D822BA /* GoogleToolboxForMac-dummy.m */; }; 7AD6C457B839470C918A5F33A033B6FC /* GDTCORFlatFileStorage.h in Headers */ = {isa = PBXBuildFile; fileRef = 4289BE51A2A68466BDB96912382AEFC6 /* GDTCORFlatFileStorage.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7AF8A41308864BDBF55E4D119A1CD7E0 /* FBLPromise+Always.m in Sources */ = {isa = PBXBuildFile; fileRef = 11EB5DD1C215E4268AE639D85D89F5C3 /* FBLPromise+Always.m */; }; 7B7D9D266E8E988D380757436457E1DA /* SentryEnvelopeAttachmentHeader.h in Headers */ = {isa = PBXBuildFile; fileRef = DAE16E478A7070BB4A24DD994631DBFD /* SentryEnvelopeAttachmentHeader.h */; settings = {ATTRIBUTES = (Project, ); }; }; 7B828614BD270F93EC9B22570DAF361C /* SentryClient.m in Sources */ = {isa = PBXBuildFile; fileRef = 4AECBCBA71B1D86CAA650F1BBA2A8B1F /* SentryClient.m */; }; - 7B875B111685F4C1B1A78684D9BCD7ED /* OnLoadResourceJS.swift in Sources */ = {isa = PBXBuildFile; fileRef = ADC1C48865554BD13C9D90759923D77D /* OnLoadResourceJS.swift */; }; - 7BA2E1BDD11E7A0013C90864F866D47B /* GULLogger.h in Headers */ = {isa = PBXBuildFile; fileRef = FB42A217170A295E7B9D979509DA77AD /* GULLogger.h */; settings = {ATTRIBUTES = (Public, ); }; }; 7BDBA50A423F852437787B0B50C012F4 /* PrivateSentrySDKOnly.mm in Sources */ = {isa = PBXBuildFile; fileRef = 8590156944706A59850868ABE4B496FD /* PrivateSentrySDKOnly.mm */; }; - 7BEC3E3C4EBDA958B695D2F5B2EE2ADC /* FBLPromise+Reduce.h in Headers */ = {isa = PBXBuildFile; fileRef = B65BCE985B4216A2D0F68B41A9027B07 /* FBLPromise+Reduce.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 7C1C3E7D16F2FD90C47BFE512285376A /* WebMessageListener.swift in Sources */ = {isa = PBXBuildFile; fileRef = AB785BB71CA813A29443733250CCCE9F /* WebMessageListener.swift */; }; 7C59E4A262922B5BD7E22AE209E75DB9 /* SentryCrashStackEntryMapper.h in Headers */ = {isa = PBXBuildFile; fileRef = 41305B9AE08742077D5B2D0013D8762F /* SentryCrashStackEntryMapper.h */; settings = {ATTRIBUTES = (Project, ); }; }; 7C5A93EE8CC6CD70D5C5F95DF3B06540 /* SentrySwiftAsyncIntegration.h in Headers */ = {isa = PBXBuildFile; fileRef = 828EF845B30DA41FC30AC1081072932D /* SentrySwiftAsyncIntegration.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7CA620430B27C5B744C5D14D20BAEC57 /* FLTPHPickerSaveImageToPathOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = 8DE16E3EC19334A8C02D5E3986679478 /* FLTPHPickerSaveImageToPathOperation.m */; }; - 7CA86E3F9FBA11B7DFF961186697EED1 /* ConnectivityProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = 20B143526F384FD4BC4962D807AC3C9E /* ConnectivityProvider.swift */; }; 7CD57F5740BF9A293E670E01AD6B7AAD /* GDTCOREvent+GDTMetricsSupport.m in Sources */ = {isa = PBXBuildFile; fileRef = EB1603429A1789010C5BFE1E51D91A6B /* GDTCOREvent+GDTMetricsSupport.m */; }; - 7D2A68B4DB5742A4A5E3814A945E64C0 /* GULCCComponentType.m in Sources */ = {isa = PBXBuildFile; fileRef = EAA266D7F3CDC5B26B124E9DC486A56F /* GULCCComponentType.m */; }; - 7D680949B108796B248935DC1674DECB /* FBLPromise+Delay.m in Sources */ = {isa = PBXBuildFile; fileRef = CB500BB57007BDF074819355112F2080 /* FBLPromise+Delay.m */; }; - 7DC8A119EDE9F4097A110934F0923538 /* FLALocalAuthPlugin_Test.h in Headers */ = {isa = PBXBuildFile; fileRef = D99523C77870BD1AA8137C8C0FB710E5 /* FLALocalAuthPlugin_Test.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 7DCC6D7A3D8B25A3C6553CE7BD713B2C /* nanopb-nanopb_Privacy in Resources */ = {isa = PBXBuildFile; fileRef = 3227F3FC45681D7CEE5D1355A532398A /* nanopb-nanopb_Privacy */; }; - 7DE3CE359D73EAA36494202D23425CE8 /* GULUserDefaults.m in Sources */ = {isa = PBXBuildFile; fileRef = 137057CF8F6C9E44DF71B4288D56F988 /* GULUserDefaults.m */; }; + 7DA839241DB157E64E6A1D47A9C4855E /* BackgroundRefreshStrategy.h in Headers */ = {isa = PBXBuildFile; fileRef = B6B71759848E055EEF6E53036EA99CA6 /* BackgroundRefreshStrategy.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 7DC85F483C19AF41BCA11801993FD24A /* FBLPromise+Recover.m in Sources */ = {isa = PBXBuildFile; fileRef = 9C3043C5A2F888947EF1F69B00DD7E9A /* FBLPromise+Recover.m */; }; + 7DFB91433E2E847264B66EB829F2F114 /* PrivacyInfo.xcprivacy in Resources */ = {isa = PBXBuildFile; fileRef = 281ABDF761B8A6DF706C828F953EF9B0 /* PrivacyInfo.xcprivacy */; }; 7E12FB5868D02290F94F072A33229A30 /* NSMutableDictionary+Sentry.m in Sources */ = {isa = PBXBuildFile; fileRef = A12478584CFA748D49222BCE241EE51E /* NSMutableDictionary+Sentry.m */; }; + 7E2745AA2D6B296A7F77801E5C8D0BA1 /* PhotoPermissionStrategy.m in Sources */ = {isa = PBXBuildFile; fileRef = B0C6FA547CC0B715794EBE135341240D /* PhotoPermissionStrategy.m */; }; 7E51D24A84F32CAADDF75BB73D86DED8 /* SentrySpanContext+Private.h in Headers */ = {isa = PBXBuildFile; fileRef = D7ADF7D530E0D21964272B08469F2F6B /* SentrySpanContext+Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7E9144102DFDCEFF752DA565CEC70CC0 /* FPPSharePlusPlugin.m in Sources */ = {isa = PBXBuildFile; fileRef = 8AF2955064CB8D9DAF5C49AC114BC355 /* FPPSharePlusPlugin.m */; }; 7EF457BE7A5CFBB99B8ACA3426AA5C78 /* GDTCOREvent_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 495CA2F78710C0513D29D138C37BFF25 /* GDTCOREvent_Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7F2282D7AEAB550DBD2BF2604881451C /* ConsoleLogJS.swift in Sources */ = {isa = PBXBuildFile; fileRef = D9CAAEA69D89F0077E6C264A580054E8 /* ConsoleLogJS.swift */; }; + 7F2501DFA4DA49D1A83830418A59AFC9 /* CustomeSchemeHandler.swift in Sources */ = {isa = PBXBuildFile; fileRef = C640DF518285BB59B3AA47E3C826D3BB /* CustomeSchemeHandler.swift */; }; 7F2C9B4C5949401DCB0ACD6C967F38BA /* SentryANRTrackingIntegration.h in Headers */ = {isa = PBXBuildFile; fileRef = 2308F2E95798C9D5640D52384C92B666 /* SentryANRTrackingIntegration.h */; settings = {ATTRIBUTES = (Project, ); }; }; 7FD220384209315C405397F7DA77C356 /* SentryStatsdClient.h in Headers */ = {isa = PBXBuildFile; fileRef = 62E80E497DF6562F231EE162EAC0A0A4 /* SentryStatsdClient.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 802E92E6BCBD21CC737B5AAACEBF4F30 /* Size2D.swift in Sources */ = {isa = PBXBuildFile; fileRef = 038A4526E9AA85618351662B3B69FFE9 /* Size2D.swift */; }; 805FCA627600EB135C30353D88FDE946 /* SentryCrashMonitor_System.h in Headers */ = {isa = PBXBuildFile; fileRef = BCC06D296A713154F2DB3F48C081739A /* SentryCrashMonitor_System.h */; settings = {ATTRIBUTES = (Project, ); }; }; 80E9DC406DB4902CCAC0A5CAEBAEA0F4 /* GDTCORRegistrar.m in Sources */ = {isa = PBXBuildFile; fileRef = 21E6BC1F26ACE40457FBD297A66FFB7B /* GDTCORRegistrar.m */; }; 812DB4176FAA4E15B428ACD30CF99A99 /* GoogleDataTransport-GoogleDataTransport_Privacy in Resources */ = {isa = PBXBuildFile; fileRef = F73AA961F4AEFF2B46B00AE435DF6BE3 /* GoogleDataTransport-GoogleDataTransport_Privacy */; }; 81ACAD64D7FFB85DB071D51D8A4CB143 /* SentryByteCountFormatter.h in Headers */ = {isa = PBXBuildFile; fileRef = 21C6A4F8F636816F35883FEB2E39700A /* SentryByteCountFormatter.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 81AE891167F687AF3180EC539FEB035B /* FBLPromise+Wrap.m in Sources */ = {isa = PBXBuildFile; fileRef = C85AE2873E79A0825E5B30A26984F552 /* FBLPromise+Wrap.m */; }; 82237D0ECA865A37B21CA754E869F56B /* SentryReplayRecording.m in Sources */ = {isa = PBXBuildFile; fileRef = 3662846D84FAB5BB844E74B704580725 /* SentryReplayRecording.m */; }; - 8248CDCC0873DFFFE8BA4EFE34AAECFF /* WebMessageListenerJS.swift in Sources */ = {isa = PBXBuildFile; fileRef = 424C5202794B80D8D29440538BA84624 /* WebMessageListenerJS.swift */; }; 828E88A2D7E538F190060FD678917BC8 /* SentryCrashReportConverter.h in Headers */ = {isa = PBXBuildFile; fileRef = 86B1B427BF5A39816DC86C7815148F95 /* SentryCrashReportConverter.h */; settings = {ATTRIBUTES = (Project, ); }; }; 82A8A215A97AC5070EFE635ED643D9FC /* SentryProfileTimeseries.mm in Sources */ = {isa = PBXBuildFile; fileRef = D94F30E406578AD7EB14319C457F04B2 /* SentryProfileTimeseries.mm */; }; 82AB79ADA237493B5CD4A8ECBDA04500 /* SentryMeta.m in Sources */ = {isa = PBXBuildFile; fileRef = 16C64CF2440BD4314A7E6AA7C4B3824F /* SentryMeta.m */; }; - 82B7159FF1D1E075182CAEE72A911B43 /* StoragePermissionStrategy.h in Headers */ = {isa = PBXBuildFile; fileRef = 8825BDE7EA2DCCC41D9E4C7DFB66B4CF /* StoragePermissionStrategy.h */; settings = {ATTRIBUTES = (Public, ); }; }; 82C6A737B8634B569734FB3007DCB1FA /* SentryTraceContext.h in Headers */ = {isa = PBXBuildFile; fileRef = D1CD0217CCADBF8E3B273CE9C59FB16B /* SentryTraceContext.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 82F3A5FA31E20F63B407C589A972A2E7 /* UserScript.swift in Sources */ = {isa = PBXBuildFile; fileRef = A3F75FB80E0230F75AAADD648B5458A5 /* UserScript.swift */; }; - 8335830EBFD9DAD555C6AFE5DE0C56B4 /* GULCCComponentType.h in Headers */ = {isa = PBXBuildFile; fileRef = 474AEB344B92539603838B1058978418 /* GULCCComponentType.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 82F8869E63CD9A8D69CA3C24A98B6399 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = BAE27CDB4E2E589B1AC89F06DE3D7D04 /* Foundation.framework */; }; + 835B2B3630F4BFE5AE6F96656E8688FB /* SharedPreferencesPlugin.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3349BE4FC383B4B5161416B3BFFA8B21 /* SharedPreferencesPlugin.swift */; }; 836523C10877BDC9984012376809BC14 /* SentryInternalNotificationNames.h in Headers */ = {isa = PBXBuildFile; fileRef = 35F016CACCF5B66A025D44F2FE693254 /* SentryInternalNotificationNames.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8392AB7D16C503782420AECA3478E5A8 /* FindTextHighlightJS.swift in Sources */ = {isa = PBXBuildFile; fileRef = 03B3CBE8719F6F4CECE5D7FFF9E17C8E /* FindTextHighlightJS.swift */; }; - 83A84DE2AEB311447BB9AC52AAFDD5CB /* flutter_nekoton_bridge-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = B59ADB8C2815B9E5E692852E8B4EBECE /* flutter_nekoton_bridge-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 839CD6E5C694E5BB2C5283D3068686F3 /* InAppBrowserWebViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2FB048EB9B80FF92C730A47691434788 /* InAppBrowserWebViewController.swift */; }; + 83A84DE2AEB311447BB9AC52AAFDD5CB /* flutter_nekoton_bridge-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 402E22AD19B152CD0ACB96E1959A4675 /* flutter_nekoton_bridge-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; 83C0654544BCA008990C158A4871822A /* SentryOptions.h in Headers */ = {isa = PBXBuildFile; fileRef = F368511666A84D4606A84855651D4B09 /* SentryOptions.h */; settings = {ATTRIBUTES = (Public, ); }; }; 83C24FBA25A88C30ECDF7A887B65C9A3 /* SentryUIEventTrackerTransactionMode.m in Sources */ = {isa = PBXBuildFile; fileRef = 9D9F196ACE1A8F3F3D86D0E211B942D6 /* SentryUIEventTrackerTransactionMode.m */; }; 83D3FD921CC3C1BBA753FA746A4F6D28 /* SentryProfilerState+ObjCpp.h in Headers */ = {isa = PBXBuildFile; fileRef = 8BB529F8D13BC23CADD1104745355724 /* SentryProfilerState+ObjCpp.h */; settings = {ATTRIBUTES = (Project, ); }; }; 83F2F499AD415959F485DDBEE88F8A6C /* GDTCORMetricsController.h in Headers */ = {isa = PBXBuildFile; fileRef = C5BE4D1032057B234625526E3CDE890F /* GDTCORMetricsController.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 84051EEDA84EB4C37C112DF1D4CE4D72 /* FBLPromise+Race.m in Sources */ = {isa = PBXBuildFile; fileRef = 88B73C31C801AE75820A454A309150EA /* FBLPromise+Race.m */; }; 841B69A579C2E070E1B1BC4D30461A4F /* Security.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6FDEE359EE01891A3BD55BE7BF1116CF /* Security.framework */; }; - 84B2A78C77D6C68DFB3339926117CE9A /* flutter_inappwebview-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 205274A6BF529EC9C42634BDAAB5B69F /* flutter_inappwebview-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 84D80F07768197ADC35541F3A9FD170F /* GULCCComponent.m in Sources */ = {isa = PBXBuildFile; fileRef = 1BC2B4C3413CC2A47158DB170BD1BF10 /* GULCCComponent.m */; }; + 84B2A78C77D6C68DFB3339926117CE9A /* flutter_inappwebview-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = C5910F708535FBD5A239C1CBE9B28995 /* flutter_inappwebview-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; 8509C90A660B2BA244877F5842684DB0 /* SentryScopeSyncC.c in Sources */ = {isa = PBXBuildFile; fileRef = 2E2200EEC7E46F96EAC2F0F6F7C9D239 /* SentryScopeSyncC.c */; }; 851B55D4EFB385BB1B90E93EED2815A0 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = BAE27CDB4E2E589B1AC89F06DE3D7D04 /* Foundation.framework */; }; - 8535FF8C2786F7C0EA460F5B3CF6E2DD /* FBLPromise+Await.m in Sources */ = {isa = PBXBuildFile; fileRef = A00EFA30CB2E9AF709910D0589129EC8 /* FBLPromise+Await.m */; }; - 8582947CAB5E2335BD2C1743169185D0 /* SqfliteDarwinImport.h in Headers */ = {isa = PBXBuildFile; fileRef = 76C3328FA19FFA338580DD8B4D39E1DE /* SqfliteDarwinImport.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 85AFE1DE3A2DE88D9794B978FFB8BA9F /* GULURLSessionDataResponse.m in Sources */ = {isa = PBXBuildFile; fileRef = 3B467427E0F41F4F0001103849647353 /* GULURLSessionDataResponse.m */; }; - 860C10778C373B844988C35E3EE5C69D /* SwiftFlutterPlugin.swift in Sources */ = {isa = PBXBuildFile; fileRef = 40DE71780F9494C36B498C407E602FD5 /* SwiftFlutterPlugin.swift */; }; + 8530F678EE3F7C4A877D96E234B001DF /* SqflitePlugin.h in Headers */ = {isa = PBXBuildFile; fileRef = 45CBD70953AA4E296A4D1A3E38EF28C5 /* SqflitePlugin.h */; settings = {ATTRIBUTES = (Public, ); }; }; 861188706862E5D4402032E3BCAC84BC /* SentryDelayedFramesTracker.m in Sources */ = {isa = PBXBuildFile; fileRef = 2AA2F918DADD294F057A2F64435537AE /* SentryDelayedFramesTracker.m */; }; + 8642D9E36899107EC68AA6094F8819B1 /* PathProviderPlugin.swift in Sources */ = {isa = PBXBuildFile; fileRef = 87368E38B16007D0D4856E8724406AF0 /* PathProviderPlugin.swift */; }; 867A82879A73B5955879E6B83F14F492 /* SentryScreenshot.m in Sources */ = {isa = PBXBuildFile; fileRef = 1029DC038BBB4DE3F15ACA271F4969C7 /* SentryScreenshot.m */; }; 867D236B9EC64D3F7EC4F95A03289060 /* SentryPerformanceTrackingIntegration.h in Headers */ = {isa = PBXBuildFile; fileRef = F01FAF3F8F3DB3C42FE3790E1A12D723 /* SentryPerformanceTrackingIntegration.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 86BE63D9AC7051BEF7030CDD6E1C9CF3 /* FBLPromiseError.h in Headers */ = {isa = PBXBuildFile; fileRef = 295E9BD5E204FB427E4628DE85CDC3F4 /* FBLPromiseError.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 86C9B064FA2FECAFBAE4D1B1EFA06CA6 /* FBLPromiseError.m in Sources */ = {isa = PBXBuildFile; fileRef = 3B9B683A32923328EF51AB07F795B00C /* FBLPromiseError.m */; }; 87102DA5FA1B7B40B0F877B3DD14F0AB /* GTMSessionFetcherLogging.h in Headers */ = {isa = PBXBuildFile; fileRef = 84CFE9B7D9D055209BEB6245A5ABE35D /* GTMSessionFetcherLogging.h */; settings = {ATTRIBUTES = (Public, ); }; }; 8716984D060047FD32617271C8CB90F6 /* SentryRetryAfterHeaderParser.h in Headers */ = {isa = PBXBuildFile; fileRef = 268D3E4CE97902A74AD32DBF546F86DC /* SentryRetryAfterHeaderParser.h */; settings = {ATTRIBUTES = (Project, ); }; }; 874D6CBF4A7DFCEE7D2DDEC30790FD3C /* SentryDispatchFactory.m in Sources */ = {isa = PBXBuildFile; fileRef = 724CD0BD18284B13F9F88228B7839E18 /* SentryDispatchFactory.m */; }; - 879BA66D7616506FDB252675A9A3478E /* FBLPromise+Delay.h in Headers */ = {isa = PBXBuildFile; fileRef = 1335EE0DA99A5CEFD960E89A390F37C0 /* FBLPromise+Delay.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 87B2D5BB9580CDDC6D6C6075B305E5A6 /* FBLPromise+Reduce.m in Sources */ = {isa = PBXBuildFile; fileRef = 01726EF8837045E344913859CC95829F /* FBLPromise+Reduce.m */; }; - 87B814742B4EA3BB055878BA8BC43948 /* PrivacyInfo.xcprivacy in Resources */ = {isa = PBXBuildFile; fileRef = E38A7AB5EA3A7152A8CFB893C37DED8C /* PrivacyInfo.xcprivacy */; }; + 879499E9CFF6C9B037E4ACC8B0CFAB68 /* PlatformUtil.swift in Sources */ = {isa = PBXBuildFile; fileRef = 452FE7F9EF84DAEA60EF9D205E76144F /* PlatformUtil.swift */; }; 87C29EA4B3B7AF843330970B192343DB /* SentryCrashCPU_x86_32.c in Sources */ = {isa = PBXBuildFile; fileRef = ED2E0287CC917C2866AD1C92F30A14EB /* SentryCrashCPU_x86_32.c */; }; 88083C2D67F8F010DF939F00AF7B4750 /* SentryCrashString.c in Sources */ = {isa = PBXBuildFile; fileRef = 7632DAE259426E8E1C0B3128C5975B16 /* SentryCrashString.c */; }; 8809DED35DD50F36822865C2D4971FAB /* SentryDiscardReason.h in Headers */ = {isa = PBXBuildFile; fileRef = 4B830643D59D61DE43E891BDF71240B6 /* SentryDiscardReason.h */; settings = {ATTRIBUTES = (Project, ); }; }; 8809F6F7284FF9F1E03AB142415FF7F8 /* SentryFileIOTrackingIntegration.h in Headers */ = {isa = PBXBuildFile; fileRef = AD6A7649C35F1066FA4AF5FC94C516DC /* SentryFileIOTrackingIntegration.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 884506C9C019D59E2F9753F37BC33497 /* MyWebStorageManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = 56538AD6108FE3A9F438A1B9F8B4784B /* MyWebStorageManager.swift */; }; + 883BA0770531420432FF40BFC460A8A8 /* MobileScannerPlugin.m in Sources */ = {isa = PBXBuildFile; fileRef = C77CADCF64BAE15F4D49E9A9F3B23FF6 /* MobileScannerPlugin.m */; }; + 889AB95F561AC8804FBE56B2E2855740 /* NSURLSession+GULPromises.m in Sources */ = {isa = PBXBuildFile; fileRef = F9359C05FB408922AF35E6803C867BFE /* NSURLSession+GULPromises.m */; }; 88C8C9FE097CC05673D0041AF1A24E3E /* SentrySample.m in Sources */ = {isa = PBXBuildFile; fileRef = 954C894E89567E2C36BCE6C0CE3C1188 /* SentrySample.m */; }; 88CB9B3900684BFF3D60B65D274B39B4 /* SentryTracer.h in Headers */ = {isa = PBXBuildFile; fileRef = A7C64ED9D6E4A5AA296AF1BE32FD41BB /* SentryTracer.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 88E48C44ED2EB137754F9BB6CDC26D7D /* SslError.swift in Sources */ = {isa = PBXBuildFile; fileRef = DB732B5DE6D9B47F832C1FBB7FC6AC03 /* SslError.swift */; }; 88FF2C3D365EC32545542F0C3F45D7AA /* SentryMetricsAPI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 91005689751B2FBB8790949A05177126 /* SentryMetricsAPI.swift */; }; + 89172914948062CE53C37F6D56E6F6A8 /* PathMonitorConnectivityProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = 92C7C23BC1C3040B50AA2F569370E66B /* PathMonitorConnectivityProvider.swift */; }; + 892CC6C7530778536060E591B036BF93 /* FlutterEmailSenderPlugin.m in Sources */ = {isa = PBXBuildFile; fileRef = 7A855B6017454D4B2847A227EA32615D /* FlutterEmailSenderPlugin.m */; }; + 898826C9EFCB06BEC55FB237FE72DC26 /* FBLPromise+Always.h in Headers */ = {isa = PBXBuildFile; fileRef = 4A09D78CC9FBB620DE2A509B0844C4B6 /* FBLPromise+Always.h */; settings = {ATTRIBUTES = (Public, ); }; }; 89A77A99E328667A1B0C0CA472F2AC3F /* external_privacy_context.nanopb.h in Headers */ = {isa = PBXBuildFile; fileRef = 220BC95AC5B92C59BD86315696CBB17D /* external_privacy_context.nanopb.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 89AE26911A14AA1D7C9B2A3AE7D6B653 /* FBLPromises.h in Headers */ = {isa = PBXBuildFile; fileRef = C72AD5DD9EA78E2303BDA3D316DFE4A8 /* FBLPromises.h */; settings = {ATTRIBUTES = (Public, ); }; }; 89BA291F00100A5BA2B0EB0F532A643D /* GDTCORMetricsController.m in Sources */ = {isa = PBXBuildFile; fileRef = F339C196E096C6D4A043F05E019D247D /* GDTCORMetricsController.m */; }; 89F0B7B0E92BFA19934B9D479F74D4EF /* SentryMechanismMeta.m in Sources */ = {isa = PBXBuildFile; fileRef = 45F941371C9DE8BF2657D325A77B9123 /* SentryMechanismMeta.m */; }; - 8B2777B7EC1B32C9C6C596BC94852CC3 /* PrivacyInfo.xcprivacy in Resources */ = {isa = PBXBuildFile; fileRef = 18C90F2A843714057F6721C503653141 /* PrivacyInfo.xcprivacy */; }; + 8AC5900CBDB1A0347B3CA7F32B2A73CD /* flutter_nekoton_bridge.c in Sources */ = {isa = PBXBuildFile; fileRef = DF5CB0B28B5ECCDD6FDC8A7B030714BD /* flutter_nekoton_bridge.c */; }; 8B7B67B56264384E3AE64F11152EF01D /* SentryCrash.h in Headers */ = {isa = PBXBuildFile; fileRef = 8A2E3AA6410E9F2FCEC9760E2C610803 /* SentryCrash.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8BAF9E08BD75DCDDE7710765CB03140A /* SecCertificate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 489F41AB03F009F10DB6667A6AE00AF0 /* SecCertificate.swift */; }; + 8BB8218EA82B7759C325D926F0099A7C /* GoogleUtilitiesComponents-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 622C0A33F8614FAD879EF5BBA864C00F /* GoogleUtilitiesComponents-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; 8C1C282D4FA77BE6170F4FB2154CD4D8 /* SentryUserFeedback.h in Headers */ = {isa = PBXBuildFile; fileRef = 8C6BE037662FE7B91E2244DB5CAE39F6 /* SentryUserFeedback.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 8C1E26E48337015BB1598C9E968965A9 /* PermissionManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 58E09E942E39929072D400EC167BF91C /* PermissionManager.h */; settings = {ATTRIBUTES = (Public, ); }; }; 8C3DD2241D775236B97890943F93F9D5 /* SentryThreadMetadataCache.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 668614683AFFDC1D7E10F112C723EE3C /* SentryThreadMetadataCache.cpp */; }; 8C4078310A01E16F5F77F15529E7046A /* SentryCrashDefaultMachineContextWrapper.m in Sources */ = {isa = PBXBuildFile; fileRef = 839EB90613A6D1979156144D88E6A6DD /* SentryCrashDefaultMachineContextWrapper.m */; }; - 8CB26B54F4815DA1A13977BF0A3AC5FD /* FBLPromise+Recover.h in Headers */ = {isa = PBXBuildFile; fileRef = 352450B601648E8FC906DD98E956FF04 /* FBLPromise+Recover.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 8C48E10F3BBC4513C7EA9CF0BC1EE46F /* SqfliteCursor.m in Sources */ = {isa = PBXBuildFile; fileRef = D24CC816BD3154712F334C3C6C6C8320 /* SqfliteCursor.m */; }; + 8C803371083376CA375DDDE275219DA5 /* FBLPromise+Validate.m in Sources */ = {isa = PBXBuildFile; fileRef = C1BB58F99D0618CB77F4A2B3986BC3F7 /* FBLPromise+Validate.m */; }; 8CCE0C3EF891A68B77524FA1D272AF6C /* SentrySpanOperations.h in Headers */ = {isa = PBXBuildFile; fileRef = 73E5CD4B2CAAF403BBF71C28B4E84F8B /* SentrySpanOperations.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8D2A9F4F970B5C77EA581A20D295A32E /* FlutterMethodCallDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = DA665D31F8C7E9634ADBC1699DADD8D7 /* FlutterMethodCallDelegate.swift */; }; 8D598A1126D16E174AE52D606ACF1081 /* SentryTracerConfiguration.m in Sources */ = {isa = PBXBuildFile; fileRef = B42290B5FE5AE8B96C2C98CA43E7D907 /* SentryTracerConfiguration.m */; }; 8DC38F41BEE6FCD3C914E43D10AA7682 /* SentryCrashReportFilterBasic.m in Sources */ = {isa = PBXBuildFile; fileRef = C35A9E01E7425F22C0D9B37B35AC0F29 /* SentryCrashReportFilterBasic.m */; }; 8DCCD817EE5D80F2AFE159C412EC2F50 /* SentryNSTimerFactory.h in Headers */ = {isa = PBXBuildFile; fileRef = BE095A72DA777C7A23DFD944161AF315 /* SentryNSTimerFactory.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8DF08D73D7E8C132CE2FA10A594872D3 /* GULSecureCoding.h in Headers */ = {isa = PBXBuildFile; fileRef = 63D826D31EDCEB80FAA88CC787159DD1 /* GULSecureCoding.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 8DF503D56E6679DB21D4DBF87D1B2337 /* IntegrationTestIosTest.m in Sources */ = {isa = PBXBuildFile; fileRef = 95096F2A51B1C43F29AC91622F9A2B55 /* IntegrationTestIosTest.m */; }; + 8DE55D312D5E84B83A61716FB3B626B7 /* SafariViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 53E4CB534020D7746FCAC465A123D541 /* SafariViewController.swift */; }; + 8E7A7790BFF5990AA7EB3A9BA7718DB0 /* FlutterSecureStoragePlugin.m in Sources */ = {isa = PBXBuildFile; fileRef = 1D160FBEBBB1D964CBAFE6B9C94554F5 /* FlutterSecureStoragePlugin.m */; }; + 8EFE76758F88FBFDA2BCA8C4D8E44DE8 /* HitTestResult.swift in Sources */ = {isa = PBXBuildFile; fileRef = A48B975CF0B99B14E04EEB88D4814BE7 /* HitTestResult.swift */; }; 8F15A8C0547E4E1199AF68964631D23A /* flutter_native_splash-flutter_native_splash_privacy in Resources */ = {isa = PBXBuildFile; fileRef = 5B7CCD939793E0483943A9DB6D6509A2 /* flutter_native_splash-flutter_native_splash_privacy */; }; + 8F1E60CEDBA3A065656410B0910FB91E /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = BAE27CDB4E2E589B1AC89F06DE3D7D04 /* Foundation.framework */; }; 8F3055DB7BD524784A0BE1A4DE7C8CA6 /* GDTCORTargets.h in Headers */ = {isa = PBXBuildFile; fileRef = 06B2373E23894ED38C36E5AC719B2BE7 /* GDTCORTargets.h */; settings = {ATTRIBUTES = (Public, ); }; }; 8F479784745B55B8114BA720C3D9AE3E /* SentryFrame.m in Sources */ = {isa = PBXBuildFile; fileRef = 9DCC5248BB914DA7AA231930E4521D01 /* SentryFrame.m */; }; 8F4DE3FE1D75DA77A90BAE55A1A467A4 /* SentrySerialization.m in Sources */ = {isa = PBXBuildFile; fileRef = A14491B7478AE78F37278BE558DD57F6 /* SentrySerialization.m */; }; 8F673CC78E3950772CC92D49585BB179 /* SentryTracerConfiguration.h in Headers */ = {isa = PBXBuildFile; fileRef = 9B98B55518609CA813E3EA4692FDE254 /* SentryTracerConfiguration.h */; settings = {ATTRIBUTES = (Project, ); }; }; 8FBB8C1205D01104A04C4B40A4E83110 /* SentrySpanProtocol.h in Headers */ = {isa = PBXBuildFile; fileRef = C573752329501BCF82975648F5D4C7D2 /* SentrySpanProtocol.h */; settings = {ATTRIBUTES = (Public, ); }; }; 8FEFB2E2562890E18BA680BD1CCED5B8 /* SentryClientReport.h in Headers */ = {isa = PBXBuildFile; fileRef = 85827626B8B710424A6D716B49210F32 /* SentryClientReport.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 902D7F46C3C602B3EDE9F6A93054C52A /* PromisesObjC-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 0D1378232D0E5A4773F9584572B6DD83 /* PromisesObjC-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; 906CB5E6D6796EA4CE1E55E8A53BCAFD /* SentryCrashString.h in Headers */ = {isa = PBXBuildFile; fileRef = 60108ACFF8405483AD3F6D3D2ADBE3E1 /* SentryCrashString.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 907FF6EF5EF150DE82D6DD70C453DD4D /* URLLauncherPlugin.swift in Sources */ = {isa = PBXBuildFile; fileRef = BD3855EE456C6CA265D29A55B564D603 /* URLLauncherPlugin.swift */; }; 90A91CEAEFFB1D2410822983E80578DD /* SentryExtraContextProvider.h in Headers */ = {isa = PBXBuildFile; fileRef = 502792BCF74C81A8222A39F6B89C0AD1 /* SentryExtraContextProvider.h */; settings = {ATTRIBUTES = (Project, ); }; }; 90AF1C0DF19E731E118635D724296C1E /* SentryProfilerTestHelpers.h in Headers */ = {isa = PBXBuildFile; fileRef = DDF9D18F0A78CBF6827A43AE02A11B6E /* SentryProfilerTestHelpers.h */; settings = {ATTRIBUTES = (Project, ); }; }; 90DB717DC670AE0C1C8FD62CFBEEA358 /* SentryCrashReportStore.c in Sources */ = {isa = PBXBuildFile; fileRef = 1E75EE035F5EB29AEAC88D138FC81274 /* SentryCrashReportStore.c */; }; - 90DBD2E432AC4882F2D3E79CE4AEC100 /* PrivacyInfo.xcprivacy in Resources */ = {isa = PBXBuildFile; fileRef = FD654943BA5EDB9A3A7C1B5982564FCA /* PrivacyInfo.xcprivacy */; }; 90FB758324035734AD7DE0A81566F90E /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = BAE27CDB4E2E589B1AC89F06DE3D7D04 /* Foundation.framework */; }; 90FE91CB7E1E3507AFAAD9E19476655D /* SentryCrashMonitor_MachException.h in Headers */ = {isa = PBXBuildFile; fileRef = EE58C9BF1A0375C6DFEAE1B3DA740C1A /* SentryCrashMonitor_MachException.h */; settings = {ATTRIBUTES = (Project, ); }; }; 9142AEC0993EA69740FF8DD96EA0A0FD /* SentryCrashMach.c in Sources */ = {isa = PBXBuildFile; fileRef = 1E0C4DAB3C1C4E91BB01F7F0F2A16953 /* SentryCrashMach.c */; }; + 9163D0DFA7F02E74DEDE25065A88C797 /* GULHeartbeatDateStorage.m in Sources */ = {isa = PBXBuildFile; fileRef = 4326DF84A7CD898DF493BDFC4227C4D8 /* GULHeartbeatDateStorage.m */; }; + 9165A9341102404FBB43DB36E2B8BEE9 /* PrivacyInfo.xcprivacy in Resources */ = {isa = PBXBuildFile; fileRef = AC1F8DCF13E111C292E5B4DE99767634 /* PrivacyInfo.xcprivacy */; }; 91B08B48B71D18C703F8A299960EBA07 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = BAE27CDB4E2E589B1AC89F06DE3D7D04 /* Foundation.framework */; }; 927EBBC1113A923F319EE951353CA245 /* SentryNSURLRequest.m in Sources */ = {isa = PBXBuildFile; fileRef = B250CAB6B7A17DE0AAE587DD2A2AAF9D /* SentryNSURLRequest.m */; }; 928602EC1ED6C41A1616F14C8D9EF84A /* SentryScopeSyncC.h in Headers */ = {isa = PBXBuildFile; fileRef = 9973FEEA6E4920F8A5B260B9ED8BC598 /* SentryScopeSyncC.h */; settings = {ATTRIBUTES = (Project, ); }; }; 92A45F9FCD7B09F20DA10E608392D166 /* SentryDateUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = A91DB26010FE2EC7D32C3BB4438E0799 /* SentryDateUtils.m */; }; 92C9091249285C0849AF7404C752F28D /* SentrySwizzle.h in Headers */ = {isa = PBXBuildFile; fileRef = 61F0B6EE157F1CC1327907CC6043BB2E /* SentrySwizzle.h */; settings = {ATTRIBUTES = (Public, ); }; }; 92CB008CDAD6ED3A79B3DFBCA9114BEC /* SentryCrashCachedData.c in Sources */ = {isa = PBXBuildFile; fileRef = CA5CADE0CE406B2552E6C6D83F55288A /* SentryCrashCachedData.c */; }; - 932381C0ECFC15265F09C477FD08DA22 /* FPPSharePlusPlugin.m in Sources */ = {isa = PBXBuildFile; fileRef = 29DA425C210D008D04B135B3B2E6EC11 /* FPPSharePlusPlugin.m */; }; + 92E67054AE8BEDCFED7A2B32228063E8 /* GTMLogger.h in Headers */ = {isa = PBXBuildFile; fileRef = 5C432F086D8174EA640A97AA8BF3E826 /* GTMLogger.h */; settings = {ATTRIBUTES = (Public, ); }; }; 93448E2909A9C2A99C61A879F0922F98 /* SentryUIApplication.m in Sources */ = {isa = PBXBuildFile; fileRef = 97A27A29F505EECE8BCCCF1A2B96FEAD /* SentryUIApplication.m */; }; + 934F72728D31F59857FB527A63EC7569 /* GTMNSString+URLArguments.m in Sources */ = {isa = PBXBuildFile; fileRef = 73881566268BC5B9957F3B60B806739F /* GTMNSString+URLArguments.m */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; 935DF0FE7C0B55AAD5019C8BF2C8D731 /* GDTCCTUploader.m in Sources */ = {isa = PBXBuildFile; fileRef = BABE2A1714FA4602058660DFB6493DB6 /* GDTCCTUploader.m */; }; + 9372C4AF11B7B37110A4969E7B2EDF48 /* GoogleToolboxForMac-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 9FA1D58233945C260FA61BE371AF769C /* GoogleToolboxForMac-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; 938F4B69C0D7492FFD2E01981380721D /* SentryCrashBinaryImageCache.h in Headers */ = {isa = PBXBuildFile; fileRef = DF762D62C923422C3239D02876EB7BAB /* SentryCrashBinaryImageCache.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9398E7FF78CD5F40E6D716AF674B752D /* SafariViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = D2F66E9E24FCE57EE5C8254610AB1402 /* SafariViewController.swift */; }; - 9420423CAE039DB91965D1969B1643D7 /* flutter_native_splash-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 7920792C7A4BB2A08AFE666FEDC9D04F /* flutter_native_splash-dummy.m */; }; + 9420423CAE039DB91965D1969B1643D7 /* flutter_native_splash-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = C8603F5D45A3E590781BF59BE9C69D5C /* flutter_native_splash-dummy.m */; }; 9446C80CB2A5F2D56D087659B5152EB0 /* SentryNoOpSpan.h in Headers */ = {isa = PBXBuildFile; fileRef = E1687F8E8044C2FDD8590484F2FDF989 /* SentryNoOpSpan.h */; settings = {ATTRIBUTES = (Project, ); }; }; 948CAB14A2A35B17D231B1DD0E79E4DC /* SentrySpanContext.m in Sources */ = {isa = PBXBuildFile; fileRef = 1102E1959C2021EDAD7D74ED2D790543 /* SentrySpanContext.m */; }; 94E4F7EDE4B8B8C2E7BF75C93DCEE4EF /* GTMSessionFetcherLogging.m in Sources */ = {isa = PBXBuildFile; fileRef = A210086EC68F2C70EED23094A8A09B45 /* GTMSessionFetcherLogging.m */; }; - 953265924A81901EAFA886F9B936D0D6 /* WKWindowFeatures.swift in Sources */ = {isa = PBXBuildFile; fileRef = F3DFC04477C14ED5812BC6FDB5389702 /* WKWindowFeatures.swift */; }; + 94FE36329EB54EB2D9AF0D83AF6F8254 /* Security.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6FDEE359EE01891A3BD55BE7BF1116CF /* Security.framework */; }; + 952E00BFED1456A36C2F1FB8C1DAEB7E /* LocationPermissionStrategy.m in Sources */ = {isa = PBXBuildFile; fileRef = 464CAA817B716A5752FDE949AD98B6AE /* LocationPermissionStrategy.m */; }; 9564333D99CF826D4FCAC9AA97B26B13 /* SentryError.h in Headers */ = {isa = PBXBuildFile; fileRef = DDBCF8EDA1917A5BF8FF4AD0599A848A /* SentryError.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 959824CDEC6DDD0120A3D59217B3FDFE /* GULCCLibrary.h in Headers */ = {isa = PBXBuildFile; fileRef = 91018E65A91578BE53624520A9CAA172 /* GULCCLibrary.h */; settings = {ATTRIBUTES = (Public, ); }; }; 95A595F2D0C7E3A25FCD32337C2C5460 /* SentryCrashMachineContext.h in Headers */ = {isa = PBXBuildFile; fileRef = 4B87FD3D290CB418699E1BD479E4647A /* SentryCrashMachineContext.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 95CE86F60D20FE4B40EFE7C389F4AD56 /* PluginScript.swift in Sources */ = {isa = PBXBuildFile; fileRef = 300699A38B7904D5D573BBDE8F8E5015 /* PluginScript.swift */; }; + 95C06297A52911BF54D26691DBC9E116 /* FBLPromise+Testing.m in Sources */ = {isa = PBXBuildFile; fileRef = BC593A21505A40362E212D9860A91EAD /* FBLPromise+Testing.m */; }; 95D670D5B83C01779F2C9D01A78614DE /* SentryCrashReportFilter.h in Headers */ = {isa = PBXBuildFile; fileRef = 59E43D860C80AD2CD2941759F9790A5C /* SentryCrashReportFilter.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 95EF77F59E171C8A3706EED58309A740 /* pb_encode.h in Headers */ = {isa = PBXBuildFile; fileRef = 2D57F6C220C06278F8AB8D5532AB50D1 /* pb_encode.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 963B01EB278248BB34673E74786C3800 /* SentryFlutter.swift in Sources */ = {isa = PBXBuildFile; fileRef = 60E7A887AD84EB0EB1139A01F9DF3F15 /* SentryFlutter.swift */; }; 965350D2A43B92EE3ECDFA2C4DC08AFD /* SentryPerformanceTracker.m in Sources */ = {isa = PBXBuildFile; fileRef = FBDC675195352E5D986EC4E8F2B7ADDE /* SentryPerformanceTracker.m */; }; - 96776227763753EF23B0D316273CDC5C /* SqfliteOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = 4BE66C629CE4F50650615593830FE9C3 /* SqfliteOperation.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 96736F7BB0A0CA7CA96F4371CB9E1A97 /* CallAsyncJavaScriptBelowIOS14WrapperJS.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2D62283B7381D5DE0A6CF1FF9E95E81D /* CallAsyncJavaScriptBelowIOS14WrapperJS.swift */; }; 96790752292CCE6840673A2D28FF9688 /* SentryViewHierarchyIntegration.h in Headers */ = {isa = PBXBuildFile; fileRef = 128FC7FFE85370D75FB38EC31F4C2738 /* SentryViewHierarchyIntegration.h */; settings = {ATTRIBUTES = (Project, ); }; }; 9696FBFE668F0E15B920648D4663A753 /* SentryInstallation.h in Headers */ = {isa = PBXBuildFile; fileRef = A00A129AB455076F30A95F2EEC2B3797 /* SentryInstallation.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 975C8AF195504C41D5995E6F8B80E522 /* IntegrationTestPlugin.m in Sources */ = {isa = PBXBuildFile; fileRef = 06BB53DB10F08D41B6315565B16D2D47 /* IntegrationTestPlugin.m */; }; 984CA1505DEA06B84EDAD8AFABE4228A /* GDTCORTransformer.m in Sources */ = {isa = PBXBuildFile; fileRef = D205274B60EB19D552BF0B1969FC035E /* GDTCORTransformer.m */; }; 987525150C4ECA62D9F38277AF99DC81 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = BAE27CDB4E2E589B1AC89F06DE3D7D04 /* Foundation.framework */; }; 9888BC776A51EC0A104836559FEB2758 /* SentryCrashSysCtl.c in Sources */ = {isa = PBXBuildFile; fileRef = 74ACB60BE28E5E51B3C2249ABA2DA5E0 /* SentryCrashSysCtl.c */; }; - 98BE669A806EEA6740007256DC904EB3 /* url_launcher_ios-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 33ED185898BC40DA8511D7A11943E448 /* url_launcher_ios-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 98BE669A806EEA6740007256DC904EB3 /* url_launcher_ios-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 5282DD2A6912A8797B13557140F12A6A /* url_launcher_ios-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; 98F7AFE73BE7EA981A9728C58B714071 /* SentryANRTracker.h in Headers */ = {isa = PBXBuildFile; fileRef = A73DA79B51ED4622C02C0BBAFE7AE9C0 /* SentryANRTracker.h */; settings = {ATTRIBUTES = (Project, ); }; }; 993E0188C65207EFDABDB8E0B6F3204C /* SentryInternalDefines.h in Headers */ = {isa = PBXBuildFile; fileRef = 0D1DD732D2C71E277FA81D7A9CD63CEF /* SentryInternalDefines.h */; settings = {ATTRIBUTES = (Project, ); }; }; 99554B1F26181F67D930942B69A52510 /* SentrySampleDecision+Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 7ECCDE4187703D9DEFFA4D732F618A8F /* SentrySampleDecision+Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; 9996A2F5916248A80603327692A7F12B /* SentryCrashDebug.c in Sources */ = {isa = PBXBuildFile; fileRef = 7BC4796FC7196EE66E52F29902B61F4D /* SentryCrashDebug.c */; }; - 99A32A4472C19E7304FEE1332417D4EA /* UnknownPermissionStrategy.h in Headers */ = {isa = PBXBuildFile; fileRef = 2313EF5E6D98B1C7925BA70602D28323 /* UnknownPermissionStrategy.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 99B05FC51F5552A2B0B0A66A3D441BC0 /* Security.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6FDEE359EE01891A3BD55BE7BF1116CF /* Security.framework */; }; + 99AEF99D60D681F64F4B9980FAA54004 /* IntegrationTestPlugin.h in Headers */ = {isa = PBXBuildFile; fileRef = 58DC35A7689D41ED4CDF022F1BB22361 /* IntegrationTestPlugin.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 99AFF5029511C3D9CAD803C561F811BB /* FBLPromise+Timeout.h in Headers */ = {isa = PBXBuildFile; fileRef = CA8F1A6CB77486547D683AE296298AE6 /* FBLPromise+Timeout.h */; settings = {ATTRIBUTES = (Public, ); }; }; 99F526BBEB21DF8B329B7E2F984ED3C3 /* SentryNSDataSwizzling.h in Headers */ = {isa = PBXBuildFile; fileRef = FEFB384BD135E34F8CB4C83E502E5EEB /* SentryNSDataSwizzling.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9A38C3D3543DAC27EA7D4EBBC26D4D7B /* sqflite-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = F36098B93192EA92F5ACEB4B227DD976 /* sqflite-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 9A09B6B15DBE7B7EB5692327AC75BBB7 /* InAppBrowserManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5EF045136117B2771000DF5537101A6F /* InAppBrowserManager.swift */; }; + 9A38C3D3543DAC27EA7D4EBBC26D4D7B /* sqflite-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = CC8D7438357DE07DC1F4655480247566 /* sqflite-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; 9A448A5A0AE5218C0EB75F15495E9477 /* GoogleDataTransport-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = F20D6482D8FD135C09EC1F39F923CB8F /* GoogleDataTransport-dummy.m */; }; 9A62CAEE7F9450E330964D51602A911A /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = BAE27CDB4E2E589B1AC89F06DE3D7D04 /* Foundation.framework */; }; 9AA70460FBACC2966A78137800034005 /* SentryUIEventTrackingIntegration.h in Headers */ = {isa = PBXBuildFile; fileRef = 052C194EA2D4B34A5CE628284C5200CF /* SentryUIEventTrackingIntegration.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9AEF11B76EFFC9A8656F8FB69EC253A3 /* GULCCComponentContainer.m in Sources */ = {isa = PBXBuildFile; fileRef = 9B14867CC9E159E74BEB194C5EC2D1A4 /* GULCCComponentContainer.m */; }; 9AFF329C15EC7B13C1A8BB88896CC297 /* SentryScreenshotIntegration.m in Sources */ = {isa = PBXBuildFile; fileRef = 7A1CDB5DB93EC9E8FF8F6507FEFF7CE7 /* SentryScreenshotIntegration.m */; }; - 9B1C668288068B059D0758153FEF66EA /* FBLPromisePrivate.h in Headers */ = {isa = PBXBuildFile; fileRef = 153CD7074435D16BE02233B8AF13E1CF /* FBLPromisePrivate.h */; settings = {ATTRIBUTES = (Private, ); }; }; 9B1EE688169EC6B565B70EC04156A947 /* SentryConcurrentRateLimitsDictionary.h in Headers */ = {isa = PBXBuildFile; fileRef = 581B489B850B7AAEE56065A620371878 /* SentryConcurrentRateLimitsDictionary.h */; settings = {ATTRIBUTES = (Project, ); }; }; 9B2C6E5B39E6789863BFA4A12F6B52A1 /* SentryEnvelopeAttachmentHeader.m in Sources */ = {isa = PBXBuildFile; fileRef = 9EE7EAB7E643E2F4E22437DDE2ABC192 /* SentryEnvelopeAttachmentHeader.m */; }; 9B2F58408A6833666000E333C3B1C098 /* SentryCrashStackCursor_MachineContext.h in Headers */ = {isa = PBXBuildFile; fileRef = 041DD5B37E9EAE2833324D8DE0525B04 /* SentryCrashStackCursor_MachineContext.h */; settings = {ATTRIBUTES = (Project, ); }; }; 9B79025F780FDE1AC53052E4330E2D7C /* SentryGlobalEventProcessor.m in Sources */ = {isa = PBXBuildFile; fileRef = 370450D911636B51CA27ECFB0983FDDE /* SentryGlobalEventProcessor.m */; }; - 9B8AA1F8EA2251A5183431B1C76A366B /* SensorPermissionStrategy.m in Sources */ = {isa = PBXBuildFile; fileRef = 3DE61418F6CD618881D3584BED5A4D6C /* SensorPermissionStrategy.m */; }; + 9BDC4E0CFC2074C77D92D72026E898FA /* JavaScriptBridgeJS.swift in Sources */ = {isa = PBXBuildFile; fileRef = 25A4B4A7CB3DB7F03C50ABD164A35E23 /* JavaScriptBridgeJS.swift */; }; 9BF987D799A7B1775EE07E885BA59D5E /* SentryDebugImageProvider.m in Sources */ = {isa = PBXBuildFile; fileRef = E60661A579DE68D24B01997557CA9D82 /* SentryDebugImageProvider.m */; }; 9C380468E7196D52901DB1ED14450B51 /* SentryNoOpSpan.m in Sources */ = {isa = PBXBuildFile; fileRef = 5DF5C54DF376EDC2740FDDA7822E9F98 /* SentryNoOpSpan.m */; }; + 9C4C5DE77998604A2ECFBFA18904EFE2 /* EnableViewportScaleJS.swift in Sources */ = {isa = PBXBuildFile; fileRef = F4F2F4AC3B87F7672B35705CDCCB4686 /* EnableViewportScaleJS.swift */; }; 9C6D4DCF7E9A47F3C135F249C3D3B66D /* SentryEnvelopeItemHeader.m in Sources */ = {isa = PBXBuildFile; fileRef = D9B4203D6BB72B3D1C47CD5456E356DE /* SentryEnvelopeItemHeader.m */; }; - 9C7E419C20D2BE592EFA4B9C466009D7 /* WKNavigationResponse.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1F2764E8268C46A61F31FDB3FA362A7A /* WKNavigationResponse.swift */; }; - 9CD5B4482DE44A1C9DED0AAE53CD546E /* PhonePermissionStrategy.h in Headers */ = {isa = PBXBuildFile; fileRef = 690018F364FF671CA42A8ABB0B2C197C /* PhonePermissionStrategy.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 9C9486162FADC559DC1AF003A3359D91 /* SqfliteOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = 56DC8F7B532BD888B28A05F4378FFEAA /* SqfliteOperation.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 9CE72A7A29DBE63833ED401328E12167 /* CredentialDatabase.swift in Sources */ = {isa = PBXBuildFile; fileRef = 50C310450139C6BEE5AE7C8AE6F64BC1 /* CredentialDatabase.swift */; }; 9D0AFB9AFC43E12C576E80E9AF694F08 /* SentrySessionCrashedHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 86456016D222B3EB90501F5B08C123DD /* SentrySessionCrashedHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9D191DEB1BB3B910FDB2EF89DFFCC112 /* MyCookieManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = 002E041E9C8A91C2CDA95A807E85EDB8 /* MyCookieManager.swift */; }; - 9D5F3437D48AB58F28DC6C91B1ADFD2F /* PrivacyInfo.xcprivacy in Resources */ = {isa = PBXBuildFile; fileRef = 191EEBE4C7DDE9B7E0187F181BD5C531 /* PrivacyInfo.xcprivacy */; }; 9D744D5D582253E81DCA5A5043A62CF0 /* SentryCrashDynamicLinker.h in Headers */ = {isa = PBXBuildFile; fileRef = 174A404E5520E04A1767C00C0DE52FBB /* SentryCrashDynamicLinker.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9DA8F71CA40998E6A6552B57BCCACDD2 /* HitTestResult.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3D7756A771AB6DAC1C0DC1450A2F507F /* HitTestResult.swift */; }; 9DF2FE31EF27E04F29DF84EAA6746D66 /* SentryCrashC.c in Sources */ = {isa = PBXBuildFile; fileRef = CD3CCB426591FB68281C3CA4DC97EF39 /* SentryCrashC.c */; }; - 9DF7FFFC2CFBC473710A82CD7012EA23 /* flutter_nekoton_bridge-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 0F9830A64F46BE5F8F63DC2D219EA07C /* flutter_nekoton_bridge-dummy.m */; }; - 9E0E015533E5F5EB1582F5F32EB2CF57 /* NSURLSession+GULPromises.m in Sources */ = {isa = PBXBuildFile; fileRef = F9359C05FB408922AF35E6803C867BFE /* NSURLSession+GULPromises.m */; }; + 9DF7FFFC2CFBC473710A82CD7012EA23 /* flutter_nekoton_bridge-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = FFDBCC16D16E929114849A2CFDD9F5C9 /* flutter_nekoton_bridge-dummy.m */; }; 9E39CE793D06130D827BD212A053561E /* SentryMetricKitIntegration.h in Headers */ = {isa = PBXBuildFile; fileRef = 966660B21CA2BE92ABB7DD8953A35021 /* SentryMetricKitIntegration.h */; settings = {ATTRIBUTES = (Project, ); }; }; 9E3E14E931435B8531B0DF8D67408724 /* SentryException.h in Headers */ = {isa = PBXBuildFile; fileRef = EC4B6C3C3A0EFA8A15FD1A33B29968D2 /* SentryException.h */; settings = {ATTRIBUTES = (Public, ); }; }; 9E73DDDEB64C1506CC15C903908382CF /* SentryProfilingLogging.hpp in Headers */ = {isa = PBXBuildFile; fileRef = CC92FAF9FF266DF3085E44944825EF66 /* SentryProfilingLogging.hpp */; settings = {ATTRIBUTES = (Project, ); }; }; 9EF941AA46E5C420C728302CECF83E78 /* SentryScreenshotIntegration.h in Headers */ = {isa = PBXBuildFile; fileRef = 1EA4F9CB399BCC8C96A6BC6297305EFE /* SentryScreenshotIntegration.h */; settings = {ATTRIBUTES = (Project, ); }; }; 9F0D9F0FC129A42A20AD7D147481BFC8 /* SentryDataCategory.h in Headers */ = {isa = PBXBuildFile; fileRef = 03DAA603E7D1E46E149D7E7870E6D778 /* SentryDataCategory.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9F94E5AC9A11AF7E2D784B79EE079213 /* FLTIntegrationTestRunner.h in Headers */ = {isa = PBXBuildFile; fileRef = DCE1E399864B0153D6940D5994D56219 /* FLTIntegrationTestRunner.h */; settings = {ATTRIBUTES = (Public, ); }; }; 9FBFE890C0414846D4F0679502BB8532 /* SentryEnvelopeItemHeader.h in Headers */ = {isa = PBXBuildFile; fileRef = DA2E36077EBDE7FE636651E99FB415E5 /* SentryEnvelopeItemHeader.h */; settings = {ATTRIBUTES = (Public, ); }; }; 9FC78C562B7D83AFB1C37FA09D08C121 /* SentryANRTrackingIntegration.m in Sources */ = {isa = PBXBuildFile; fileRef = FC96809E197146393C9BE61D43DB11C9 /* SentryANRTrackingIntegration.m */; }; 9FFBC50513DDEB8E165B52746A148847 /* SentryStackBounds.hpp in Headers */ = {isa = PBXBuildFile; fileRef = DE23528693D9EF82F59E808DC357BE3B /* SentryStackBounds.hpp */; settings = {ATTRIBUTES = (Project, ); }; }; A018DBD7D8B0C343F77DD907042AFD37 /* SentryDependencyContainer.m in Sources */ = {isa = PBXBuildFile; fileRef = 75513E76FA87E9FC96A5DA275B9947B0 /* SentryDependencyContainer.m */; }; A055971C26AF25AB671C1B78ADE990D4 /* SentryProfilerSerialization.h in Headers */ = {isa = PBXBuildFile; fileRef = CF552DBF73EF5CDAE4CF9E4B93DA3686 /* SentryProfilerSerialization.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A0634BFA4DCB1BD5A5AF9DF6A19A8A0F /* DownloadStartRequest.swift in Sources */ = {isa = PBXBuildFile; fileRef = FFF90697DD9F42A70FCCA4B97AC19F5E /* DownloadStartRequest.swift */; }; - A07CD20B80C1FCD9872022987473BF57 /* WebViewTransport.swift in Sources */ = {isa = PBXBuildFile; fileRef = B0628838D1DA1A34D2D6142D6F4F1048 /* WebViewTransport.swift */; }; - A08BBF08CF83D538F87B8DBECD09C092 /* FLTImagePickerPlugin.h in Headers */ = {isa = PBXBuildFile; fileRef = 522BCE26A44266BC00C1CA6D9871F13F /* FLTImagePickerPlugin.h */; settings = {ATTRIBUTES = (Public, ); }; }; + A05CAE5A823A484E9762F615F99D77C4 /* GULURLSessionDataResponse.h in Headers */ = {isa = PBXBuildFile; fileRef = AAB9A991483AEA4F2332477EE062750F /* GULURLSessionDataResponse.h */; settings = {ATTRIBUTES = (Public, ); }; }; + A0F43BD1D1BB44DF917BD87DB899C7A9 /* SqfliteCursor.h in Headers */ = {isa = PBXBuildFile; fileRef = F0CBBC2DAF102AD73CC0335DEA958437 /* SqfliteCursor.h */; settings = {ATTRIBUTES = (Public, ); }; }; + A1033E208418270756BC66F081761CDB /* FBLPromise+Await.h in Headers */ = {isa = PBXBuildFile; fileRef = 4C7548C3B18D0964239630227BAAECFD /* FBLPromise+Await.h */; settings = {ATTRIBUTES = (Public, ); }; }; A15130255241C1F4A413471018B3B869 /* SentryTime.mm in Sources */ = {isa = PBXBuildFile; fileRef = 29D090B849E2EDDEA633802EAF7CE283 /* SentryTime.mm */; }; - A16CA90D3A9DDE0F80E8F6EF8128FB6D /* PromisesObjC-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 0D1378232D0E5A4773F9584572B6DD83 /* PromisesObjC-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; - A170762B3CA2A3CEF51606609181F9F7 /* FBLPromise+Async.h in Headers */ = {isa = PBXBuildFile; fileRef = 414E03E2449868C89991D1917F2073B4 /* FBLPromise+Async.h */; settings = {ATTRIBUTES = (Public, ); }; }; + A1560E05333CA50FABE9C709BEA75C32 /* GTMNSData+zlib.h in Headers */ = {isa = PBXBuildFile; fileRef = DA1F43D55439335C3BAFB361D9EFAA38 /* GTMNSData+zlib.h */; settings = {ATTRIBUTES = (Public, ); }; }; A19DF19C5D2C83F809E42D795B777436 /* SentrySwizzleWrapper.m in Sources */ = {isa = PBXBuildFile; fileRef = FD7EDBBADCB81D56306E4B1526A54570 /* SentrySwizzleWrapper.m */; }; - A1BB81FCF456F20A753F08D535DE1849 /* FLTImagePickerImageUtil.m in Sources */ = {isa = PBXBuildFile; fileRef = 7C39106E6BECC1CB5505D8777836B0A3 /* FLTImagePickerImageUtil.m */; }; A1C142B37A8C18AC9D1374D467AD8E57 /* SentryCrashMonitorType.c in Sources */ = {isa = PBXBuildFile; fileRef = 9F835E2974112E45DD95F8D44D589D0C /* SentryCrashMonitorType.c */; }; + A1C7C78B45F7C32B3EAA8DA3A08AF3D9 /* LastTouchedAnchorOrImageJS.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6C390E18D407C75134992C9623FB6D16 /* LastTouchedAnchorOrImageJS.swift */; }; A1E698F5A6B91E992EE03C6C074560E6 /* SentryTransaction.m in Sources */ = {isa = PBXBuildFile; fileRef = ADE8F0CA16CC66EFF2546862020B6E85 /* SentryTransaction.m */; }; A226446982610B1E52DBBEB6816A78AD /* SentryCrashNSErrorUtil.m in Sources */ = {isa = PBXBuildFile; fileRef = 2D5C5A91CA8AA8F681B117122AC4EA54 /* SentryCrashNSErrorUtil.m */; }; A2265A9CBE19783A0051F7DCB4E894CC /* SentryInstallation.m in Sources */ = {isa = PBXBuildFile; fileRef = 2550CA84F060DAC6CE2C5D39F51C3F3A /* SentryInstallation.m */; }; A2F5002BA19E5B16C05940B5360830B4 /* SentryTransportFactory.m in Sources */ = {isa = PBXBuildFile; fileRef = AE5C12FCE170749F5546A59C4D5EE98B /* SentryTransportFactory.m */; }; - A30782D80D0EDBC2FF0CB2114AB42FCE /* OnWindowBlurEventJS.swift in Sources */ = {isa = PBXBuildFile; fileRef = C6A847047D630B9186D3CEE39351C4F2 /* OnWindowBlurEventJS.swift */; }; + A2FF553C78DCB42E27717BDA877AA8F0 /* URLLauncherPlugin.swift in Sources */ = {isa = PBXBuildFile; fileRef = 32AB065117AF5B1B2E6CB60ACDDF6CD8 /* URLLauncherPlugin.swift */; }; A34633AF99D226C0FBE6E22636588CE5 /* SentryCrashMemory.h in Headers */ = {isa = PBXBuildFile; fileRef = C5B1132C4045EA44B51DAE2028693938 /* SentryCrashMemory.h */; settings = {ATTRIBUTES = (Project, ); }; }; A38338F97FBEADB6D6A46DBB0528CFB1 /* sqflite-sqflite_darwin_privacy in Resources */ = {isa = PBXBuildFile; fileRef = 58497E6EB70BA49D9A885C22D09B7A7C /* sqflite-sqflite_darwin_privacy */; }; - A3CDA108E7C999243BC2FAFC8CD7B2F8 /* InAppWebViewFlutterPlugin.m in Sources */ = {isa = PBXBuildFile; fileRef = E11B2F0A99E8ACF2FCDCD4DD84A56535 /* InAppWebViewFlutterPlugin.m */; }; A45B9551CAF25506307A775D457484D9 /* SentryEnvelope.h in Headers */ = {isa = PBXBuildFile; fileRef = CC1801A607FC13C7FC0DAC1A19A6D051 /* SentryEnvelope.h */; settings = {ATTRIBUTES = (Public, ); }; }; A4A6C7CF34C91B45654A1BCBEBC19636 /* SentryTransportAdapter.m in Sources */ = {isa = PBXBuildFile; fileRef = 40424295180FA3D80A8C355A03421685 /* SentryTransportAdapter.m */; }; - A4EEE44932E024C764D0405AC7296786 /* FPPSharePlusPlugin.h in Headers */ = {isa = PBXBuildFile; fileRef = C93FD92E9ED30CF5A017229F700ECA1E /* FPPSharePlusPlugin.h */; settings = {ATTRIBUTES = (Public, ); }; }; - A4FEA68DF6D8BDB5DA58D409547475FA /* pb_encode.h in Headers */ = {isa = PBXBuildFile; fileRef = 2D57F6C220C06278F8AB8D5532AB50D1 /* pb_encode.h */; settings = {ATTRIBUTES = (Public, ); }; }; A4FFB51F5273181D5D8A01AEC83A402E /* GTMSessionUploadFetcher.h in Headers */ = {isa = PBXBuildFile; fileRef = ABAC480D11D3134ADBBE98A3C7F0CEE3 /* GTMSessionUploadFetcher.h */; settings = {ATTRIBUTES = (Public, ); }; }; - A5977F2E25730A1006E33F826F512632 /* SqfliteDatabase.h in Headers */ = {isa = PBXBuildFile; fileRef = 7B1D0AE473EC130A82CAAA514BDF47DF /* SqfliteDatabase.h */; settings = {ATTRIBUTES = (Public, ); }; }; + A5053723842BB0C1ABA84E0622BB9273 /* WebMessage.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8575209B08D439F88660245A7596554A /* WebMessage.swift */; }; + A534C9C12B74EDB260077A62A1D78C46 /* SentryFlutterPluginApple.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9673048CC002D7FE6B86E428E06C1C2E /* SentryFlutterPluginApple.swift */; }; A62F1A7B19B2888E24A0881B6D4808B2 /* SentryAppStateManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 9B7C6EF4384260989B00FD6BA16F3CBD /* SentryAppStateManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; A6381D28458C5FB5F8B52E722AC71163 /* SentryNSDataUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = D23A243C911223EF116A0B8C350069D0 /* SentryNSDataUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; A63FE45BF11817ACAD27845430CAA3DB /* SentryAttachment.m in Sources */ = {isa = PBXBuildFile; fileRef = 0F40C5238B4C9E64C8B9FDF9BB69C124 /* SentryAttachment.m */; }; A681593481640CAA39357D8C4AFED38F /* SentryDiscardReasonMapper.h in Headers */ = {isa = PBXBuildFile; fileRef = CC7B01FD4B2A4BAB09AED8BA95B92592 /* SentryDiscardReasonMapper.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A73DCEB5422BE7343D5392034B639621 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = BAE27CDB4E2E589B1AC89F06DE3D7D04 /* Foundation.framework */; }; + A6E2BD083A77046BF51552B90331BC0D /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = BAE27CDB4E2E589B1AC89F06DE3D7D04 /* Foundation.framework */; }; A745FEB9FBFCC8A4252E91A46AA50C0C /* SentryGlobalEventProcessor.h in Headers */ = {isa = PBXBuildFile; fileRef = CF66E35C25190FB5EB314355A0F69684 /* SentryGlobalEventProcessor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A7B65AA8C84902B4160A5FC1725DCE96 /* FLTImagePickerMetaDataUtil.h in Headers */ = {isa = PBXBuildFile; fileRef = AB91734617255D1B2F5596C095DBBFC9 /* FLTImagePickerMetaDataUtil.h */; settings = {ATTRIBUTES = (Public, ); }; }; A7C02C6C82AC740ED64DC840E4A2D217 /* SentryNSDataTracker.h in Headers */ = {isa = PBXBuildFile; fileRef = 16F0255053DDBA947F0E72E83679F2F5 /* SentryNSDataTracker.h */; settings = {ATTRIBUTES = (Project, ); }; }; A7C7E42D426482A71F933B7A2F1F2F77 /* SentryCrashStackCursor_Backtrace.h in Headers */ = {isa = PBXBuildFile; fileRef = 0641D5CEDCD1B7EFF035667556F6FAAF /* SentryCrashStackCursor_Backtrace.h */; settings = {ATTRIBUTES = (Project, ); }; }; A7DA3D7DEB871B3DB68B051840A49F7C /* SentryCrashStackCursor_MachineContext.c in Sources */ = {isa = PBXBuildFile; fileRef = 1914513E3BA15F3ACC94C39F5716FCAD /* SentryCrashStackCursor_MachineContext.c */; }; A81FEAB562B84FB88D35149850A1DAF6 /* SentryFrameRemover.h in Headers */ = {isa = PBXBuildFile; fileRef = EF7112ADEBF94875F2B77CC15BCF1C55 /* SentryFrameRemover.h */; settings = {ATTRIBUTES = (Project, ); }; }; A822B6F9AC1B8FABFF64EA86F8DD3D9D /* SentryNSTimerFactory.m in Sources */ = {isa = PBXBuildFile; fileRef = C1344ABEACA573AD653FC92D4631A01C /* SentryNSTimerFactory.m */; }; + A8288278FE8AEECBE1AB33D8F1EF623A /* InAppBrowserOptions.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5A077EFE50B468BC7B1023D2C4AD997E /* InAppBrowserOptions.swift */; }; A8314C1B658A88CB453C71F0B61632F4 /* SentryNSURLRequestBuilder.h in Headers */ = {isa = PBXBuildFile; fileRef = 0D7AC98C2CC32116806680D81103851B /* SentryNSURLRequestBuilder.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A863CEAC63ADCB0509F42B0EEEEDDC8D /* pb_common.h in Headers */ = {isa = PBXBuildFile; fileRef = F72515A1FEFA1572FD31C19A42121996 /* pb_common.h */; settings = {ATTRIBUTES = (Public, ); }; }; A86B48F26FFE232799E35349435437A7 /* SentryOptions.m in Sources */ = {isa = PBXBuildFile; fileRef = E356B349D86F7E865F9665AF5977D6D4 /* SentryOptions.m */; }; A8883A0AA1DF8D18BDF2627D30C3534A /* SentryAutoBreadcrumbTrackingIntegration.h in Headers */ = {isa = PBXBuildFile; fileRef = 310D179A87D9F6580482AA28895866AE /* SentryAutoBreadcrumbTrackingIntegration.h */; settings = {ATTRIBUTES = (Project, ); }; }; A89327A5AE9D6C60A17486B825AB381A /* SentrySpotlightTransport.h in Headers */ = {isa = PBXBuildFile; fileRef = 5B1EDC10DD3A964E6BE6BEA5C2706513 /* SentrySpotlightTransport.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A8B1E36853FE8E81DF4770A0771748AB /* SwiftFlutterPlugin.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8894B25C5C321FC1966624898D804ADD /* SwiftFlutterPlugin.swift */; }; A919AA1AAC6514A939ED988E084C303B /* SentryRequestOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = 42F64C91746309669AE2C09260F0505A /* SentryRequestOperation.m */; }; A9245513B3A09B92BF83E23960B0FEC4 /* GDTCORReachability.h in Headers */ = {isa = PBXBuildFile; fileRef = 55E7569F5DF4AF6987AC3E71EC0665AF /* GDTCORReachability.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A936EE28B5F65059CBA6359523EB6EEF /* NotificationPermissionStrategy.m in Sources */ = {isa = PBXBuildFile; fileRef = 702958125820710BD7C662F41F230AC3 /* NotificationPermissionStrategy.m */; }; A93A94235D0BEDEA4F7D06D90DC86BB0 /* SentryCrashMachineContext_Apple.h in Headers */ = {isa = PBXBuildFile; fileRef = 8AF7AF14BE464D8B82B95C5713D7FE45 /* SentryCrashMachineContext_Apple.h */; settings = {ATTRIBUTES = (Project, ); }; }; A9427B3EC430DE727D718FE6CD00374A /* SentryCrashReportFixer.c in Sources */ = {isa = PBXBuildFile; fileRef = E531CE389DE1015F813085CB9BBFD8A7 /* SentryCrashReportFixer.c */; }; - A9BC834D457284952D17EE7514756BE4 /* Size2D.swift in Sources */ = {isa = PBXBuildFile; fileRef = 57CECFC214BEF5D0F81A16622EE9DE16 /* Size2D.swift */; }; + A9774300BBE3AC6BD5B213AEB526C57E /* GULUserDefaults.m in Sources */ = {isa = PBXBuildFile; fileRef = 137057CF8F6C9E44DF71B4288D56F988 /* GULUserDefaults.m */; }; + A99D11F512148613A8115CA3B23C882C /* InAppWebViewMethodHandler.swift in Sources */ = {isa = PBXBuildFile; fileRef = DDA299210B110CB4DB321472F76C8D9C /* InAppWebViewMethodHandler.swift */; }; + A9E3674B37AD0E489B5E0699763AC94F /* FBLPromise+Reduce.m in Sources */ = {isa = PBXBuildFile; fileRef = 01726EF8837045E344913859CC95829F /* FBLPromise+Reduce.m */; }; AA0C7BB0E54E269FD81E053B00D8E276 /* SentryDebugImageProvider.h in Headers */ = {isa = PBXBuildFile; fileRef = 29FF5C371495372F66EE83E878E6DB33 /* SentryDebugImageProvider.h */; settings = {ATTRIBUTES = (Public, ); }; }; AA10D693BE148ED0E6762C9D769D6273 /* SentryAppState.h in Headers */ = {isa = PBXBuildFile; fileRef = 27A7E939E7ADA9FCE38C165B587C16A4 /* SentryAppState.h */; settings = {ATTRIBUTES = (Project, ); }; }; + AA1730933BC5E4A01EE6E24F77F2D14D /* GULHeartbeatDateStorageUserDefaults.m in Sources */ = {isa = PBXBuildFile; fileRef = 71AAFEE5A6C434754DF178E428EC4AD5 /* GULHeartbeatDateStorageUserDefaults.m */; }; AA304B7E1C4D7D2746870BAC0EC42912 /* SentryAppStartTracker.h in Headers */ = {isa = PBXBuildFile; fileRef = 2E53B6999F04DB43D12B6146BCB636A1 /* SentryAppStartTracker.h */; settings = {ATTRIBUTES = (Project, ); }; }; + AA6F5964E85BE0316AFE520027475191 /* ConnectivityProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = 19BD32E8F3B368CB5393E897ADA3B84D /* ConnectivityProvider.swift */; }; + AA85A021208E91F17C4B4B7ED5DE6F8A /* SqfliteOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = 60361473920F028EC7A43F40E889619E /* SqfliteOperation.m */; }; AA952F334F5975F6C8EC00014C4BF610 /* SentryCrashMonitor_NSException.h in Headers */ = {isa = PBXBuildFile; fileRef = 1074A150AD4504289C5331DFEA3C42DC /* SentryCrashMonitor_NSException.h */; settings = {ATTRIBUTES = (Project, ); }; }; + AAD5409D754C1F2E65AD3BEED7A4D696 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = BAE27CDB4E2E589B1AC89F06DE3D7D04 /* Foundation.framework */; }; AAF5A270BB4C55DBFBA39615CAC2D50D /* GDTCORRegistrar.h in Headers */ = {isa = PBXBuildFile; fileRef = 4CC0210A9480200B9C9343D9E5D3A372 /* GDTCORRegistrar.h */; settings = {ATTRIBUTES = (Project, ); }; }; AB3879D2B80F721B6A852B2188BF13B6 /* SentryCrashID.c in Sources */ = {isa = PBXBuildFile; fileRef = FF1D010119FAE010AE6429A119B419F3 /* SentryCrashID.c */; }; + ABE323DB459A18E5F2932CCBE1DF924D /* DetectionSpeed.swift in Sources */ = {isa = PBXBuildFile; fileRef = 32F877D5967B8B505BAA3B8020786688 /* DetectionSpeed.swift */; }; AC199A4C86EBC4029F6DD18CD56A6ED7 /* SentryCrashStackCursor.c in Sources */ = {isa = PBXBuildFile; fileRef = E2D1F2A1EF2DC34C9FF3EA17A26FA4E3 /* SentryCrashStackCursor.c */; }; - AC4080900AF5CFD98FEDCBB5F168461C /* HeadlessInAppWebViewManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = D5D30EDCA73A54CA172BAD1FA929FCC1 /* HeadlessInAppWebViewManager.swift */; }; + AC499C3391B7943F0B7F27BB4669F0C2 /* SqfliteImport.h in Headers */ = {isa = PBXBuildFile; fileRef = 084FFF7D0B595B017CEF9420B3B7C428 /* SqfliteImport.h */; settings = {ATTRIBUTES = (Public, ); }; }; + AC5232986B87BA6CDD10BB1471B4139B /* PrintJS.swift in Sources */ = {isa = PBXBuildFile; fileRef = 65DF9762E599DE833A11517B62C9BA6D /* PrintJS.swift */; }; + ACDF54E38DCD99051B0E60A9B4FA5DFB /* SslCertificate.swift in Sources */ = {isa = PBXBuildFile; fileRef = BC4232616D0FB1BAB23449A8EA6ECA9A /* SslCertificate.swift */; }; ACEFCDC042B95AE7E1AC1BB3727532F2 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = BAE27CDB4E2E589B1AC89F06DE3D7D04 /* Foundation.framework */; }; AD03D1AB5228E1978B4DE576102E00B6 /* SentryTraceHeader.m in Sources */ = {isa = PBXBuildFile; fileRef = 2188E2F8D7577DF9B0A3CAEBA68E4767 /* SentryTraceHeader.m */; }; AD16E34EAAAD32E2F682957AE9088FDF /* SentryANRTracker.m in Sources */ = {isa = PBXBuildFile; fileRef = 0BD743F68C827502DB62D31534B6E25A /* SentryANRTracker.m */; }; - AD1EF5D25A4AD80D209F94920FD507C7 /* GULHeartbeatDateStorageUserDefaults.h in Headers */ = {isa = PBXBuildFile; fileRef = 1B068CDDEE40925B45BBF998C6C3CB8A /* GULHeartbeatDateStorageUserDefaults.h */; settings = {ATTRIBUTES = (Public, ); }; }; AD57BE91CB49BC2BAA38D36853017559 /* SentryCrashMonitor_AppState.c in Sources */ = {isa = PBXBuildFile; fileRef = 3AE3F4D21FF344C7111D5B1985AAE760 /* SentryCrashMonitor_AppState.c */; }; AD6EBB9EC403B083FDF214F4F710D459 /* SentryDefaultRateLimits.h in Headers */ = {isa = PBXBuildFile; fileRef = 3AA0AA3F8657FB36813458F3C9D2E70D /* SentryDefaultRateLimits.h */; settings = {ATTRIBUTES = (Project, ); }; }; AD8A74E22EFFFAA6C6884678CCBA2E4B /* SentryAsyncSafeLogging.h in Headers */ = {isa = PBXBuildFile; fileRef = 6E03A906B8325263E1051AF672C50AB9 /* SentryAsyncSafeLogging.h */; settings = {ATTRIBUTES = (Project, ); }; }; - ADA4290F89924D22E6B6883B9F89C2DB /* CriticalAlertsPermissionStrategy.m in Sources */ = {isa = PBXBuildFile; fileRef = 773207E5819D7EC9B0520FE245E463CB /* CriticalAlertsPermissionStrategy.m */; }; ADA824D674037CDAFF4DB8CA05ED869E /* SentryTraceHeader.h in Headers */ = {isa = PBXBuildFile; fileRef = 2E9EFBCBB9898733E5985B9025F3B39C /* SentryTraceHeader.h */; settings = {ATTRIBUTES = (Public, ); }; }; - ADB68FD3570FE5DE2D312B5582D8BD4F /* pb_common.c in Sources */ = {isa = PBXBuildFile; fileRef = C056D8E82A3E70E3EFDFF9F69D332D85 /* pb_common.c */; settings = {COMPILER_FLAGS = "-fno-objc-arc -fno-objc-arc -fno-objc-arc"; }; }; ADBB2100D75E4649102179B3D7ED081F /* SentryRequestOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = 490C697EEF136E5676578F7BA2EC1B0C /* SentryRequestOperation.h */; settings = {ATTRIBUTES = (Project, ); }; }; - AE3CC133CE65EF79FB405B149615F22E /* SpeechPermissionStrategy.h in Headers */ = {isa = PBXBuildFile; fileRef = 3BBE2ECE94C4E164170DF632303FEFE1 /* SpeechPermissionStrategy.h */; settings = {ATTRIBUTES = (Public, ); }; }; AE6398C76EDFA272139E17DEE3BE6C8B /* SentryCrashFileUtils.c in Sources */ = {isa = PBXBuildFile; fileRef = 52EDB529EB1C45DD30CBB4A7C262F3FE /* SentryCrashFileUtils.c */; }; + AEAE486553C9BDA538BAAA70893DB214 /* PrivacyInfo.xcprivacy in Resources */ = {isa = PBXBuildFile; fileRef = 26CC2D9603B42B3FBDBBA9B79821AEBE /* PrivacyInfo.xcprivacy */; }; AF11E81DCF99E77F1C42C22AB7F5A241 /* SentrySdkInfo.m in Sources */ = {isa = PBXBuildFile; fileRef = 0199B763AF2AB236E632A33A49055547 /* SentrySdkInfo.m */; }; AF4CB54DF85E512B1854BA31ED544A4A /* SentryUIEventTrackerTransactionMode.h in Headers */ = {isa = PBXBuildFile; fileRef = 5BBEADE1085FF80C40FC43AC2CC1EFA8 /* SentryUIEventTrackerTransactionMode.h */; settings = {ATTRIBUTES = (Project, ); }; }; AF64946122CDCD3D6A1AF9AC072D22E0 /* SentryDictionaryDeepSearch.m in Sources */ = {isa = PBXBuildFile; fileRef = EAAE699127118EFCE1EEE2837E563804 /* SentryDictionaryDeepSearch.m */; }; AFE766AE79822B51AF5BF39B366E5CA5 /* SentryDispatchQueueWrapper.m in Sources */ = {isa = PBXBuildFile; fileRef = 0562ABE5C152FC3E4C0842945ACD9343 /* SentryDispatchQueueWrapper.m */; }; B01157E5B0B1DED7CE2DE8E89E099357 /* SentryCrashReportFixer.h in Headers */ = {isa = PBXBuildFile; fileRef = 2FAD0DA6010013DC73CD47F5337C610B /* SentryCrashReportFixer.h */; settings = {ATTRIBUTES = (Project, ); }; }; B016D137E03F8038CD5D171C7900F037 /* SentryNSNotificationCenterWrapper.h in Headers */ = {isa = PBXBuildFile; fileRef = 863A400712523C9092F0B85A86ACB1C2 /* SentryNSNotificationCenterWrapper.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B01F196F9BCBBA031BF1AF1F84A9E941 /* nanopb-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 85B4BDF9AB8C66219F7484780917AE8B /* nanopb-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; B08B374EE82B5EA20699AF0103D99BB8 /* SentryViewHierarchy.m in Sources */ = {isa = PBXBuildFile; fileRef = DA23A5BC455A4B7447982E57FE004967 /* SentryViewHierarchy.m */; }; B12B93657329D244FD85A217D6F94A4B /* SentryNetworkTracker.m in Sources */ = {isa = PBXBuildFile; fileRef = 431A2D6ACC302EF1623320003D3EB99C /* SentryNetworkTracker.m */; }; - B14ACF91F7C7BBD1757FC56F0CEE3179 /* GULKeychainStorage.m in Sources */ = {isa = PBXBuildFile; fileRef = 62246A4F0A02545B4921EBB9BE09F33D /* GULKeychainStorage.m */; }; B14D64887B2900DAD23C4D0EB3424F05 /* SentryCrashSignalInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = A5F14BC9C0171DC67930C430B8DEE8CF /* SentryCrashSignalInfo.h */; settings = {ATTRIBUTES = (Project, ); }; }; B168F60ACE0ABED60ACAAAFF2E5C95E1 /* SentryScreenshot.h in Headers */ = {isa = PBXBuildFile; fileRef = 3411F04A131528CDAE6B692518D34EAE /* SentryScreenshot.h */; settings = {ATTRIBUTES = (Project, ); }; }; B17C7EED8DC087BEFAD9FCCA2F5A2E91 /* SentryMessage.h in Headers */ = {isa = PBXBuildFile; fileRef = 6CFEBF80C58F93061896191B13EA68AE /* SentryMessage.h */; settings = {ATTRIBUTES = (Public, ); }; }; - B1C35AC778202BB2CCAA9EA28DAD6B26 /* pb_decode.h in Headers */ = {isa = PBXBuildFile; fileRef = C55C678B2D0A4C4A604DB66D1918C56F /* pb_decode.h */; settings = {ATTRIBUTES = (Public, ); }; }; + B1BCBD88434C9EF2B5AD1E095890490B /* ContextMenuOptions.swift in Sources */ = {isa = PBXBuildFile; fileRef = 36295AA6FD91BC3B62C1E06D89AC75DE /* ContextMenuOptions.swift */; }; B1E1706921AFDE264C7DA3039DBDC9A7 /* GDTCORMetrics.m in Sources */ = {isa = PBXBuildFile; fileRef = EBE40E4D113CA48F61F078E3E7449249 /* GDTCORMetrics.m */; }; - B1FA464CA395D563BA1D6FD0DF21A0B9 /* SwiftFlutterEmailSenderPlugin.swift in Sources */ = {isa = PBXBuildFile; fileRef = 29211C05B050C034FF9569B5E4800A09 /* SwiftFlutterEmailSenderPlugin.swift */; }; + B20FD1BF18AB585BDA4FF0221FB846AF /* FBLPromise+Any.m in Sources */ = {isa = PBXBuildFile; fileRef = F0EE3EBE67E2912F7CE5F0595FBBAA2F /* FBLPromise+Any.m */; }; B21F21E521485939AAA138D8EA1EB111 /* SentryScope+Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 0647BA986AA3E09EF95B8A8D84085B8F /* SentryScope+Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B2381357963A421C1F89ACFD4F470D67 /* FlutterWebViewFactory.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4E7898C0B8206250924C76BBEDC0FF35 /* FlutterWebViewFactory.swift */; }; B23ADE26AF05F1DB1F2DAAEFA90C222C /* GDTCORUploadCoordinator.h in Headers */ = {isa = PBXBuildFile; fileRef = 422A3404CD5E6628D89EBB5CCB1A0D79 /* GDTCORUploadCoordinator.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B26758F1ED5BB0195A61DFD82DF2B1B0 /* GTMDebugThreadValidation.h in Headers */ = {isa = PBXBuildFile; fileRef = F026B684B69D3BCD9B93F806B5D46614 /* GTMDebugThreadValidation.h */; settings = {ATTRIBUTES = (Public, ); }; }; + B2872BA870EE829F0218EE7D70D60404 /* FBLPromise+Catch.m in Sources */ = {isa = PBXBuildFile; fileRef = B18730B0F1AC94B13E74F27BE7E721CF /* FBLPromise+Catch.m */; }; B29B73D513F4C8926811F153D3F489C6 /* SentryMeasurementValue.h in Headers */ = {isa = PBXBuildFile; fileRef = 694A3ECD7709F9445D4ACFACD3DA5ED5 /* SentryMeasurementValue.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B300EEFC0537DDE9303DCCD0754A7674 /* FBLPromise+Do.m in Sources */ = {isa = PBXBuildFile; fileRef = D7442893F0C2A63762CE78A3E7144481 /* FBLPromise+Do.m */; }; + B2B6A6FBCA21CEE775B4058D650EFB3A /* FLTPHPickerSaveImageToPathOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = 2989BF63F29DE22D7EE8160CEE408FBD /* FLTPHPickerSaveImageToPathOperation.h */; settings = {ATTRIBUTES = (Public, ); }; }; B31E5C80C8A689DEFC49FA8179C209FC /* SentryBinaryImageCache.h in Headers */ = {isa = PBXBuildFile; fileRef = AECAA2138374FB667539E31394BE9804 /* SentryBinaryImageCache.h */; settings = {ATTRIBUTES = (Public, ); }; }; - B346A2B365D2661B8BD3CEE21BA810E7 /* FlutterMethodCallDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3D1EB6AA2F48FD6B319F947563F24994 /* FlutterMethodCallDelegate.swift */; }; - B39170F33799500C92E43652C5353ACF /* GTMNSDictionary+URLArguments.h in Headers */ = {isa = PBXBuildFile; fileRef = 427B069F78E2CB68E41F4DB64369590D /* GTMNSDictionary+URLArguments.h */; settings = {ATTRIBUTES = (Public, ); }; }; - B4831B262C5E98D9CE944E271D790FA6 /* FBLPromise+All.m in Sources */ = {isa = PBXBuildFile; fileRef = BFB741B1A06893994242E906776C525D /* FBLPromise+All.m */; }; + B4C256C6CDA9F4BA95D02F0AA1F32CE5 /* WKContentWorld.swift in Sources */ = {isa = PBXBuildFile; fileRef = 42C075972C85D4DE8748EF299217FFEB /* WKContentWorld.swift */; }; B51E576792D2C80FB89861A0A4FF0B8D /* SentryInAppLogic.h in Headers */ = {isa = PBXBuildFile; fileRef = A22AFF7E1BFFA2CC0268DF4A9DE4EC64 /* SentryInAppLogic.h */; settings = {ATTRIBUTES = (Project, ); }; }; B52A87BC2C9DA44FC5F9AD6322C22AD7 /* GDTCORUploadBatch.m in Sources */ = {isa = PBXBuildFile; fileRef = 0BE600D4F07EEEA69C77B1277281398B /* GDTCORUploadBatch.m */; }; B5872E0E3A5EDC23B92F17048B0C7C73 /* SentryCrashCPU_Apple.h in Headers */ = {isa = PBXBuildFile; fileRef = DBF11E03401A62E951F215294542B477 /* SentryCrashCPU_Apple.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B59330B56EA9B0AA00B5D5E69698C861 /* PullToRefreshDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8CC6AB7D8831589F1EDDAB1106270367 /* PullToRefreshDelegate.swift */; }; - B5D3997FF4E0611F8B112E21D141A98C /* MobileScannerPlugin.h in Headers */ = {isa = PBXBuildFile; fileRef = 5C2AE7354707AE81A2F79D957A8212D5 /* MobileScannerPlugin.h */; settings = {ATTRIBUTES = (Public, ); }; }; B5D9FBAC10D45BF3D41BAD8655C3CDCD /* SentryCurrentDateProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = 01D4423ACAA2D3BA83F4D097E7D81F3A /* SentryCurrentDateProvider.swift */; }; - B61A56B78EFF8B61F01BFC8DA2CF24F0 /* LeakAvoider.swift in Sources */ = {isa = PBXBuildFile; fileRef = E5BA79A5CBD8535431D7A785289597A8 /* LeakAvoider.swift */; }; - B624EFAFDE9FD198E00338212075AE2B /* flutter_native_splash-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 403D70F75034FFC5A70FF437BE21457E /* flutter_native_splash-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; + B624EFAFDE9FD198E00338212075AE2B /* flutter_native_splash-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 127211CB3FCD83493BF0DBEE63BB55F8 /* flutter_native_splash-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; B63F5857E3948A657E8109393198590C /* SentryProfilingLogging.mm in Sources */ = {isa = PBXBuildFile; fileRef = 4031FA36EA284CFDBFC5B446CCD902D3 /* SentryProfilingLogging.mm */; }; - B674A4F8250E60830C6C9881779D5600 /* FlutterEmailSenderPlugin.m in Sources */ = {isa = PBXBuildFile; fileRef = 98BC5D5B321F1AE8872FED843DDC76E6 /* FlutterEmailSenderPlugin.m */; }; + B661E020744EAFA1D6182F5AE06F990B /* AudioVideoPermissionStrategy.h in Headers */ = {isa = PBXBuildFile; fileRef = C1D6523B199579EEA23F1BF30B87D348 /* AudioVideoPermissionStrategy.h */; settings = {ATTRIBUTES = (Public, ); }; }; + B6CCC97FEE9AA4DDCD6E59D550332A97 /* PrivacyInfo.xcprivacy in Resources */ = {isa = PBXBuildFile; fileRef = 58A6B07C2849FF1DDEA7048BE6237F78 /* PrivacyInfo.xcprivacy */; }; B6D36AAF693DBB41CB9262A97F59E22E /* SentryLog.h in Headers */ = {isa = PBXBuildFile; fileRef = EF48AE6285907CBE5C3E659BF9F82F35 /* SentryLog.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B711185337761B502F2A2410B3AA9A4A /* GTMNSData+zlib.h in Headers */ = {isa = PBXBuildFile; fileRef = DA1F43D55439335C3BAFB361D9EFAA38 /* GTMNSData+zlib.h */; settings = {ATTRIBUTES = (Public, ); }; }; B734AC0F234B1C814E408BBF6BC68EBD /* SentryNSURLSessionTaskSearch.m in Sources */ = {isa = PBXBuildFile; fileRef = 25B87E4587EE162821210EF91C3C0C06 /* SentryNSURLSessionTaskSearch.m */; }; + B75E63CB9AD3F9EE1BFC44BCBFE7F2F9 /* GULAppEnvironmentUtil.m in Sources */ = {isa = PBXBuildFile; fileRef = 65C9D39304783530FB1FE7D349E78FC1 /* GULAppEnvironmentUtil.m */; }; B7EE8BC8C4A738E2640992BA937EEF7A /* SentryThreadWrapper.m in Sources */ = {isa = PBXBuildFile; fileRef = 53E12D8386F9612919909A3A971E4BF5 /* SentryThreadWrapper.m */; }; + B7EF9C8C36066FA5BA19D4245B373762 /* AppTrackingTransparencyPermissionStrategy.h in Headers */ = {isa = PBXBuildFile; fileRef = 8847FDC08DBF05A1A662DC9F0969746E /* AppTrackingTransparencyPermissionStrategy.h */; settings = {ATTRIBUTES = (Public, ); }; }; + B7F7A55A292D8176EC9C22305E7C5EA3 /* BluetoothPermissionStrategy.h in Headers */ = {isa = PBXBuildFile; fileRef = 19EF02DC76D896E38265ECFA835AA715 /* BluetoothPermissionStrategy.h */; settings = {ATTRIBUTES = (Public, ); }; }; B80AFBAC867F1B2ECF56A7EF2F22EB01 /* GDTCORUploadBatch.h in Headers */ = {isa = PBXBuildFile; fileRef = 9DD34018FB006D47A745D61EE14BAF84 /* GDTCORUploadBatch.h */; settings = {ATTRIBUTES = (Project, ); }; }; B84622D4CD14C65A642D167FA375EFFA /* SentrySession.h in Headers */ = {isa = PBXBuildFile; fileRef = 741C2B766EAD0364F242A58DD501C71F /* SentrySession.h */; settings = {ATTRIBUTES = (Project, ); }; }; B848B0955E3F3FFFA6853B1BDBA5CEC3 /* SentryAsynchronousOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = D3341E0DEF430E03EE4C6DE3B8FE9892 /* SentryAsynchronousOperation.m */; }; B8837FFFF87C08985F46382D3A7F3714 /* SentryPropagationContext.h in Headers */ = {isa = PBXBuildFile; fileRef = FE6C3F704548C165819DA7AD04191F22 /* SentryPropagationContext.h */; settings = {ATTRIBUTES = (Project, ); }; }; B893B88EAE397B09619848BE74C530AA /* SentryRequestManager.h in Headers */ = {isa = PBXBuildFile; fileRef = C6B0BA746A90DE423990F971309A7448 /* SentryRequestManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B8E5D0C0BB732AA4235600986656BEB4 /* SqfliteDarwinDatabaseQueue.h in Headers */ = {isa = PBXBuildFile; fileRef = 364609A1CA74DE175B26FDB7BF7BADD3 /* SqfliteDarwinDatabaseQueue.h */; settings = {ATTRIBUTES = (Public, ); }; }; + B963450C2B1F152F146160B8D3A6EBFB /* WKNavigationAction.swift in Sources */ = {isa = PBXBuildFile; fileRef = 44D57AFAF1608E0747127608255354DF /* WKNavigationAction.swift */; }; B9A6218F90E57C444A32E070C1BE0688 /* GoogleDataTransport-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = D4ABC224BAE872950D0B62BD86DE37FB /* GoogleDataTransport-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; - B9CDE7FCA922DAF738E67F8CC7C8C812 /* NSURLSession+GULPromises.h in Headers */ = {isa = PBXBuildFile; fileRef = 0C45BC473744E822B32F54305A7C1C5C /* NSURLSession+GULPromises.h */; settings = {ATTRIBUTES = (Public, ); }; }; - B9D903C719902C08C22B3ED17955BB4F /* share_plus-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = FBDD88A9882E0342FCD0318922EF6BE9 /* share_plus-dummy.m */; }; + B9D903C719902C08C22B3ED17955BB4F /* share_plus-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 511D3890F85458361D15DA4B6D2E2A1C /* share_plus-dummy.m */; }; B9E07AC759ADF05760EDE60FCA55AF72 /* SentryScreenFrames.m in Sources */ = {isa = PBXBuildFile; fileRef = 297FDACFD1B3EDB4DA3B13A51A3D9449 /* SentryScreenFrames.m */; }; - BA07DFF12097E4046EEB6818D9471BAF /* ServerTrustChallenge.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9B4B121F38A77C97F9D95DD2C1DCCAB8 /* ServerTrustChallenge.swift */; }; + BA0C95D5449BBA108C6B7D0C63908823 /* FindElementsAtPointJS.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4552809E6B3C3DABB1CAB59582D67B8D /* FindElementsAtPointJS.swift */; }; BA193427598A8426A577A413891B3FB2 /* NSArray+SentrySanitize.h in Headers */ = {isa = PBXBuildFile; fileRef = B0D560056E3EE951B9A9C2B883031B8F /* NSArray+SentrySanitize.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BA2B075DD67624C8467135513133121E /* PrivacyInfo.xcprivacy in Resources */ = {isa = PBXBuildFile; fileRef = E67AAD2C42B33570876D906A740FE0A9 /* PrivacyInfo.xcprivacy */; }; + BA1B376FDF2ABE372EB02EA7A3E57083 /* PrivacyInfo.xcprivacy in Resources */ = {isa = PBXBuildFile; fileRef = 5C14E1383414006C7CB65F7A866C8A96 /* PrivacyInfo.xcprivacy */; }; BA5EBD30B9D8A3AC6326ECC31320F199 /* SentryHttpDateParser.h in Headers */ = {isa = PBXBuildFile; fileRef = F5A51BA5F80C4BCA1612173C3266DC20 /* SentryHttpDateParser.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BA6B32DBD832C435848063E38169EB3F /* JavaScriptBridgeJS.swift in Sources */ = {isa = PBXBuildFile; fileRef = A574953E2B2D586D0DECAB6F76B78E3B /* JavaScriptBridgeJS.swift */; }; - BA6E856E17DD2E80C72A259E9C55D1E2 /* InAppBrowserManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = C8009A9FB4A3A3657ADDCBB87B40FB78 /* InAppBrowserManager.swift */; }; - BA90B65E56B2F1DAEF5447A97A7CC2A5 /* FLTImagePickerImageUtil.h in Headers */ = {isa = PBXBuildFile; fileRef = 99C2BA5E4FA579A33BEEA93A0F309205 /* FLTImagePickerImageUtil.h */; settings = {ATTRIBUTES = (Public, ); }; }; - BAAB115683230AFC402B1606C6C37BD6 /* WKNavigationAction.swift in Sources */ = {isa = PBXBuildFile; fileRef = B929DB78E295C94744A9135D17233628 /* WKNavigationAction.swift */; }; - BACAE47F3213F130F71B33127DEDA833 /* GTMDebugThreadValidation.h in Headers */ = {isa = PBXBuildFile; fileRef = F026B684B69D3BCD9B93F806B5D46614 /* GTMDebugThreadValidation.h */; settings = {ATTRIBUTES = (Public, ); }; }; BACC6F05FD338230655F9F854EFDA10D /* SentrySessionReplayIntegration+Private.h in Headers */ = {isa = PBXBuildFile; fileRef = FD76FE911C929A11BD85F73B36EC8F58 /* SentrySessionReplayIntegration+Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BAE4A2F425619C54DC40B8341C92DE56 /* URLRequest.swift in Sources */ = {isa = PBXBuildFile; fileRef = B6BAF2C9630FC49E179BD424E68FCACA /* URLRequest.swift */; }; BB3DF6BB525E175C55D928A8C8D92DAA /* SentryFrameRemover.m in Sources */ = {isa = PBXBuildFile; fileRef = CE2BC3F2343C1BCE3FB627194196B058 /* SentryFrameRemover.m */; }; - BB5520E18697005AC5F9E889E25796FE /* CallAsyncJavaScriptBelowIOS14WrapperJS.swift in Sources */ = {isa = PBXBuildFile; fileRef = 56BF85BDECFE43E05FFEAD16C9E7AAF6 /* CallAsyncJavaScriptBelowIOS14WrapperJS.swift */; }; - BB65D46A1E51185745EACD506BAC6A52 /* FlutterNativeSplashPlugin.m in Sources */ = {isa = PBXBuildFile; fileRef = EF22253DE806CFBED5FA9B8474EBD9EA /* FlutterNativeSplashPlugin.m */; }; - BB6C479B4AD2694E825562C2C109C5EE /* FPPPackageInfoPlusPlugin.m in Sources */ = {isa = PBXBuildFile; fileRef = A4E3259CE433DE924BD4DF713EFF498D /* FPPPackageInfoPlusPlugin.m */; }; BC4E6ACD343634C0377FAB07DB4E88D5 /* SentrySDK.m in Sources */ = {isa = PBXBuildFile; fileRef = 0A1E1758126E311BF0C6A690BE2C784A /* SentrySDK.m */; }; + BC535BE5CFBFEE7309B28C45E3CECFCA /* GTMLogger.m in Sources */ = {isa = PBXBuildFile; fileRef = 3C2C6251441F3BD9D4EFFEDB34578906 /* GTMLogger.m */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; BC558C5F507ECFF06A7856DDA5A7BFBC /* SentryProfilingConditionals.h in Headers */ = {isa = PBXBuildFile; fileRef = AADA1436364B1066F2A66C28DCF5F77F /* SentryProfilingConditionals.h */; settings = {ATTRIBUTES = (Public, ); }; }; - BC7406209305C9FC0529F94C7E7783EB /* SqfliteDarwinResultSet.m in Sources */ = {isa = PBXBuildFile; fileRef = 52C7A3A30E0D10B312ACB6AF166CB553 /* SqfliteDarwinResultSet.m */; }; - BD34AE25404AE1449ABB3E4E5F515FF7 /* FBLPromise+Timeout.h in Headers */ = {isa = PBXBuildFile; fileRef = CA8F1A6CB77486547D683AE296298AE6 /* FBLPromise+Timeout.h */; settings = {ATTRIBUTES = (Public, ); }; }; - BD9AAA74C25FA462A3212DCE26235846 /* FLALocalAuthPlugin.m in Sources */ = {isa = PBXBuildFile; fileRef = 3EAAF651C8D10A62E554DCB7A16416DF /* FLALocalAuthPlugin.m */; }; + BCFF8A217C2C5BAAD219A77AF10C1147 /* AssistantPermissionStrategy.h in Headers */ = {isa = PBXBuildFile; fileRef = D34A317FB0989C265BB98D135AA19D4C /* AssistantPermissionStrategy.h */; settings = {ATTRIBUTES = (Public, ); }; }; + BD9EBFFF4BD23E51EFA1B793D69A64C5 /* URLAuthenticationChallenge.swift in Sources */ = {isa = PBXBuildFile; fileRef = 74D765590E44B3B9A6E079FB1E1DFE4D /* URLAuthenticationChallenge.swift */; }; BE346043ABC472E238DC27C859591C51 /* SentryNSDictionarySanitize.m in Sources */ = {isa = PBXBuildFile; fileRef = B3DF80C5A6B5128A4B3D18A4496FE5A9 /* SentryNSDictionarySanitize.m */; }; - BE3E897AC97AFD11C3656F553B2553CE /* GULNetworkInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = 0F0A8173A61664BB714BE2F8560DC4E4 /* GULNetworkInfo.h */; settings = {ATTRIBUTES = (Public, ); }; }; BE7AC5C6A734FE4F398011FB449A3742 /* SentryTraceOrigins.h in Headers */ = {isa = PBXBuildFile; fileRef = 6438E341BFD31DB8F075D62CA7824163 /* SentryTraceOrigins.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BEC364E5CA6864645D86B398530E4B54 /* HeadlessInAppWebView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 67CA9A16B0C72D26B1972AE0917432CA /* HeadlessInAppWebView.swift */; }; BEF1FBBAD23683067523837EFB6AF432 /* SentryCrashStackEntryMapper.m in Sources */ = {isa = PBXBuildFile; fileRef = 4A4924A6DF9DB66899351D1085CE2BF3 /* SentryCrashStackEntryMapper.m */; }; - BF0AD7F532CCE6F573EBBA366A3CDB3E /* SqfliteDarwinDB.h in Headers */ = {isa = PBXBuildFile; fileRef = F7FABBE6FE60BA8258CDE5CD94E08B0F /* SqfliteDarwinDB.h */; settings = {ATTRIBUTES = (Public, ); }; }; + BEF415D02414CA86CDE2E079F4103CBF /* SqfliteDarwinDatabaseQueue.m in Sources */ = {isa = PBXBuildFile; fileRef = 57E0D7BB32F269F5B9F67DB4E5F549A4 /* SqfliteDarwinDatabaseQueue.m */; }; + BF22B4C001D4FCCDCCF96C5DB66C7C75 /* IntegrationTestIosTest.h in Headers */ = {isa = PBXBuildFile; fileRef = 4216104F4274B6101A312E9907EE948F /* IntegrationTestIosTest.h */; settings = {ATTRIBUTES = (Public, ); }; }; + BF522B3EF3C560B3F04B722CA5482E20 /* FLTImagePickerImageUtil.h in Headers */ = {isa = PBXBuildFile; fileRef = 6A3057AB7A63DB33FDEDBF7D67411785 /* FLTImagePickerImageUtil.h */; settings = {ATTRIBUTES = (Public, ); }; }; BF6B39B2D0C161A8ED361173F90E83E9 /* SentryBaggage.m in Sources */ = {isa = PBXBuildFile; fileRef = 0806483636617A49B3E1EA14FF9C3689 /* SentryBaggage.m */; }; - BF6DE82830DF970F3B59398642D4E4E4 /* nanopb-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 85B4BDF9AB8C66219F7484780917AE8B /* nanopb-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; BF9BE2EC098AA10EB2C9C91C7FFFD2DA /* SentryCrashReportSink.h in Headers */ = {isa = PBXBuildFile; fileRef = 9C7F97E5DE29B1E19CF78425D6430BEC /* SentryCrashReportSink.h */; settings = {ATTRIBUTES = (Project, ); }; }; BFC59346F8B74E04DC35434CE0CE1BDE /* GDTCORRegistrar_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = A3F2280B0CF4E8161AA883E7BE0A738D /* GDTCORRegistrar_Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; BFE947283CD0645591ACB2299C4EFE09 /* SentryCrashWrapper.h in Headers */ = {isa = PBXBuildFile; fileRef = 99A71985FDD261B9B6A1A4F8AB5FEE0A /* SentryCrashWrapper.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C0294A55752135A69DD6461C9BAB4D58 /* InAppWebViewFlutterPlugin.h in Headers */ = {isa = PBXBuildFile; fileRef = 18CB7B5FCB45ADAC4A95C8575E85CFE7 /* InAppWebViewFlutterPlugin.h */; settings = {ATTRIBUTES = (Public, ); }; }; C049933E3AF36E3D8986D199E0E5907D /* SentryScope.m in Sources */ = {isa = PBXBuildFile; fileRef = 779158EF03CD77FF4728738F664869F5 /* SentryScope.m */; }; - C06996CB7F7E97B1E41C7CE665E13112 /* CredentialDatabase.swift in Sources */ = {isa = PBXBuildFile; fileRef = DC47AA35B073055509BF42538E2555B7 /* CredentialDatabase.swift */; }; + C060F8D21669E1052CFC701C60F1501F /* PrivacyInfo.xcprivacy in Resources */ = {isa = PBXBuildFile; fileRef = 6EA8998AF7961DF6CDFB98E50DC6D3C6 /* PrivacyInfo.xcprivacy */; }; + C06987C3EC60951BD8F3CD154E212E62 /* WKSecurityOrigin.swift in Sources */ = {isa = PBXBuildFile; fileRef = D3F2E6FCCF8DC053D6E26F8400CF7EAF /* WKSecurityOrigin.swift */; }; + C0B96EB0E315570583F82BEE4CA650BD /* GULCCComponentContainerInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = 6F4B1DA7D8F4EE7984CB784CE11D028C /* GULCCComponentContainerInternal.h */; settings = {ATTRIBUTES = (Private, ); }; }; + C0D03B5267C6C6FBB48C66EDB9DF4505 /* AudioVideoPermissionStrategy.m in Sources */ = {isa = PBXBuildFile; fileRef = 47A6015B555521EF07B1E7D5BA319B99 /* AudioVideoPermissionStrategy.m */; }; C0DE3D24A4F4CECCC9BD94FC656FB803 /* CoreTelephony.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 9F0FD844438A1848473CDBF0F90785FA /* CoreTelephony.framework */; }; C0E26EF6141D022DDE06EB847367E8EB /* external_prequest_context.nanopb.h in Headers */ = {isa = PBXBuildFile; fileRef = E259736A00D1B1FC5290888E057AD64A /* external_prequest_context.nanopb.h */; settings = {ATTRIBUTES = (Project, ); }; }; C135402E25B812D1B5496AC0D9B58165 /* SentryHttpStatusCodeRange.m in Sources */ = {isa = PBXBuildFile; fileRef = E7EBB3820BC43BFD5AB208A5F02CB4FF /* SentryHttpStatusCodeRange.m */; }; C13F56E2A22A4964B5D087A9B6DCF77A /* SentryAppStartTracker.m in Sources */ = {isa = PBXBuildFile; fileRef = 3C46F02D19A0B0F1F8939742515BBA20 /* SentryAppStartTracker.m */; }; C1B401CE9398BE42B5EBCADA085193B3 /* GDTCOREvent+GDTCCTSupport.m in Sources */ = {isa = PBXBuildFile; fileRef = A121452D123B1617B06C15FD591EE4A9 /* GDTCOREvent+GDTCCTSupport.m */; }; - C1B5CE96EC662CF944D6FB930CC09919 /* BluetoothPermissionStrategy.h in Headers */ = {isa = PBXBuildFile; fileRef = BCA097CF52649EC6F0954727758B3B55 /* BluetoothPermissionStrategy.h */; settings = {ATTRIBUTES = (Public, ); }; }; + C1F6B6E2C2A3A0182BA8562917E02832 /* MobileScannerUtilities.swift in Sources */ = {isa = PBXBuildFile; fileRef = D52765302E6035E571D54AC067595096 /* MobileScannerUtilities.swift */; }; C23C20E6F0B9ED3B1ACA416BDE9918C1 /* SentryFileManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 2E3798D2A0DE8BF72456764296534BBF /* SentryFileManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; C2667988E5F856E4F0C8D5EEA8EE5D1E /* SentryCrashSystemCapabilities.h in Headers */ = {isa = PBXBuildFile; fileRef = CFBB7BC896B6F802FB1A90412B62B429 /* SentryCrashSystemCapabilities.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C2EB10762B3F38061DEEE21CA147DFE3 /* GoogleToolboxForMac-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 9FA1D58233945C260FA61BE371AF769C /* GoogleToolboxForMac-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; - C311A3024D00C5015B1990EE6B480410 /* GTMMethodCheck.h in Headers */ = {isa = PBXBuildFile; fileRef = CFCB36653BB0F12C8015257A8DBDF8B4 /* GTMMethodCheck.h */; settings = {ATTRIBUTES = (Public, ); }; }; C3273B9338C4EFDBE013658293232169 /* SentryProfiledTracerConcurrency.mm in Sources */ = {isa = PBXBuildFile; fileRef = A8A1FB3C0A3B9ACDA74DEF8E62740D4B /* SentryProfiledTracerConcurrency.mm */; }; C3350C3FE3B93C63877AB735FA0772E5 /* SentryWatchdogTerminationScopeObserver.h in Headers */ = {isa = PBXBuildFile; fileRef = 387EFF3E3E5E9784D1AEDAFD4B6B284C /* SentryWatchdogTerminationScopeObserver.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C36742DD5A413D065C704EE20D923E8E /* UnknownPermissionStrategy.m in Sources */ = {isa = PBXBuildFile; fileRef = 4ED70C92FF083202BFD6D3E4FB2FAA7B /* UnknownPermissionStrategy.m */; }; - C3E2F2C1A0783C8FA593A04B94012657 /* local_auth_darwin-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = E13A84A08DCD1686D5C1AF21CC955FF5 /* local_auth_darwin-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; + C3E2F2C1A0783C8FA593A04B94012657 /* local_auth_darwin-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 606EE2344E4E1B60A9C6DFCBA7F21C85 /* local_auth_darwin-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; C4104058F206DC0609275B46F9C48440 /* GTMSessionFetcherService.m in Sources */ = {isa = PBXBuildFile; fileRef = 623BEAB9D4BE90AD822FA77183977F26 /* GTMSessionFetcherService.m */; }; - C4C6C66952E2A932766082CA182F3792 /* BarcodeHandler.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4F2034951BAF58836265831B2A91F698 /* BarcodeHandler.swift */; }; - C4F6EFE4AF2429F79A2D4F7B6CFA251C /* GULUserDefaults.h in Headers */ = {isa = PBXBuildFile; fileRef = AEF0CAC7EEA5D21533C5E49E84B2994B /* GULUserDefaults.h */; settings = {ATTRIBUTES = (Public, ); }; }; + C46D1145AD854EB5293F39177E86D539 /* PluginScriptsUtil.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2FA2500C68F5E432FC7A4423AEFC8B3D /* PluginScriptsUtil.swift */; }; C5150FED44D77F1C53795403320E61E3 /* SentryViewPhotographer.swift in Sources */ = {isa = PBXBuildFile; fileRef = A5A3F95B091448EA63DB56CB79830B82 /* SentryViewPhotographer.swift */; }; C5AB25F2C7D8F7EF1A2F6F6304BC6411 /* CounterMetric.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8701D2CFBEDCD81DB54810AA78A0ADE5 /* CounterMetric.swift */; }; - C5B3C7A3A9C115800BB741C5F8791A5F /* EnableViewportScaleJS.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8C0579FC7A2A3467BD6A6FF0726E8F11 /* EnableViewportScaleJS.swift */; }; + C5B33858A02C75678C401BBB65732451 /* frb.h in Headers */ = {isa = PBXBuildFile; fileRef = 85EDB1E5E5253B58C2A79A95B03BC8C2 /* frb.h */; settings = {ATTRIBUTES = (Public, ); }; }; + C5DAF1DB884D039D8A917D3570F00AEF /* FBLPromise+All.h in Headers */ = {isa = PBXBuildFile; fileRef = D0997143DB9678D3A78894DF3A5CCD98 /* FBLPromise+All.h */; settings = {ATTRIBUTES = (Public, ); }; }; C60B5EBB310759C35632DF23DF9C22BA /* SentryWatchdogTerminationLogic.h in Headers */ = {isa = PBXBuildFile; fileRef = 551DC89FA62EBB703B87D947EAB51F92 /* SentryWatchdogTerminationLogic.h */; settings = {ATTRIBUTES = (Project, ); }; }; C65ED9E91F0D694B26778CA30C7F773A /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = BAE27CDB4E2E589B1AC89F06DE3D7D04 /* Foundation.framework */; }; - C6C40775B468F79F65EEDAC0BA09101C /* IntegrationTestIosTest.h in Headers */ = {isa = PBXBuildFile; fileRef = 87EE9D69FF8F370B86357844D3EC8FEC /* IntegrationTestIosTest.h */; settings = {ATTRIBUTES = (Public, ); }; }; + C66E4D314DC6606CE038D0D9D78D2461 /* messages.g.m in Sources */ = {isa = PBXBuildFile; fileRef = DED9BEE16168551A03D56EF51078154F /* messages.g.m */; }; + C6C48912539647671E0F7208E8AEF49F /* InAppBrowserNavigationController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0FDDBCF20FC3DA317D3A5B5E5B73719A /* InAppBrowserNavigationController.swift */; }; C6F720D3E14DD5F1145230D205DF1CE9 /* SentryMigrateSessionInit.h in Headers */ = {isa = PBXBuildFile; fileRef = 9FD62F8CECF9D424207BE277E969AC18 /* SentryMigrateSessionInit.h */; settings = {ATTRIBUTES = (Project, ); }; }; C711BBBEF54FC5EB2F4507D854E875E8 /* SentryAutoBreadcrumbTrackingIntegration.m in Sources */ = {isa = PBXBuildFile; fileRef = D041C1FCF48C0415075F177590B9DF75 /* SentryAutoBreadcrumbTrackingIntegration.m */; }; + C7271EBE14729B2D72BD0C78E5B032AA /* PermissionManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 37573058B51C234C526F8EFACD1423D1 /* PermissionManager.m */; }; C762A99271774D59B5A0ED5987740B3A /* GDTCOREndpoints.h in Headers */ = {isa = PBXBuildFile; fileRef = E20B3278F3CC98A2A33043900187DC1D /* GDTCOREndpoints.h */; settings = {ATTRIBUTES = (Public, ); }; }; C77980778F27E07D579C455CD6F3AAEA /* GDTCORTransport.m in Sources */ = {isa = PBXBuildFile; fileRef = AF314C9923A078097A2188994BFB70BF /* GDTCORTransport.m */; }; C7A28A3DECAB7F3214DF3925858EB2D9 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = BAE27CDB4E2E589B1AC89F06DE3D7D04 /* Foundation.framework */; }; C8861FF2A4E7B1B0CEA1F633A5C1C749 /* SentryMigrateSessionInit.m in Sources */ = {isa = PBXBuildFile; fileRef = 1C3555C32687C31DDF6C99B94082EC13 /* SentryMigrateSessionInit.m */; }; C955F346CE6D70ED6D8C5940C53B9440 /* SentryHub+Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 7D51D126C1E1EF685FB9B1A9CF359532 /* SentryHub+Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C95DC650DD0C774B9704B4B1AA392F7E /* URLAuthenticationChallenge.swift in Sources */ = {isa = PBXBuildFile; fileRef = 14874210F011FB025B8A19341D7941C0 /* URLAuthenticationChallenge.swift */; }; C96B9B65899B6174D2837C8D1C8640C2 /* SentryDiscardedEvent.m in Sources */ = {isa = PBXBuildFile; fileRef = 6CCA9D05A7AEDA9760CD289350CF78F6 /* SentryDiscardedEvent.m */; }; + C96E4706F739623C249A12973FB54D2D /* FBLPromise.m in Sources */ = {isa = PBXBuildFile; fileRef = CC6E6A849E8D9B748108F31A76C94231 /* FBLPromise.m */; }; C987DD8DE27EDFC633C945609D2AEDBF /* SentryCoreDataTracker.m in Sources */ = {isa = PBXBuildFile; fileRef = 31097993E31E35BC56A612DD892C82AD /* SentryCoreDataTracker.m */; }; - CA79EC92A22CDB3F5770E7B77AD107D4 /* SqflitePlugin.m in Sources */ = {isa = PBXBuildFile; fileRef = F6F186682C274CBA0C9D9780F452320F /* SqflitePlugin.m */; }; + C9E25C5FBC5F2732F098804A10AE7CC5 /* MediaLibraryPermissionStrategy.h in Headers */ = {isa = PBXBuildFile; fileRef = 9AE0B2EFC5754E0C98E28F32A35425D7 /* MediaLibraryPermissionStrategy.h */; settings = {ATTRIBUTES = (Public, ); }; }; + CA7FD5C50E78DEFF919AEAEFD416D863 /* PromisesObjC-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = A14DA920BE917E6FD140D0ED090E480B /* PromisesObjC-dummy.m */; }; CA989A6D2F7978364B8995E8A1E31D8E /* GaugeMetric.swift in Sources */ = {isa = PBXBuildFile; fileRef = 65D1104704ABEC085522C44DBBEC4995 /* GaugeMetric.swift */; }; CAB81F2C282F3C659D91005FDB50B0C9 /* SentryCrashInstallationReporter.h in Headers */ = {isa = PBXBuildFile; fileRef = 8545A5DF9D9ECB8DFE7E3CC7A607B22A /* SentryCrashInstallationReporter.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CAF6849AB3CFE5ECC999C18578806B4A /* MobileScannerError.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4D0733B67E2556254DEBC635D3FA3387 /* MobileScannerError.swift */; }; CB084023B3A90589AD4827837F81CFDC /* SentryEvent.m in Sources */ = {isa = PBXBuildFile; fileRef = B922F3B7F7432862B36DAFD629128BDA /* SentryEvent.m */; }; CB21B04E19B61CD84695B6C2BBE5B1FA /* SentryEvent+Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 36E9F9DBD2A2B17D769969BAED10125D /* SentryEvent+Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; CB29018C3140BABC642BD07F76B459D8 /* SentryNSDataUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = 86C207587182DA40797ECA6F8C5C6063 /* SentryNSDataUtils.m */; }; + CB71F51CD0876C37B2F551DE2F2C57C1 /* GULLoggerLevel.h in Headers */ = {isa = PBXBuildFile; fileRef = F3521A8D237471295EC57082DCFF69A9 /* GULLoggerLevel.h */; settings = {ATTRIBUTES = (Public, ); }; }; CB95181A7F70EB87A4AB3E0EBB055250 /* SentrySpanContext.h in Headers */ = {isa = PBXBuildFile; fileRef = 8C8ED330A828CCFC3C9ECAABDC232F6C /* SentrySpanContext.h */; settings = {ATTRIBUTES = (Public, ); }; }; - CBC11AF3B64531A2D909AAE339B780F5 /* OnWindowFocusEventJS.swift in Sources */ = {isa = PBXBuildFile; fileRef = 99A57E3C9CD0190D5FFF90392A894D72 /* OnWindowFocusEventJS.swift */; }; CBF25769ADC0658505AA8FB9E5075F50 /* SentryDiscardedEvent.h in Headers */ = {isa = PBXBuildFile; fileRef = B6630BC3C898BD9B3A1CE82074AD1B92 /* SentryDiscardedEvent.h */; settings = {ATTRIBUTES = (Project, ); }; }; CC7E6C74F6D9ABDA5BC9A2F4B4296FA5 /* SentryReplayEvent.m in Sources */ = {isa = PBXBuildFile; fileRef = 1370D6C75A46526378BDFE7E731DEA5F /* SentryReplayEvent.m */; }; CC8C1B63DE0652F259C9A12E0EDA1866 /* UIViewController+Sentry.h in Headers */ = {isa = PBXBuildFile; fileRef = 1BBA0D981E461B32AC53D1A903F22D42 /* UIViewController+Sentry.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CC9A6FFE464F969C926FFB0C1E5A19ED /* SqfliteDarwinDatabase.h in Headers */ = {isa = PBXBuildFile; fileRef = 0BD10FAF5967B172B9A9BAFC9B3D4C49 /* SqfliteDarwinDatabase.h */; settings = {ATTRIBUTES = (Public, ); }; }; - CCC16AA3247742D8514307C7D2B8F95B /* FBLPromise+Do.h in Headers */ = {isa = PBXBuildFile; fileRef = 2A27A3C0047B792CAA7E198BD1D4852D /* FBLPromise+Do.h */; settings = {ATTRIBUTES = (Public, ); }; }; + CCBCE2806D2C9991F205BBFAC6E865D7 /* messages.g.swift in Sources */ = {isa = PBXBuildFile; fileRef = 79A14164DD8D174653AA89AFD915C64C /* messages.g.swift */; }; + CCC9BFE673CE33BA3E6FBE9D9A5EB0EB /* GTMNSData+zlib.m in Sources */ = {isa = PBXBuildFile; fileRef = 6E7BD82EA8128B9741DA5CD53B5F7211 /* GTMNSData+zlib.m */; }; + CCE4FC5A5918B07F40734012A33F020A /* GTMNSDictionary+URLArguments.h in Headers */ = {isa = PBXBuildFile; fileRef = 427B069F78E2CB68E41F4DB64369590D /* GTMNSDictionary+URLArguments.h */; settings = {ATTRIBUTES = (Public, ); }; }; CCF0F84223A2051B7BC2FA900AB96352 /* SentryCrashLogger.h in Headers */ = {isa = PBXBuildFile; fileRef = 5410852A923F9F0C14EAF53B8890AE49 /* SentryCrashLogger.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CD06E51F38A7C6D7119AD823282504F0 /* GULKeychainStorage.h in Headers */ = {isa = PBXBuildFile; fileRef = F98F96A7C075AC6F4B2037504F5C0321 /* GULKeychainStorage.h */; settings = {ATTRIBUTES = (Public, ); }; }; + CD207CAF9C35CD19DBB3D7F0BBC5BD16 /* PrivacyInfo.xcprivacy in Resources */ = {isa = PBXBuildFile; fileRef = 18C90F2A843714057F6721C503653141 /* PrivacyInfo.xcprivacy */; }; + CD48CBDEB1A6F4B1ACCCD1A3893CAA50 /* messages.g.h in Headers */ = {isa = PBXBuildFile; fileRef = 9B05DC9BC0848E482E4A3574EC43EB7A /* messages.g.h */; settings = {ATTRIBUTES = (Public, ); }; }; + CDCEB907EB30DAFBCD29AD1C2432C5C9 /* ContactPermissionStrategy.m in Sources */ = {isa = PBXBuildFile; fileRef = 647AF74A660CD01F846A1543442C4B46 /* ContactPermissionStrategy.m */; }; CDE9EB72F0C53635E66F102C2E748D72 /* SentryProfileTimeseries.h in Headers */ = {isa = PBXBuildFile; fileRef = 77F56505A48A3265FD5063C8671491A8 /* SentryProfileTimeseries.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CDFDC61A9DF6A0FA3C887577AFFA0419 /* PromisesObjC-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = A14DA920BE917E6FD140D0ED090E480B /* PromisesObjC-dummy.m */; }; + CE0179E29C1E2933FEEA2495DBE22C3D /* ConnectivityPlusPlugin.m in Sources */ = {isa = PBXBuildFile; fileRef = 2E9519540E59EA6742FCDA3037B62A26 /* ConnectivityPlusPlugin.m */; }; + CE201E7074E3EEADA8DD869917C890CF /* AppTrackingTransparencyPermissionStrategy.m in Sources */ = {isa = PBXBuildFile; fileRef = 4F949A9EAD3580AE420B5F0428A66D5C /* AppTrackingTransparencyPermissionStrategy.m */; }; CE6977D40637A7194BAF831214EAC664 /* SentryMachLogging.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 0EBDDE1816B7927B2D7DFFAF44F0120E /* SentryMachLogging.cpp */; }; CE8F98383AF5EC3B94778BB12C326A49 /* SentryDisplayLinkWrapper.h in Headers */ = {isa = PBXBuildFile; fileRef = 4A9A922FA3E953E08E1CB35A75D893E2 /* SentryDisplayLinkWrapper.h */; settings = {ATTRIBUTES = (Project, ); }; }; CEF0F3B595EB7BEE4BA3BEDF0E504E6F /* SentryCrashStackCursor_SelfThread.m in Sources */ = {isa = PBXBuildFile; fileRef = DD1377598E4AE0C05CEE784A891F5068 /* SentryCrashStackCursor_SelfThread.m */; }; CF319C52FDCC743F8806EE36B714F73F /* SentryFramesTracker.m in Sources */ = {isa = PBXBuildFile; fileRef = 56B7C98E2D341192D7009750117CB13E /* SentryFramesTracker.m */; }; - CF4DC0429531C93363D7D247E5FF4A59 /* SentryFlutterPlugin.h in Headers */ = {isa = PBXBuildFile; fileRef = B7F09492C1496142FAB315FCB3CD3D12 /* SentryFlutterPlugin.h */; settings = {ATTRIBUTES = (Public, ); }; }; CF5A6D997FA6FA7613A77614B46DB1A8 /* GDTCORTransformer.h in Headers */ = {isa = PBXBuildFile; fileRef = 4A7E124E1E9F801DFA46657310ACB312 /* GDTCORTransformer.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CF5E12302EF4B5327694CAA3CB330EFA /* FBLPromiseError.h in Headers */ = {isa = PBXBuildFile; fileRef = 295E9BD5E204FB427E4628DE85CDC3F4 /* FBLPromiseError.h */; settings = {ATTRIBUTES = (Public, ); }; }; + CFAB1EC1B0B318F812CE94707B492BDB /* Launcher.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0B1332C32796BBB871B5BC9A132E7879 /* Launcher.swift */; }; + D00F615020B456D3709F5CEA18942E63 /* ConsoleLogJS.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4F65D46F70D24038C4A35C7A47A79DAB /* ConsoleLogJS.swift */; }; D024E742EB77384F58E9083EC2F681C8 /* SentryNSProcessInfoWrapper.h in Headers */ = {isa = PBXBuildFile; fileRef = 94529427FAB14A8D94A0940BE01C7A6C /* SentryNSProcessInfoWrapper.h */; settings = {ATTRIBUTES = (Project, ); }; }; D061D4070358AE2201201C6472BA0005 /* SentryNSURLRequestBuilder.m in Sources */ = {isa = PBXBuildFile; fileRef = A4FE9F493AF14D50D16776AD1FB8F116 /* SentryNSURLRequestBuilder.m */; }; D086EED2CFC613F8195B79D62EDD6670 /* SentryMeasurementUnit.h in Headers */ = {isa = PBXBuildFile; fileRef = 2814D1C88C85A5B2348E372216026FE7 /* SentryMeasurementUnit.h */; settings = {ATTRIBUTES = (Public, ); }; }; D0C4B172C27F5691B970009A9BED749B /* SentrySerialization.h in Headers */ = {isa = PBXBuildFile; fileRef = 9AACC913DAB2A6A22EC97AB1F8DAD63A /* SentrySerialization.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D0E0C725CDD8461990F0162565E29237 /* SpeechPermissionStrategy.m in Sources */ = {isa = PBXBuildFile; fileRef = EC6646ACA23E42A058E5DE9289781AC4 /* SpeechPermissionStrategy.m */; }; D1043CB756BDC19F3D27F2DC72F37253 /* SentryThreadWrapper.h in Headers */ = {isa = PBXBuildFile; fileRef = 931E3AB5EEB6CFAB588D6EDC9F12753F /* SentryThreadWrapper.h */; settings = {ATTRIBUTES = (Project, ); }; }; D13271C4FE360330DE7E7424A00E3E54 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = BAE27CDB4E2E589B1AC89F06DE3D7D04 /* Foundation.framework */; }; + D143B304F73668F6747A4376DF0781F4 /* ServerTrustChallenge.swift in Sources */ = {isa = PBXBuildFile; fileRef = E99D6BC64B949B625195037B91A433CD /* ServerTrustChallenge.swift */; }; D15079E1A26D5FCFFC5AB288E651E255 /* compliance.nanopb.c in Sources */ = {isa = PBXBuildFile; fileRef = 33831F9017AB927CFA8BF235D78FA37D /* compliance.nanopb.c */; }; - D15A1E533894E25429D85638C13B3D75 /* FBLPromise+Always.m in Sources */ = {isa = PBXBuildFile; fileRef = 11EB5DD1C215E4268AE639D85D89F5C3 /* FBLPromise+Always.m */; }; - D15FAB9494D6CC92700C1F1F0F574588 /* SqfliteCursor.m in Sources */ = {isa = PBXBuildFile; fileRef = 8E6AE6A180B98FF12FB98F33213A25DC /* SqfliteCursor.m */; }; D16FF146F0F8681149238440DA55DD68 /* SentryStacktrace.h in Headers */ = {isa = PBXBuildFile; fileRef = 75ED4861D4CFEBD588E86BFFA43F9BDC /* SentryStacktrace.h */; settings = {ATTRIBUTES = (Public, ); }; }; + D1C1E0F5BE8F8B5CA2556E2AB99BB947 /* SqfliteDarwinImport.h in Headers */ = {isa = PBXBuildFile; fileRef = 6955668E3FB2C1A52FD85A1F004DA1B5 /* SqfliteDarwinImport.h */; settings = {ATTRIBUTES = (Public, ); }; }; D1CBE43C1C2D9D3E808E73053764633B /* SentryLogOutput.m in Sources */ = {isa = PBXBuildFile; fileRef = A0983EEA57A6A1DBD974457F9FADCE1C /* SentryLogOutput.m */; }; - D1CEE9DCCCDFE72056C1BBF5FE99B334 /* PullToRefreshControl.swift in Sources */ = {isa = PBXBuildFile; fileRef = CD0ECCF6B6B330DF9DE2B7728F1CF90E /* PullToRefreshControl.swift */; }; D1D8A4CCE527F3005AA2F3977D64AE62 /* SentryObjCRuntimeWrapper.h in Headers */ = {isa = PBXBuildFile; fileRef = BE2D160E92B05CA6F5F9186CDD716C24 /* SentryObjCRuntimeWrapper.h */; settings = {ATTRIBUTES = (Project, ); }; }; D2473023A49B5EC1A2DED934E2B54328 /* SentryCrashDate.h in Headers */ = {isa = PBXBuildFile; fileRef = B9252B7224B8051CB8B2E880FAB708A3 /* SentryCrashDate.h */; settings = {ATTRIBUTES = (Project, ); }; }; D29C611840B766F97F94B621F24F2612 /* GDTCCTCompressionHelper.h in Headers */ = {isa = PBXBuildFile; fileRef = 2369BAD0C2F10CB77E653B548C5C2BD5 /* GDTCCTCompressionHelper.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D2D103B06BC032BA9B1900BB6DF55524 /* FBLPromise+Wrap.h in Headers */ = {isa = PBXBuildFile; fileRef = 16E2AE0248BE22404B43BC748BEDC1C9 /* FBLPromise+Wrap.h */; settings = {ATTRIBUTES = (Public, ); }; }; D3082F9D7DEFECE89B1B076A3637C73C /* SentryPerformanceTracker.h in Headers */ = {isa = PBXBuildFile; fileRef = A27E1F94393EF29136475E0D8D092BFA /* SentryPerformanceTracker.h */; settings = {ATTRIBUTES = (Project, ); }; }; D3697DB4A16709579200A2FAB1C57F09 /* SentryAppStartTrackingIntegration.h in Headers */ = {isa = PBXBuildFile; fileRef = BBBE29948E8BB0B01041D722D9C20F77 /* SentryAppStartTrackingIntegration.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D3988FB1FCF9756D942C5D62146AE2A7 /* connectivity_plus-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 090FD215777C1FACEE2A5223696527D6 /* connectivity_plus-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; - D3C06A25E0EB860EEFBAD539500E9619 /* path_provider_foundation-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = EC74DB937C3A6E7E8F5845329B450F95 /* path_provider_foundation-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; + D3988FB1FCF9756D942C5D62146AE2A7 /* connectivity_plus-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 85B682CD2A2B0AD0D8066B55A5F615C0 /* connectivity_plus-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; + D3C06A25E0EB860EEFBAD539500E9619 /* path_provider_foundation-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 2FC9E549F58399B23CB5D799C1DA659E /* path_provider_foundation-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; + D3C3BDCB99FDB66401488A3453B30E79 /* FBLPromise+Delay.m in Sources */ = {isa = PBXBuildFile; fileRef = CB500BB57007BDF074819355112F2080 /* FBLPromise+Delay.m */; }; D3C6FACA3C62FD4F23E7DDAC00C714BE /* SentryContinuousProfiler.m in Sources */ = {isa = PBXBuildFile; fileRef = 9AAC132AB6F76EDCF91B11B8757DCEFC /* SentryContinuousProfiler.m */; }; - D3F59AD35C269CE243EFF30D3C389601 /* InAppBrowserOptions.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8549B08EA8C5372D1637A142DB166036 /* InAppBrowserOptions.swift */; }; + D3E43A08E382513D8100FFA81560C052 /* PermissionHandlerEnums.h in Headers */ = {isa = PBXBuildFile; fileRef = 4E7B13718BD4CB0F5C34B077D6D8DE11 /* PermissionHandlerEnums.h */; settings = {ATTRIBUTES = (Public, ); }; }; D3FC1176E1FBC69439DFA0C45CE4808B /* OrderedSet-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 97258F00349115F081B0970F460599CF /* OrderedSet-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; D409A95051CD6F1ABFA1A66895108EEF /* SentrySessionReplayIntegration.h in Headers */ = {isa = PBXBuildFile; fileRef = EB4577EDB0377BACD6732F266E66DBF1 /* SentrySessionReplayIntegration.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D42465963FF6E37A7BF073BC35D1ECE1 /* SslError.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2CF884DB478A409FAC98F0B0922BFDF9 /* SslError.swift */; }; + D427DDF1B033FD30E1BF943D37604049 /* WKNavigationResponse.swift in Sources */ = {isa = PBXBuildFile; fileRef = 21A0CE26E80F633C44B14B6A35FE7BFB /* WKNavigationResponse.swift */; }; D438843C2781F8494B5BE67816D2DBD0 /* SentryCrashCPU_x86_64.c in Sources */ = {isa = PBXBuildFile; fileRef = C61514A118F13ED94F94DDCB13FBDAAF /* SentryCrashCPU_x86_64.c */; }; + D457C715F4DCE572D2A92E0C8B668A32 /* UnknownPermissionStrategy.m in Sources */ = {isa = PBXBuildFile; fileRef = BA1E1503497901FA68405E3103199608 /* UnknownPermissionStrategy.m */; }; D4A5B64F4AFAE06DF5F34D0BA7FCD22A /* path_provider_foundation-path_provider_foundation_privacy in Resources */ = {isa = PBXBuildFile; fileRef = 3DBD4BADE27F8B91024E4B4B4DD75DB5 /* path_provider_foundation-path_provider_foundation_privacy */; }; D5B3C12719A169D679B818EF4050ADF1 /* PrivateSentrySDKOnly.h in Headers */ = {isa = PBXBuildFile; fileRef = C323FB9E92464B2FEB789C970F7764D6 /* PrivateSentrySDKOnly.h */; settings = {ATTRIBUTES = (Public, ); }; }; + D5D47EBC70A610469E29C11F5AC457CD /* FlutterKeyboardVisibilityPlugin.m in Sources */ = {isa = PBXBuildFile; fileRef = AC0F441B360786B7CF53EDF77AF08FC5 /* FlutterKeyboardVisibilityPlugin.m */; }; + D5F54136AEED20DE306612232AC99B94 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = BAE27CDB4E2E589B1AC89F06DE3D7D04 /* Foundation.framework */; }; D607184FA40F374C7FC754BB5C1871EA /* SentryQueueableRequestManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 243C6D67E9D18F7BC29F9568DD64EE13 /* SentryQueueableRequestManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; D6102FA70852E992F217433437A0CD33 /* MetricsAggregator.swift in Sources */ = {isa = PBXBuildFile; fileRef = 604EEE74FCAD45C9D6CDD32802D5927B /* MetricsAggregator.swift */; }; D66A1FCAECA3B554B28C305D17D38876 /* SentryHttpDateParser.m in Sources */ = {isa = PBXBuildFile; fileRef = 211182261568C6AEBD288953F2F777AB /* SentryHttpDateParser.m */; }; - D67DA371F377E224AFE79EF2A2E9F6C9 /* FBLPromise+Then.m in Sources */ = {isa = PBXBuildFile; fileRef = C37136D6D808A12F1C178429ADC3A037 /* FBLPromise+Then.m */; }; D6AC23B3140DFD6F4BC65FE1229CC143 /* NSLock.swift in Sources */ = {isa = PBXBuildFile; fileRef = D0ED60F3322BF929DF0C0A90A0F6D713 /* NSLock.swift */; }; - D6B354B86E2EB2463869619B805E8FE7 /* ChromeSafariBrowserManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5CE3A2EE3CB2E7F8919C1CBC5039AB44 /* ChromeSafariBrowserManager.swift */; }; - D6DD03997BE0A4AF3F8AAE6CC752223A /* FBLPromise+Async.m in Sources */ = {isa = PBXBuildFile; fileRef = 76479A32EBF62002DC4D798261D2AECD /* FBLPromise+Async.m */; }; + D6D19F94DAC79BF9FE41DDAECC0AAE5A /* IsAppEncrypted.m in Sources */ = {isa = PBXBuildFile; fileRef = 0D79CD7BAB911B77C3EEB85F93029450 /* IsAppEncrypted.m */; }; D7083EFA32BFFB5149627365A49D6787 /* SentryProfilerState.mm in Sources */ = {isa = PBXBuildFile; fileRef = B1D644B5EA7FF2D9E8CA2A228775D62A /* SentryProfilerState.mm */; }; D7768F632BE0C554C8B4F521D19B4DFB /* SentryCrashInstallation.m in Sources */ = {isa = PBXBuildFile; fileRef = 3612E34C4AF8453C98684C4E2EE5DEE3 /* SentryCrashInstallation.m */; }; - D7C058BF86BA8F2E7514777DDEB2980D /* WebMessageChannelJS.swift in Sources */ = {isa = PBXBuildFile; fileRef = 95E6F1C458A71568294E3E340915CA8C /* WebMessageChannelJS.swift */; }; - D7DF8F9DBCD7C83E6A265218303084BF /* InAppBrowserNavigationController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6B43A3D667231EA08168FA15C64549BC /* InAppBrowserNavigationController.swift */; }; D836AF3EAAA1826DC9C8E21B014ED759 /* SentryCrash.m in Sources */ = {isa = PBXBuildFile; fileRef = BDEAB65AAEAF7968DAB7CF21C1226B20 /* SentryCrash.m */; }; D83D4E9E1D85EF0AC20152739098CAED /* SentryUIEventTrackingIntegration.m in Sources */ = {isa = PBXBuildFile; fileRef = B202C5C40A27935FEFAE3CFA563D8172 /* SentryUIEventTrackingIntegration.m */; }; - D8A53187B9FEAC91A44EEA9E5899E24F /* SqfliteDatabase.m in Sources */ = {isa = PBXBuildFile; fileRef = B7DDBF7E0A49385DDADAF9E67B9CF178 /* SqfliteDatabase.m */; }; + D863B13D6398202B7AABD36CC5A23E7F /* BarcodeHandler.swift in Sources */ = {isa = PBXBuildFile; fileRef = BACE3B4661BD79A800FCE799ADECA430 /* BarcodeHandler.swift */; }; + D8A2B3835AE6EECEAC46CB54D6C92514 /* GoogleUtilities-GoogleUtilities_Privacy in Resources */ = {isa = PBXBuildFile; fileRef = 44E291D18340EAC3F761346198515323 /* GoogleUtilities-GoogleUtilities_Privacy */; }; D8C5C43FE5C0F79F14DEFD3598776EC2 /* SentryCrashCPU.h in Headers */ = {isa = PBXBuildFile; fileRef = B14C8ED26A88C3A4DD8FED061EA673E5 /* SentryCrashCPU.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D9AAC6D4A363DECBE36A4879EAD4B629 /* shared_preferences_foundation-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 998A5E0CFA86F842EAA62915D285A688 /* shared_preferences_foundation-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; + D9AAC6D4A363DECBE36A4879EAD4B629 /* shared_preferences_foundation-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 66FD748DD8BE8D76D427D6B35DDEB846 /* shared_preferences_foundation-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; DA061235703CEA6F994E19ED4AA967A2 /* SentryReplayType.h in Headers */ = {isa = PBXBuildFile; fileRef = 224C3ACE869A3E59F0D3CB4A2539E01D /* SentryReplayType.h */; settings = {ATTRIBUTES = (Project, ); }; }; DA2E5D1C9B6AA7F3480CD6405EF20AA3 /* SentryScreenFrames.h in Headers */ = {isa = PBXBuildFile; fileRef = 12D11599E49050D82F8AA7E2CA54BB84 /* SentryScreenFrames.h */; settings = {ATTRIBUTES = (Public, ); }; }; DA34E9640D033EEA8721CC9ED6BE6155 /* SentrySysctl.h in Headers */ = {isa = PBXBuildFile; fileRef = FB1726EC71396C4697B4BB07A4F2C7F5 /* SentrySysctl.h */; settings = {ATTRIBUTES = (Project, ); }; }; DA8B64748F4D276174C8B0AA5FDC8E9F /* SentryCrashReportFields.h in Headers */ = {isa = PBXBuildFile; fileRef = 2B194E34C7A8E64861E5DEA8D2588BC7 /* SentryCrashReportFields.h */; settings = {ATTRIBUTES = (Project, ); }; }; DAF02B9D3931BA83B7CACE6CAAEE65DF /* SentryTraceContext.m in Sources */ = {isa = PBXBuildFile; fileRef = B4EE5E95ADC4216A00353C2C8ABB95F6 /* SentryTraceContext.m */; }; DB307AD4F09E7E3E1E04B1406C8628F1 /* SentryCrashPlatformSpecificDefines.h in Headers */ = {isa = PBXBuildFile; fileRef = 953AF46BE564465CCD20326806FE7956 /* SentryCrashPlatformSpecificDefines.h */; settings = {ATTRIBUTES = (Project, ); }; }; - DB618E6A4E74F4B58DBAB7E9E73D8F33 /* PrivacyInfo.xcprivacy in Resources */ = {isa = PBXBuildFile; fileRef = 8A9F75595D30332F5F830289CF6B0C73 /* PrivacyInfo.xcprivacy */; }; + DB753ED7512ABEA222756F9CD5E75552 /* PrivacyInfo.xcprivacy in Resources */ = {isa = PBXBuildFile; fileRef = 8A9F75595D30332F5F830289CF6B0C73 /* PrivacyInfo.xcprivacy */; }; DBBA6727D1989ACA4382EE49E9BE03C3 /* GDTCOREvent+GDTMetricsSupport.h in Headers */ = {isa = PBXBuildFile; fileRef = 252221898D19F7CCE4B0A252D65F72A1 /* GDTCOREvent+GDTMetricsSupport.h */; settings = {ATTRIBUTES = (Project, ); }; }; - DBF0F68B867B6DC93702599D1EDD96D5 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = BAE27CDB4E2E589B1AC89F06DE3D7D04 /* Foundation.framework */; }; + DBEDA962F9728E93B20DF704DA35FED8 /* StoragePermissionStrategy.h in Headers */ = {isa = PBXBuildFile; fileRef = CFD58391053F6CE1A08C18BF0CCBC40F /* StoragePermissionStrategy.h */; settings = {ATTRIBUTES = (Public, ); }; }; DBF2241E6A837DA30F9508844E0148C3 /* SentryThread.m in Sources */ = {isa = PBXBuildFile; fileRef = BB66BFCE83E0BB378CD1D02308CF565F /* SentryThread.m */; }; - DC0F0CEF56886103CEF4048EF80C72DF /* WKSecurityOrigin.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9E44521577C540A3E9039681DA7CFB83 /* WKSecurityOrigin.swift */; }; - DC12CB519B640F024D221DCEA57B8B18 /* StoragePermissionStrategy.m in Sources */ = {isa = PBXBuildFile; fileRef = 1947013809725794409F0DA5FEAE3537 /* StoragePermissionStrategy.m */; }; - DC13AB3C8BA88278F3DC90362855D45E /* SwiftMobileScannerPlugin.swift in Sources */ = {isa = PBXBuildFile; fileRef = 10374FD89775961D2C3FE28F78A0E830 /* SwiftMobileScannerPlugin.swift */; }; - DC168EC4AF7A93BE0E4FD327ADF7DE8D /* InAppWebViewOptions.swift in Sources */ = {isa = PBXBuildFile; fileRef = 09AECB420E5CD13406B4EF8C977FCED2 /* InAppWebViewOptions.swift */; }; + DC2F1DEDA85F466080C9E727AEB00888 /* LocationPermissionStrategy.h in Headers */ = {isa = PBXBuildFile; fileRef = F8675F43CB9C658FC0B29390FA0563F6 /* LocationPermissionStrategy.h */; settings = {ATTRIBUTES = (Public, ); }; }; DC7A05B796396F8A1469A81D3A90E5A4 /* SentryCrashIsAppImage.h in Headers */ = {isa = PBXBuildFile; fileRef = 20B4B5ADF0E6BC94D9D45FA5E40997C8 /* SentryCrashIsAppImage.h */; settings = {ATTRIBUTES = (Project, ); }; }; - DC95AC5E2542C29C60F4CE9B1036F201 /* GoogleUtilitiesComponents-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 0FCD88646EB517501FB94E952A18D859 /* GoogleUtilitiesComponents-dummy.m */; }; DCA442F479737B8F0812579F8CC1445D /* SentrySamplingProfiler.hpp in Headers */ = {isa = PBXBuildFile; fileRef = B8B4EB41535ADBD05323EDE9564F6496 /* SentrySamplingProfiler.hpp */; settings = {ATTRIBUTES = (Project, ); }; }; DCC0B29C4EC02FE30E2DA5B5CEA505E1 /* StringExtensions.swift in Sources */ = {isa = PBXBuildFile; fileRef = 44DEC3FE8179F57C8F145934C1D864CF /* StringExtensions.swift */; }; DCCF1027CE6131A8EE633569AD408CA7 /* SentryBreadcrumb.h in Headers */ = {isa = PBXBuildFile; fileRef = E48DBAE9707BAB2CA5CA1748C26E6ED5 /* SentryBreadcrumb.h */; settings = {ATTRIBUTES = (Public, ); }; }; DCDE10B38A03EFD30AD170DE9F9539E1 /* SentryCrashDefaultMachineContextWrapper.h in Headers */ = {isa = PBXBuildFile; fileRef = BFC2DD4525FBC224B6113DA0C6418E31 /* SentryCrashDefaultMachineContextWrapper.h */; settings = {ATTRIBUTES = (Project, ); }; }; - DD175F78193D01B011615B819CF15B0D /* GULSecureCoding.m in Sources */ = {isa = PBXBuildFile; fileRef = EF11869F11EE0F321FA2359A6155F87C /* GULSecureCoding.m */; }; - DD7F1BA45BC1A7126F61EAEC820F7643 /* GTMDefines.h in Headers */ = {isa = PBXBuildFile; fileRef = 0AB9AD35C4BCCC119216B7F1F77863C4 /* GTMDefines.h */; settings = {ATTRIBUTES = (Public, ); }; }; + DD3B7BEC3142A8B7C35932EC27B32E97 /* FBLPromise+Then.m in Sources */ = {isa = PBXBuildFile; fileRef = C37136D6D808A12F1C178429ADC3A037 /* FBLPromise+Then.m */; }; + DDA6753607BA420236BD7D3B0F7BA0E5 /* BluetoothPermissionStrategy.m in Sources */ = {isa = PBXBuildFile; fileRef = 047F06E61EC2942DA212BD96E97059FD /* BluetoothPermissionStrategy.m */; }; + DDA8ECEF35393325DEC1E86D28250FF5 /* PhonePermissionStrategy.m in Sources */ = {isa = PBXBuildFile; fileRef = AB9CCB6E2B6AE39C86053769F4D6190C /* PhonePermissionStrategy.m */; }; DE04FF032A894DAB6F92BF54E7FD3F97 /* EncodeMetrics.swift in Sources */ = {isa = PBXBuildFile; fileRef = C953AAEE5CC55047CF529929945BA680 /* EncodeMetrics.swift */; }; DE48B2661F5A7C74CB967160BD05506F /* SentryTimeToDisplayTracker.h in Headers */ = {isa = PBXBuildFile; fileRef = 0697E911C97E70B9C8FDE4884AE43D36 /* SentryTimeToDisplayTracker.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DE510D3F934D2E0315D885C12CDA997E /* GULNetworkInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = 0F0A8173A61664BB714BE2F8560DC4E4 /* GULNetworkInfo.h */; settings = {ATTRIBUTES = (Public, ); }; }; DE682BA1757FECB60F140034E01875A5 /* NSLocale+Sentry.m in Sources */ = {isa = PBXBuildFile; fileRef = 9669BDF29FA62C4E07DF3AC118F5A7B5 /* NSLocale+Sentry.m */; }; - DEB0E12F5F4FFD08C58036613E55B53B /* shared_preferences_foundation-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 9A90EA1C1A9C162CB5C6CC29C38969E1 /* shared_preferences_foundation-dummy.m */; }; - DEB9AC37F9CDD3F16C39224BF21A9994 /* FLTImagePickerPhotoAssetUtil.h in Headers */ = {isa = PBXBuildFile; fileRef = B58CC1F88925718FAE66E9D39ADB6D5A /* FLTImagePickerPhotoAssetUtil.h */; settings = {ATTRIBUTES = (Public, ); }; }; + DEB0E12F5F4FFD08C58036613E55B53B /* shared_preferences_foundation-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = C9F72EF56A02B79911A1752DC4DC3B92 /* shared_preferences_foundation-dummy.m */; }; + DF178432E5ECC85D8FD22FE4F823C9D0 /* GULKeychainStorage.m in Sources */ = {isa = PBXBuildFile; fileRef = 62246A4F0A02545B4921EBB9BE09F33D /* GULKeychainStorage.m */; }; + DF46BC109E67BF701A059352C8FA12EA /* FLTImagePickerMetaDataUtil.m in Sources */ = {isa = PBXBuildFile; fileRef = E61EFE537889E07B6DA8DB319EDD6503 /* FLTImagePickerMetaDataUtil.m */; }; DF82C69B0A08E13138EA109F2BA3562B /* SentryReplayOptions.swift in Sources */ = {isa = PBXBuildFile; fileRef = 02B02C3CB88B7226539ABB58E4C8EC2A /* SentryReplayOptions.swift */; }; + DF83936C82AB05A1E884EE1AF83C61A4 /* FBLPromise+Delay.h in Headers */ = {isa = PBXBuildFile; fileRef = 1335EE0DA99A5CEFD960E89A390F37C0 /* FBLPromise+Delay.h */; settings = {ATTRIBUTES = (Public, ); }; }; DFC87AC1EB049865E656AC54AB382162 /* SentryFileIOTrackingIntegration.m in Sources */ = {isa = PBXBuildFile; fileRef = 8CEC699F673BB5D86F5AB6A0F4539E52 /* SentryFileIOTrackingIntegration.m */; }; DFC980FC3D58DBB1E5CB9471FAC2BAA0 /* GDTCOREndpoints_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = B7ED59AA489AA03F8FFB687CE911985C /* GDTCOREndpoints_Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; - DFD6E5DD3B6EDA978122370C978C3571 /* SentryFlutter.swift in Sources */ = {isa = PBXBuildFile; fileRef = 401827771E4016874D7DE89B02902FDD /* SentryFlutter.swift */; }; E030E9B2658F7FDE19D93ACFBA12C016 /* SentryCrashStackCursor_SelfThread.h in Headers */ = {isa = PBXBuildFile; fileRef = 5340AA246216CC0485F0A2DB3406D5BC /* SentryCrashStackCursor_SelfThread.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E05331AA659D4A4C133E0C4E5903D110 /* PlatformUtil.swift in Sources */ = {isa = PBXBuildFile; fileRef = EA2EE51D1EF6A22D2258A4C0A70F4919 /* PlatformUtil.swift */; }; - E0A07F9E0C6911A671E384D292917476 /* SqfliteOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = 8C5404D827B852FF23326E64299A010C /* SqfliteOperation.m */; }; + E07C028439517FE0C26204593F8E6F66 /* WKUserContentController.swift in Sources */ = {isa = PBXBuildFile; fileRef = FBB7AF13154D32DBBBA1410AE29859B3 /* WKUserContentController.swift */; }; E12CE8AAB4854E36C9F486A09A02B128 /* SentrySystemEventBreadcrumbs.h in Headers */ = {isa = PBXBuildFile; fileRef = 101411F6DAA29F227BEB9B655D020700 /* SentrySystemEventBreadcrumbs.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E13603576F34624CC0ACD091818AAC02 /* GTMNSDictionary+URLArguments.m in Sources */ = {isa = PBXBuildFile; fileRef = 61DAAD690E768959F7A59ED1E8B1AF11 /* GTMNSDictionary+URLArguments.m */; }; E143E338D18F915560CF4CC5C6D3AFF0 /* SentryReplayEvent.h in Headers */ = {isa = PBXBuildFile; fileRef = D55819869C4008C89693421FE6596937 /* SentryReplayEvent.h */; settings = {ATTRIBUTES = (Project, ); }; }; E14B50F1D67D2ED0752189AD0BD30E1E /* SentryWatchdogTerminationTrackingIntegration.h in Headers */ = {isa = PBXBuildFile; fileRef = 3263FB876272A8B5BF47832E5E847BE9 /* SentryWatchdogTerminationTrackingIntegration.h */; settings = {ATTRIBUTES = (Project, ); }; }; E157720BE4E6C1F1220ADF42977FC735 /* SentryCrashDefaultBinaryImageProvider.h in Headers */ = {isa = PBXBuildFile; fileRef = 9E7B7C8773A0F8C48BEF1A8D045DFB88 /* SentryCrashDefaultBinaryImageProvider.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E194C9ADE72768A5CD36C78E9F3AE0E4 /* FPPPackageInfoPlusPlugin.h in Headers */ = {isa = PBXBuildFile; fileRef = CF1E0666638FB449BBC958A528C36A77 /* FPPPackageInfoPlusPlugin.h */; settings = {ATTRIBUTES = (Public, ); }; }; E1AAF49B9D5D419544476462E1FA2F57 /* SentryCrashReport.c in Sources */ = {isa = PBXBuildFile; fileRef = 56A69A0A45EA53F12284538FDBBD233D /* SentryCrashReport.c */; }; - E2084B463264AEF57CEECFA065134105 /* PullToRefreshOptions.swift in Sources */ = {isa = PBXBuildFile; fileRef = 902744467056368FAE68E9A0E928ADAF /* PullToRefreshOptions.swift */; }; + E21BF072F941C82458A01FEE48D3D2D0 /* SqfliteDarwinDB.h in Headers */ = {isa = PBXBuildFile; fileRef = 1C4E920D8B793EA0076FE4A24106A39F /* SqfliteDarwinDB.h */; settings = {ATTRIBUTES = (Public, ); }; }; + E2318C762082E3D2E74957371B4A6C2C /* GTMMethodCheck.h in Headers */ = {isa = PBXBuildFile; fileRef = CFCB36653BB0F12C8015257A8DBDF8B4 /* GTMMethodCheck.h */; settings = {ATTRIBUTES = (Public, ); }; }; E2368A0DED392444AE50A9C0C759E6B2 /* GDTCORTransport_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 712E2FA08D4EE03186E2A92F616C9527 /* GDTCORTransport_Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E2624A04674AEEBD9D1796FECA1C5A39 /* Codec.m in Sources */ = {isa = PBXBuildFile; fileRef = 8AC7B3F81B45D5D6EBB4D5D685D05722 /* Codec.m */; }; - E2E6C647DE91BE0EBB8B84B44E073D14 /* WebView.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = C147C26EE91FED520C3B9FF4E8C4CA77 /* WebView.storyboard */; }; - E2E73767427C62E5989A4176D437E281 /* PermissionHandlerPlugin.h in Headers */ = {isa = PBXBuildFile; fileRef = BBD453494BB2BAE0608686C9BB87C0BD /* PermissionHandlerPlugin.h */; settings = {ATTRIBUTES = (Public, ); }; }; - E344770F6046CD824F3B3468B2CFDAC7 /* messages.g.h in Headers */ = {isa = PBXBuildFile; fileRef = 4D77B6557406A6E126288B744AEF66C6 /* messages.g.h */; settings = {ATTRIBUTES = (Public, ); }; }; + E2AA5C0FD3AC647B0517175D59068FA0 /* GULHeartbeatDateStorage.h in Headers */ = {isa = PBXBuildFile; fileRef = A4C3538AB734BE0A6C8917BFF82E0EC6 /* GULHeartbeatDateStorage.h */; settings = {ATTRIBUTES = (Public, ); }; }; + E314CCEE1EF4B1E2FA175BB2D4C140D0 /* InterceptAjaxRequestJS.swift in Sources */ = {isa = PBXBuildFile; fileRef = 76DF1E74961355D91ADBCD218AA47591 /* InterceptAjaxRequestJS.swift */; }; E36118821B07DE48025BEF6FC3CDD3B3 /* SentryClientReport.m in Sources */ = {isa = PBXBuildFile; fileRef = 190AC42255EA672A61B74096235AB92A /* SentryClientReport.m */; }; - E3A311149AF0B0563F18B9D7F759B821 /* PrivacyInfo.xcprivacy in Resources */ = {isa = PBXBuildFile; fileRef = 13CA0401AEFD3CDD9FA791F4FECA251E /* PrivacyInfo.xcprivacy */; }; - E3A9F4211DE8FA981292C36BA07A8351 /* HttpAuthenticationChallenge.swift in Sources */ = {isa = PBXBuildFile; fileRef = E8A8FAB9D58C8D7FB7519ABB29B92088 /* HttpAuthenticationChallenge.swift */; }; + E36560EF0E5C5370564729EFD7018774 /* OnWindowBlurEventJS.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1C971C3735633EE7FDAEE71AADDBCAFF /* OnWindowBlurEventJS.swift */; }; + E36E56086C928534587BAA3BD62D517B /* PrivacyInfo.xcprivacy in Resources */ = {isa = PBXBuildFile; fileRef = E9AC06F6A1479E75E5C1AF0926AB96F3 /* PrivacyInfo.xcprivacy */; }; E3AD042B1AB0795AD1A970FF2897CAAF /* SentryDateUtil.h in Headers */ = {isa = PBXBuildFile; fileRef = 0ADB1EBCA156C101DE6A4947791BD671 /* SentryDateUtil.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E3C66AABD13420063DBE79BFD9AD39AA /* GTMNSData+zlib.m in Sources */ = {isa = PBXBuildFile; fileRef = 6E7BD82EA8128B9741DA5CD53B5F7211 /* GTMNSData+zlib.m */; }; E3CFC9DA386BAE49460CD05EAE765127 /* SentrySwift.h in Headers */ = {isa = PBXBuildFile; fileRef = 058C6DB64792C2B28D4B00A27C7D7BAC /* SentrySwift.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E427389F21E5F6A915DDB0CB5F598AF6 /* IntegrationTestPlugin.m in Sources */ = {isa = PBXBuildFile; fileRef = B9AEE5935E74684FC5EC812779D8BDB7 /* IntegrationTestPlugin.m */; }; E4338C141B7777D87687E5D38FEE81E6 /* SentryQueueableRequestManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 35FE09F7B11B47BD5B18A3E1C4EF2AB7 /* SentryQueueableRequestManager.m */; }; E481FF54A52EF9858520105C586E9176 /* SentryUser.h in Headers */ = {isa = PBXBuildFile; fileRef = E9AC41459A20C020CD398D86C757A23B /* SentryUser.h */; settings = {ATTRIBUTES = (Public, ); }; }; E49F04D2AA7B992FF63ADD68FE4146F8 /* SentryThreadState.hpp in Headers */ = {isa = PBXBuildFile; fileRef = DE53F4F80DBECC484467B4DDD3144679 /* SentryThreadState.hpp */; settings = {ATTRIBUTES = (Project, ); }; }; E4C1A7112B3F87FFDC305C44E5483F45 /* SentryMechanism.m in Sources */ = {isa = PBXBuildFile; fileRef = 07440C8B6B6768F6216C2FC2EC534536 /* SentryMechanism.m */; }; - E4CD9C834390CD064607753306815FC4 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = BAE27CDB4E2E589B1AC89F06DE3D7D04 /* Foundation.framework */; }; E4D74C8FA380613329A527205251D72B /* SentryTimeToDisplayTracker.m in Sources */ = {isa = PBXBuildFile; fileRef = 951E0989539E7A1E2469E3D2C425D6E7 /* SentryTimeToDisplayTracker.m */; }; - E4EDA7D56FE451825F2ED414DAE8E724 /* GoogleUtilities-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 470FA4603D06EF02747F126F7B9749F5 /* GoogleUtilities-dummy.m */; }; E520F7558300DF945170443A9A6141B3 /* SentryLaunchProfiling.h in Headers */ = {isa = PBXBuildFile; fileRef = 73F87F63ACCA120DFE3EBD3848C5E818 /* SentryLaunchProfiling.h */; settings = {ATTRIBUTES = (Project, ); }; }; E583BD2AECAA5FDF0D59221315C92201 /* SentryBacktrace.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A4A7A8E537B0B6CF0C592EB05F60D141 /* SentryBacktrace.cpp */; }; E59B729962488CEF1CB78FFA5AE1A478 /* SentryFileManager.m in Sources */ = {isa = PBXBuildFile; fileRef = FE7EC2DEC1397650248A42AB64D4CF94 /* SentryFileManager.m */; }; + E59BF85F36F75615821CD62F5D13381B /* BackgroundRefreshStrategy.m in Sources */ = {isa = PBXBuildFile; fileRef = 5AAFCE5D453CBDFE560F41DEF7D746DD /* BackgroundRefreshStrategy.m */; }; + E5A1D40C137FFF17A3E746B6636AE637 /* PhotoPermissionStrategy.h in Headers */ = {isa = PBXBuildFile; fileRef = 44D265B00034636200F304E3CF6B5256 /* PhotoPermissionStrategy.h */; settings = {ATTRIBUTES = (Public, ); }; }; E618DD2A52900A5A7755D9BB5C5A78B5 /* Sentry-Sentry in Resources */ = {isa = PBXBuildFile; fileRef = 2F194FCABAEDAB823F9B72AF05D34561 /* Sentry-Sentry */; }; E61A4A08C38DB931515826CA3A5D68D7 /* SentryBreadcrumb.m in Sources */ = {isa = PBXBuildFile; fileRef = 50886E5C0F842D1E24BDA7B90C8EA595 /* SentryBreadcrumb.m */; }; E63095EF872F311045FFD3512902BCC7 /* image_picker_ios-image_picker_ios_privacy in Resources */ = {isa = PBXBuildFile; fileRef = F0C7EFBFF01CFAAB52BA74E6CB40CE2C /* image_picker_ios-image_picker_ios_privacy */; }; - E63595F0FE654F43B2B9776994D8B162 /* InAppWebViewStatic.swift in Sources */ = {isa = PBXBuildFile; fileRef = 73FB64E4F71FF6480A0D9C1E23FFCD6B /* InAppWebViewStatic.swift */; }; + E68277C11FE964EF8B565915DCFB355E /* PullToRefreshDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = DA8C511EFE41E12353A86C2B0678166C /* PullToRefreshDelegate.swift */; }; + E6ABB6BE69B4A59F90D62FA4D6214913 /* NotificationPermissionStrategy.m in Sources */ = {isa = PBXBuildFile; fileRef = 9F116BCA4D417E4EB826B96627A0202B /* NotificationPermissionStrategy.m */; }; E6D93F634A786D72E9C6024FCB9A8476 /* SentryRandom.h in Headers */ = {isa = PBXBuildFile; fileRef = 382F0C3B77644998E339657E5C0B81F2 /* SentryRandom.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E7D97887733AC7B40B994CBF3FCBC338 /* PathProviderPlugin.swift in Sources */ = {isa = PBXBuildFile; fileRef = 33834ABA21FF48866562114BFE476176 /* PathProviderPlugin.swift */; }; + E754A43901B62DBC6003E258D1B60D99 /* FlutterEmailSenderPlugin.h in Headers */ = {isa = PBXBuildFile; fileRef = 29932A56BCEFC69115E723A7ED8D75A2 /* FlutterEmailSenderPlugin.h */; settings = {ATTRIBUTES = (Public, ); }; }; + E7917AA4BFD47A56F708B83E72E94BD5 /* GoogleUtilities-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 470FA4603D06EF02747F126F7B9749F5 /* GoogleUtilities-dummy.m */; }; + E7C7D8698CF54C59EC13A75C92A67754 /* FLTIntegrationTestRunner.m in Sources */ = {isa = PBXBuildFile; fileRef = A0583590F67DD5FBC5DDD1B23E2EA954 /* FLTIntegrationTestRunner.m */; }; E7DB48906612D0DA8703636ECA19BE51 /* SentryCrashJSONCodecObjC.h in Headers */ = {isa = PBXBuildFile; fileRef = 095B6C804AC1BB0A8986EFC60AB3066A /* SentryCrashJSONCodecObjC.h */; settings = {ATTRIBUTES = (Project, ); }; }; E80BE9328C65B0938AD680BAD69B9CE7 /* SentryThreadMetadataCache.hpp in Headers */ = {isa = PBXBuildFile; fileRef = B7FEDF2A24CF76BFB3ED477929453972 /* SentryThreadMetadataCache.hpp */; settings = {ATTRIBUTES = (Project, ); }; }; - E81CAD7A450E91627CEDB636E4A62E6D /* flutter_inappwebview-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 9A38D14397A37F7C4079202D77A7F84D /* flutter_inappwebview-dummy.m */; }; + E81CAD7A450E91627CEDB636E4A62E6D /* flutter_inappwebview-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 76C8BAB2063A8189C614816BF11C99DE /* flutter_inappwebview-dummy.m */; }; + E81E9334A3615410FABD0C543440DBF9 /* PrivacyInfo.xcprivacy in Resources */ = {isa = PBXBuildFile; fileRef = 3057C7E05D7A5607565A9921C7033648 /* PrivacyInfo.xcprivacy */; }; E8262C2509ADDC6AADEA4FFE618834B7 /* SentryCrashMonitorType.h in Headers */ = {isa = PBXBuildFile; fileRef = 9DBD2255B090E24AD6FEDA3C7636C530 /* SentryCrashMonitorType.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E8B67EDBAD1B5C10F12C7E037F486C81 /* PhonePermissionStrategy.m in Sources */ = {isa = PBXBuildFile; fileRef = 7546D07E10913A6EEE0D2CA7DEC2CC3D /* PhonePermissionStrategy.m */; }; - E903B97A915462A6849DFF7DD5CED3AA /* flutter_email_sender-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 194B408ABAD03A1FEF4AC4F0201DB0F4 /* flutter_email_sender-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; - E9AD61F3A3D9C1CD6216EFE20C8A5F59 /* GULURLSessionDataResponse.h in Headers */ = {isa = PBXBuildFile; fileRef = AAB9A991483AEA4F2332477EE062750F /* GULURLSessionDataResponse.h */; settings = {ATTRIBUTES = (Public, ); }; }; - EAAA8B890697211604C378224734C457 /* GTMNSString+URLArguments.m in Sources */ = {isa = PBXBuildFile; fileRef = 73881566268BC5B9957F3B60B806739F /* GTMNSString+URLArguments.m */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; + E903B97A915462A6849DFF7DD5CED3AA /* flutter_email_sender-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = C66BCB9A4609E95B4E614ACE31A5AE7A /* flutter_email_sender-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; + E991268CD49C4F71EFE2E11C3AA8178F /* WebViewTransport.swift in Sources */ = {isa = PBXBuildFile; fileRef = B7A5D8D0377A2F02CE05F88B11A2F267 /* WebViewTransport.swift */; }; + E996FB5DAF0E0955A47DBA86E04D324A /* FlutterWebViewFactory.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5F23FC03974C64BA2BCCC5C23D1A74A2 /* FlutterWebViewFactory.swift */; }; + EA7CFE305DA2D5DA213A21D7DBA0DCE3 /* URLResponse.swift in Sources */ = {isa = PBXBuildFile; fileRef = C03D230CB9956E831A2EFB279C7579CA /* URLResponse.swift */; }; EAD4A8F87DE5B1DB4D11F1ABE6AFBEB3 /* url_launcher_ios-url_launcher_ios_privacy in Resources */ = {isa = PBXBuildFile; fileRef = DBA6F34C072B134D3BE38983776DD1C3 /* url_launcher_ios-url_launcher_ios_privacy */; }; EAD64F79BBC36A226AD84FC17BE7D0BE /* SentryCrashIntegration.h in Headers */ = {isa = PBXBuildFile; fileRef = 4C358CAC3F5FB2E9EF9C49203FB9D318 /* SentryCrashIntegration.h */; settings = {ATTRIBUTES = (Project, ); }; }; - EB1AC285C80FF8E829E942088539B48E /* WKContentWorld.swift in Sources */ = {isa = PBXBuildFile; fileRef = F660CCD8BC9A6F575CDC895206D0614B /* WKContentWorld.swift */; }; EB5BA305909E5E2A01AE61914429713A /* SentryOptions+HybridSDKs.h in Headers */ = {isa = PBXBuildFile; fileRef = 9DC57098DA3F5764C882A19480B82E12 /* SentryOptions+HybridSDKs.h */; settings = {ATTRIBUTES = (Public, ); }; }; EB8B92DCD0B48B48BE931A791601CE72 /* SentryNSNotificationCenterWrapper.m in Sources */ = {isa = PBXBuildFile; fileRef = 52B97791BCA9AA562121AE91D7549B9B /* SentryNSNotificationCenterWrapper.m */; }; - EBAF65777381472A48F662717202B3A6 /* pb_common.h in Headers */ = {isa = PBXBuildFile; fileRef = F72515A1FEFA1572FD31C19A42121996 /* pb_common.h */; settings = {ATTRIBUTES = (Public, ); }; }; EBD8FB815A5AE0B4D4A71CB1ADE7C309 /* SentryFileContents.h in Headers */ = {isa = PBXBuildFile; fileRef = C42F9958CE56F0C6A49FDCCCD7A634AE /* SentryFileContents.h */; settings = {ATTRIBUTES = (Project, ); }; }; EC9AF1CC3159790AD60DF550FA7CED88 /* SentryRetryAfterHeaderParser.m in Sources */ = {isa = PBXBuildFile; fileRef = 8F46858641530EE8AEDD243AA4AEA943 /* SentryRetryAfterHeaderParser.m */; }; ECB731B22C866C9A23CC2EE9F87ED9A1 /* SentrySampleDecision.h in Headers */ = {isa = PBXBuildFile; fileRef = F65C239A4A0D793DE746BFA1277F0CE5 /* SentrySampleDecision.h */; settings = {ATTRIBUTES = (Public, ); }; }; ECDC44AF4618DFB829FD34858963E298 /* SentryCrashMonitorContext.h in Headers */ = {isa = PBXBuildFile; fileRef = DAC2817E3D0BE793F6FF83B79E5C2228 /* SentryCrashMonitorContext.h */; settings = {ATTRIBUTES = (Project, ); }; }; ECE747922E2992767791FB1EBC096508 /* SentryCrashVarArgs.h in Headers */ = {isa = PBXBuildFile; fileRef = F82BC414E18051E5867917D74E969C03 /* SentryCrashVarArgs.h */; settings = {ATTRIBUTES = (Project, ); }; }; ECEF4EC0A76E8968E5E2E93EB1D1E71E /* SentryNetworkTracker.h in Headers */ = {isa = PBXBuildFile; fileRef = 7DF9EDBE75999D19282F27C122D71132 /* SentryNetworkTracker.h */; settings = {ATTRIBUTES = (Project, ); }; }; - ED0BC965E7D14A26D9BE815C0BD7272D /* EnforceBundling.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1879F0A7540831E7D2AC7D9DDF37F2B5 /* EnforceBundling.swift */; }; + ECF0D0633A5DF868D965AF72C695CB01 /* FBLPromise+Race.h in Headers */ = {isa = PBXBuildFile; fileRef = 6EA5C374EE6EAA132A09D9DACFDA6118 /* FBLPromise+Race.h */; settings = {ATTRIBUTES = (Public, ); }; }; + ED07A74137CA958717BCEE1479E66639 /* image_picker_ios-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = DACDC4BCC71788BE60EF92C274D0CFC0 /* image_picker_ios-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; ED550113ED2561A4DCFF628CA3924CD4 /* SentryAppStartMeasurement.h in Headers */ = {isa = PBXBuildFile; fileRef = D3E9B58B1F5EC491D2307F71D8DCC1D7 /* SentryAppStartMeasurement.h */; settings = {ATTRIBUTES = (Public, ); }; }; ED7F612893D7512E2BAF92743C630363 /* GDTCORFlatFileStorage+Promises.m in Sources */ = {isa = PBXBuildFile; fileRef = 99AE3A978D24F6AB77E4A4B84CE5B33C /* GDTCORFlatFileStorage+Promises.m */; }; EDBFDAAA5E06EE38D55724C240325201 /* SentryCrashJSONCodec.c in Sources */ = {isa = PBXBuildFile; fileRef = 809C56CC73F77477A5DA91429B4D1993 /* SentryCrashJSONCodec.c */; }; EDD5F8450CBA17B3C69402C66F24141E /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = BAE27CDB4E2E589B1AC89F06DE3D7D04 /* Foundation.framework */; }; EDD609B909A352C46254873534C764AB /* SentryStacktrace.m in Sources */ = {isa = PBXBuildFile; fileRef = F1F46D898C30F6CC9869877848C87734 /* SentryStacktrace.m */; }; - EDF5F2A0C458EB5166C3C2A311794B08 /* GULKeychainStorage.h in Headers */ = {isa = PBXBuildFile; fileRef = F98F96A7C075AC6F4B2037504F5C0321 /* GULKeychainStorage.h */; settings = {ATTRIBUTES = (Public, ); }; }; EDFE90FFB4EF60B812400F2178CA9C5A /* SentryNSURLSessionTaskSearch.h in Headers */ = {isa = PBXBuildFile; fileRef = C37BD2DCBBEC7D2763E5D93035C4F698 /* SentryNSURLSessionTaskSearch.h */; settings = {ATTRIBUTES = (Project, ); }; }; - EDFF2EA307E22A96AC1BD3008C64532B /* messages.g.m in Sources */ = {isa = PBXBuildFile; fileRef = 229207B0BCF93F9BE4844A97B8EADA13 /* messages.g.m */; }; EE9C2F9AA5E545C370AE602E65DE300C /* NSMutableDictionary+Sentry.h in Headers */ = {isa = PBXBuildFile; fileRef = 7FE916F5C23E226CE433EDDD26B772CB /* NSMutableDictionary+Sentry.h */; settings = {ATTRIBUTES = (Project, ); }; }; EED82645F235AF62D33C8B017640F7AC /* SentryCrashStackCursor.h in Headers */ = {isa = PBXBuildFile; fileRef = 6DF6839989319A17E0304C0B91DF3B77 /* SentryCrashStackCursor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + EEDB79679A354FD57AE20C202CC9BDA2 /* pb_decode.c in Sources */ = {isa = PBXBuildFile; fileRef = 5BC0650D481B6EFD806654B3DB150F71 /* pb_decode.c */; settings = {COMPILER_FLAGS = "-fno-objc-arc -fno-objc-arc"; }; }; EEE8A7781DF96A5677EBB18C407B4980 /* SentryEnvelopeItemType.h in Headers */ = {isa = PBXBuildFile; fileRef = 88AE6EE2ED1036E8A093715F5C0DFAC7 /* SentryEnvelopeItemType.h */; settings = {ATTRIBUTES = (Public, ); }; }; - EEEFD3F95451FFFDE6924F02333487A1 /* ClientCertChallenge.swift in Sources */ = {isa = PBXBuildFile; fileRef = FA0DD163EC52D45E22B5B2832002F3B2 /* ClientCertChallenge.swift */; }; EF1F3935E2BD1524B8A3B86D18D8EBE9 /* SentryDefaultObjCRuntimeWrapper.h in Headers */ = {isa = PBXBuildFile; fileRef = 48F15FD0FC51E4EEDAE6EDE80EDD065F /* SentryDefaultObjCRuntimeWrapper.h */; settings = {ATTRIBUTES = (Project, ); }; }; EF5DB5118564083C34F122E80F179C6A /* SentryDefines.h in Headers */ = {isa = PBXBuildFile; fileRef = FB97A34D461A2E8D6FF382B7E78FD756 /* SentryDefines.h */; settings = {ATTRIBUTES = (Public, ); }; }; + EFC066A95D75F68BC790E76C7544A89E /* WindowIdJS.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0E3E953DD36433BBB2B7A736009B7736 /* WindowIdJS.swift */; }; + EFE515763DE539243921F113BAF8F7AA /* HeadlessInAppWebView.swift in Sources */ = {isa = PBXBuildFile; fileRef = A5632ED708300AA1363BFCF6B010FBBD /* HeadlessInAppWebView.swift */; }; EFFFA95AD93CEC2EFC2D89303136E098 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = BAE27CDB4E2E589B1AC89F06DE3D7D04 /* Foundation.framework */; }; F01779D7580C5078BCAA977E92251BFA /* SentryLogOutput.h in Headers */ = {isa = PBXBuildFile; fileRef = 591DC8FE50CC93749C6A81FDEA73C728 /* SentryLogOutput.h */; settings = {ATTRIBUTES = (Project, ); }; }; F02C99D45012A0BD259FCE1F36121F51 /* GDTCORPlatform.h in Headers */ = {isa = PBXBuildFile; fileRef = 2C5F93DF62552CE905F8AA77269725DA /* GDTCORPlatform.h */; settings = {ATTRIBUTES = (Project, ); }; }; F0A7BC07792C51C700CC0651D67A1551 /* SentryUIViewControllerSwizzling.h in Headers */ = {isa = PBXBuildFile; fileRef = 3B5E78612D6AB76CAA75DA33725629D9 /* SentryUIViewControllerSwizzling.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F0F43138FDDFB236F2EF5BAD61D46118 /* WebMessageListener.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3D14AB2A5EC9199FB00C56394DAA2A4A /* WebMessageListener.swift */; }; F0F875FE813EC0BF05B2FE8572FF6A5D /* SentrySDK.h in Headers */ = {isa = PBXBuildFile; fileRef = 81DD44B695F99DBE9DCBEFC87D4DC82D /* SentrySDK.h */; settings = {ATTRIBUTES = (Public, ); }; }; F0F87CE9DB16FFCEF213F6234A3AF49D /* GDTCORStorageProtocol.h in Headers */ = {isa = PBXBuildFile; fileRef = DA7597686AFD305E360D9E51DEF7A601 /* GDTCORStorageProtocol.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F10CC180DEA7BC505E69294DEC56EBF5 /* Launcher.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0399E5A90DDB82EA9AF62B4590048A63 /* Launcher.swift */; }; F170EB81EB2DF69E64F4E130C8A6A9BC /* SentryCPU.h in Headers */ = {isa = PBXBuildFile; fileRef = F265E7CD3AFD8245DD336932322128E3 /* SentryCPU.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F174B5F5F53546FF4BF642A3C5BA5E4B /* PluginScriptsUtil.swift in Sources */ = {isa = PBXBuildFile; fileRef = A11FDB2BA7D2D12BDD8D969E4CC4BCA0 /* PluginScriptsUtil.swift */; }; F1999DB01AF236F9CD465C88E64874FC /* SentryMetricsClient.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4BC674FB97FBBEAFA472C5D742173423 /* SentryMetricsClient.swift */; }; + F1C7A231E66B61C7D78B9DE512119CA9 /* InAppWebView.swift in Sources */ = {isa = PBXBuildFile; fileRef = A2FC3F8189391939C417366E38B826E3 /* InAppWebView.swift */; }; F1DF5ED33099696B4CCD5A1ECD04F827 /* GDTCORMetricsMetadata.h in Headers */ = {isa = PBXBuildFile; fileRef = 73D5D36DAA98076C1BD2768BE0EA13F0 /* GDTCORMetricsMetadata.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F23354F6B755BCE79BF516F5D43C7C89 /* StoragePermissionStrategy.m in Sources */ = {isa = PBXBuildFile; fileRef = 084CA2C1F3E73809901284C0BFBAC50D /* StoragePermissionStrategy.m */; }; F279ABDC292C236A1BF81BD7B9258070 /* SentryExtraContextProvider.m in Sources */ = {isa = PBXBuildFile; fileRef = 7D3B993666EC1DC66A9816A4A9B5C91E /* SentryExtraContextProvider.m */; }; F2CA6176605CC8FDCFBFA6910B892B13 /* SentryThreadInspector.m in Sources */ = {isa = PBXBuildFile; fileRef = E99BAF9523554157A9FE59D9F338B979 /* SentryThreadInspector.m */; }; F2F2ACD1B2BD88DC8E218537591F8F13 /* SentryUserFeedback.m in Sources */ = {isa = PBXBuildFile; fileRef = F3A2BB2B059E45E2197808FED5215497 /* SentryUserFeedback.m */; }; + F30957A19E69300E6B83F19D9DCF1CFD /* GULURLSessionDataResponse.m in Sources */ = {isa = PBXBuildFile; fileRef = 3B467427E0F41F4F0001103849647353 /* GULURLSessionDataResponse.m */; }; F33A97B7709155D302E7FF86A92DE5A8 /* SentryDataCategoryMapper.m in Sources */ = {isa = PBXBuildFile; fileRef = D8F4D8AE9D3930906537E3557B52B7AB /* SentryDataCategoryMapper.m */; }; + F3AF5641716AA963446A8A3B1A736D34 /* SqfliteDarwinResultSet.h in Headers */ = {isa = PBXBuildFile; fileRef = E9556EF7F955C0412768DB4412A6D3F0 /* SqfliteDarwinResultSet.h */; settings = {ATTRIBUTES = (Public, ); }; }; F3BB4D09BCA1B259005B6A323CD61BCC /* SentryTracer+Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 087F337F75359AC59255B780EC773058 /* SentryTracer+Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; F3EE498C3FC5901137E5E85B05694A48 /* SentrySpanId.h in Headers */ = {isa = PBXBuildFile; fileRef = 9CB6AB7832B9DA2628F2A5F2E692460F /* SentrySpanId.h */; settings = {ATTRIBUTES = (Public, ); }; }; - F3FB29C0F82DCDF78B121311484AE6D4 /* GULCCComponentContainer.h in Headers */ = {isa = PBXBuildFile; fileRef = 02B5DFA38365FAD67EC2B664F7636559 /* GULCCComponentContainer.h */; settings = {ATTRIBUTES = (Public, ); }; }; F4378DB0EF91C02F4621E7DC247A79B6 /* GDTCORPlatform.m in Sources */ = {isa = PBXBuildFile; fileRef = FF4EBB3D3A0ECC5B888FC600B47CF801 /* GDTCORPlatform.m */; }; - F43ADDFAAB8AF56995EC6D3DB9EDD613 /* PermissionHandlerPlugin.m in Sources */ = {isa = PBXBuildFile; fileRef = F276C960211155621F8B61C3BE8AB306 /* PermissionHandlerPlugin.m */; }; F497418A4ECDFC75EC208A512C10CD00 /* SentryCrashCPU.c in Sources */ = {isa = PBXBuildFile; fileRef = F1F661193FA6F6F2DECEE21659AFF669 /* SentryCrashCPU.c */; }; - F4AD054181361F8B15BEE934AD0A2508 /* URLProtectionSpace.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2BA6122EA9114A8BAFCEDB3AEF8D1E4F /* URLProtectionSpace.swift */; }; F4D3CDDA763D36B614ECC4F01EC98E81 /* SentryAsynchronousOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = D5F27229ACA01AFB3D1B32E94806AC11 /* SentryAsynchronousOperation.h */; settings = {ATTRIBUTES = (Project, ); }; }; F513D1AB763BB1FD511B016C6C11BCB4 /* GDTCOREvent+GDTCCTSupport.h in Headers */ = {isa = PBXBuildFile; fileRef = 370F4EC4D6377811C6AC3E8A1A6310DC /* GDTCOREvent+GDTCCTSupport.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F58255F5F13159987BFACE1A0CF62BF2 /* BackgroundRefreshStrategy.h in Headers */ = {isa = PBXBuildFile; fileRef = 28B1E5D0B0ECEA6E548A39708825EC07 /* BackgroundRefreshStrategy.h */; settings = {ATTRIBUTES = (Public, ); }; }; + F53EF43BCAFFF914FCA79800EFBC17FC /* FBLPromise+Testing.h in Headers */ = {isa = PBXBuildFile; fileRef = A7FA95DB3ACE101008C0518C2D324A55 /* FBLPromise+Testing.h */; settings = {ATTRIBUTES = (Public, ); }; }; + F58846BAEEFF8EDA9F81531019F205EE /* WKWindowFeatures.swift in Sources */ = {isa = PBXBuildFile; fileRef = 23DA183388996AE4018A783DF68CE527 /* WKWindowFeatures.swift */; }; F5BF2315CF34215B1B458DD57F880A80 /* GDTCCTUploadOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = 1CDB51AB0562125B2DF6D35CD6711B41 /* GDTCCTUploadOperation.h */; settings = {ATTRIBUTES = (Project, ); }; }; F64E6A36D329747D2AF202602680DAAC /* GDTCORAssert.h in Headers */ = {isa = PBXBuildFile; fileRef = 402401A6D20767EC39F7484691A7E5E6 /* GDTCORAssert.h */; settings = {ATTRIBUTES = (Project, ); }; }; F66E057C0FBDBA301EF7CEC95A292E23 /* SentryBaseIntegration.m in Sources */ = {isa = PBXBuildFile; fileRef = 26DC2356281E0FDF58B22A98765B6EA0 /* SentryBaseIntegration.m */; }; F6A070BDF1A668FDD35DA23976ADB2AB /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = BAE27CDB4E2E589B1AC89F06DE3D7D04 /* Foundation.framework */; }; + F6B71E5493720F4ECE5E39939B126280 /* UnknownPermissionStrategy.h in Headers */ = {isa = PBXBuildFile; fileRef = 693045B9D1D77942BB85962EF30FA0FF /* UnknownPermissionStrategy.h */; settings = {ATTRIBUTES = (Public, ); }; }; + F6B944E59C0A9CA4E1112D90667954EE /* nanopb-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = DBC0D63D64ED539A6F33CFFD6BE1E7B9 /* nanopb-dummy.m */; }; F6EC24CC2FF6419F2072012A2A6A7E67 /* SentryAttachment.h in Headers */ = {isa = PBXBuildFile; fileRef = 415E744AEA6B8F09D810C897540822CB /* SentryAttachment.h */; settings = {ATTRIBUTES = (Public, ); }; }; F6FE31FB35BA126518EAA4095121357A /* SentryNSError.h in Headers */ = {isa = PBXBuildFile; fileRef = FCDE1713AED7BEBD5103914A1FCF47A2 /* SentryNSError.h */; settings = {ATTRIBUTES = (Public, ); }; }; - F7AB6EFFCEE3B99B7C42FCC011161485 /* InAppBrowserWebViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = D17AD2224FC0C364BEAE0DF83E8812A4 /* InAppBrowserWebViewController.swift */; }; F7D00AB877D72E3A6B657F7DF14E2669 /* SentryCrashSymbolicator.c in Sources */ = {isa = PBXBuildFile; fileRef = 1362538590AA6137736FBD60B45E65C0 /* SentryCrashSymbolicator.c */; }; + F7EB29CF691334F082DC591E8EAA7A0E /* FPPSharePlusPlugin.h in Headers */ = {isa = PBXBuildFile; fileRef = 64544785A7B215DCC22DE13B2D280280 /* FPPSharePlusPlugin.h */; settings = {ATTRIBUTES = (Public, ); }; }; + F83E11C7FABFF532CBB3013789D08FB3 /* FBLPromise+Do.h in Headers */ = {isa = PBXBuildFile; fileRef = 2A27A3C0047B792CAA7E198BD1D4852D /* FBLPromise+Do.h */; settings = {ATTRIBUTES = (Public, ); }; }; + F84638B81381B8A77442C905C90C7E69 /* WKFrameInfo.swift in Sources */ = {isa = PBXBuildFile; fileRef = 30F38060B875547295AC118922B6219B /* WKFrameInfo.swift */; }; F848745A7CE4927A620495FCE91C2E91 /* SentryRateLimitParser.h in Headers */ = {isa = PBXBuildFile; fileRef = B99E1AA0F258BBC539FB92A3DF618780 /* SentryRateLimitParser.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F84C0189048163E24ECC1F9F433AE49A /* IsAppEncrypted.h in Headers */ = {isa = PBXBuildFile; fileRef = 47AEED267729EF28C857BFD49B6901B6 /* IsAppEncrypted.h */; settings = {ATTRIBUTES = (Project, ); }; }; F86F60556DE850A3DA0AB2C33E188C72 /* SentryCrashReportConverter.m in Sources */ = {isa = PBXBuildFile; fileRef = A9BB17A80E057DEBDA1DFA4DD272F206 /* SentryCrashReportConverter.m */; }; - F87EFAB1A74BD1E094AA567A4AA1305F /* GULKeychainUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = 42A590E66E9E83BA695620C5B6ADE928 /* GULKeychainUtils.m */; }; + F8832417022CBAEB59C25E755DB961C1 /* AssistantPermissionStrategy.m in Sources */ = {isa = PBXBuildFile; fileRef = F4B35548980E21E935D2D42BB43476D4 /* AssistantPermissionStrategy.m */; }; + F8963B565B8B50C3EABE572A28E63C92 /* GULNetworkInfo.m in Sources */ = {isa = PBXBuildFile; fileRef = 9B439CA32CF823E9EEAC56C9870FDDF8 /* GULNetworkInfo.m */; }; + F8A8575A02941089BDBA27B4B1FC63B8 /* FLTImagePickerPlugin.h in Headers */ = {isa = PBXBuildFile; fileRef = 23876EBC4B1AAF5172EFEED5D6693224 /* FLTImagePickerPlugin.h */; settings = {ATTRIBUTES = (Public, ); }; }; F8B41C221F624774F724753E8182199A /* SentrySdkInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = FC4A1FD2776D78371A28222732FCB897 /* SentrySdkInfo.h */; settings = {ATTRIBUTES = (Project, ); }; }; F8FB57271D0D9AA429E3E0BD480C675D /* SentryCrashScopeObserver.h in Headers */ = {isa = PBXBuildFile; fileRef = F8AB892925D12A0F0CF93994868E4179 /* SentryCrashScopeObserver.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F909145365EF3AB657490A30CFB4BE0F /* SupportZoomJS.swift in Sources */ = {isa = PBXBuildFile; fileRef = CD2E0CA16CC75E0274DCBCBECFAC8B92 /* SupportZoomJS.swift */; }; - F9284D720ACB961028BFF4B6C7C1A33B /* EventPermissionStrategy.m in Sources */ = {isa = PBXBuildFile; fileRef = C6F640B1444F63E9EB462C361D050CBD /* EventPermissionStrategy.m */; }; F9315396C5B56777C97F0F1DDB042A5D /* SwiftDescriptor.swift in Sources */ = {isa = PBXBuildFile; fileRef = E0BC09FC89348D096456B29F713E0393 /* SwiftDescriptor.swift */; }; - F9958AB898434ABBE44436D49F757250 /* MobileScannerPlugin.m in Sources */ = {isa = PBXBuildFile; fileRef = 651C318C5F53D668DFE20EB949F43E2E /* MobileScannerPlugin.m */; }; - F9AA51EBC23B82D81F2ECE61F955532E /* GTMNSDictionary+URLArguments.m in Sources */ = {isa = PBXBuildFile; fileRef = 61DAAD690E768959F7A59ED1E8B1AF11 /* GTMNSDictionary+URLArguments.m */; }; - FA2D9BB768118E3C65699D0E1B40F35E /* MobileScannerUtilities.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7F75CBE92AF640BE986D69A06BADCE09 /* MobileScannerUtilities.swift */; }; FA473ACE9F99552F2DE9C40F719D0910 /* SentryAutoSessionTrackingIntegration.h in Headers */ = {isa = PBXBuildFile; fileRef = E9DE911F83317E28B59C26B5D94A0216 /* SentryAutoSessionTrackingIntegration.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FB0ABFD9CFC730832145D64D1404EC5A /* image_picker_ios-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = D4D17F1547F4C3E41CD1904D07CBEEBA /* image_picker_ios-dummy.m */; }; - FB9020C1A6A642069AF267850F0ABCFA /* InAppWebViewFlutterPlugin.h in Headers */ = {isa = PBXBuildFile; fileRef = F74F3DB80AA404D831C6F5861DD4751F /* InAppWebViewFlutterPlugin.h */; settings = {ATTRIBUTES = (Public, ); }; }; + FB0ABFD9CFC730832145D64D1404EC5A /* image_picker_ios-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 5054D97F7BC59D791264BFAC2EA210D1 /* image_picker_ios-dummy.m */; }; + FBA31A3C4E510C4DD8DE987CDCDDEB52 /* pb_encode.c in Sources */ = {isa = PBXBuildFile; fileRef = 19E95F3D72548415AF768AA1089369AC /* pb_encode.c */; settings = {COMPILER_FLAGS = "-fno-objc-arc -fno-objc-arc"; }; }; FBC4759EB8C63259870C44971B11A547 /* SentryDateUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 50661651238AA39DF43F0C1E835F9739 /* SentryDateUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FBF968097580DCBA37B4F25A6DBA1C69 /* messages.g.swift in Sources */ = {isa = PBXBuildFile; fileRef = FD6607AA8A6E9E0FA2124B55E6414517 /* messages.g.swift */; }; - FCCB7E806E2BEED048354CB6C91522AE /* InAppWebView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 50606B8981BCF3F195DD9FA91838B7F1 /* InAppWebView.swift */; }; + FC0C395F54A3BF95B09B939BE20061D7 /* GULSecureCoding.m in Sources */ = {isa = PBXBuildFile; fileRef = EF11869F11EE0F321FA2359A6155F87C /* GULSecureCoding.m */; }; + FC63743DF3F64AB4693F96C71543015B /* SqfliteDarwinDatabaseQueue.h in Headers */ = {isa = PBXBuildFile; fileRef = A9835ED544D242FE135FE9D989ACE1B0 /* SqfliteDarwinDatabaseQueue.h */; settings = {ATTRIBUTES = (Public, ); }; }; FCD299BAB00C6ECBE537F54A370F524E /* SentryCrashMonitor_NSException.m in Sources */ = {isa = PBXBuildFile; fileRef = 6629E038C18F2F8EC0B6C37710DCE54C /* SentryCrashMonitor_NSException.m */; }; - FD2CA480A04BECA716314F89FC5E160C /* ConnectivityPlusPlugin.h in Headers */ = {isa = PBXBuildFile; fileRef = 62F3A4FD7233DD7345513D93D1CAD1EA /* ConnectivityPlusPlugin.h */; settings = {ATTRIBUTES = (Public, ); }; }; - FD5851AB74E541AAD142F73A20E008D5 /* GULHeartbeatDateStorage.m in Sources */ = {isa = PBXBuildFile; fileRef = 4326DF84A7CD898DF493BDFC4227C4D8 /* GULHeartbeatDateStorage.m */; }; - FD7F35C3560E9B8AD1D2821CF6EF4D15 /* PrivacyInfo.xcprivacy in Resources */ = {isa = PBXBuildFile; fileRef = 3081ECA59DD51659989DBD8037294A4D /* PrivacyInfo.xcprivacy */; }; - FD93D1258B09D72DC713F0E44C3751BD /* FBLPromise+Testing.h in Headers */ = {isa = PBXBuildFile; fileRef = A7FA95DB3ACE101008C0518C2D324A55 /* FBLPromise+Testing.h */; settings = {ATTRIBUTES = (Public, ); }; }; - FE542D175483B20456A72A4EA4E384BC /* WindowIdJS.swift in Sources */ = {isa = PBXBuildFile; fileRef = 99E468BFBE752B6CB1D6A88E1627789D /* WindowIdJS.swift */; }; + FDB6496D1122AA8CFF8733001C5FD6A6 /* GULCCComponentContainer.h in Headers */ = {isa = PBXBuildFile; fileRef = 02B5DFA38365FAD67EC2B664F7636559 /* GULCCComponentContainer.h */; settings = {ATTRIBUTES = (Public, ); }; }; + FDC1C672BB137202823F29E0D7B74F2C /* pb_common.c in Sources */ = {isa = PBXBuildFile; fileRef = C056D8E82A3E70E3EFDFF9F69D332D85 /* pb_common.c */; settings = {COMPILER_FLAGS = "-fno-objc-arc -fno-objc-arc -fno-objc-arc"; }; }; FE6E706EACBC513A88DC566504EEAF5B /* SentryDelayedFrame.m in Sources */ = {isa = PBXBuildFile; fileRef = 665042E44851BCC2694B21D954BF8D5E /* SentryDelayedFrame.m */; }; FE752F75717199E70A36B9DFED976B53 /* SentrySamplerDecision.h in Headers */ = {isa = PBXBuildFile; fileRef = AC6428EC2662B57C0D3B53BF15EB0FC4 /* SentrySamplerDecision.h */; settings = {ATTRIBUTES = (Project, ); }; }; + FE99F638399E7D9B1E8120BEF8925E89 /* messages.g.h in Headers */ = {isa = PBXBuildFile; fileRef = 2CE07805643913C600386506AB396BBE /* messages.g.h */; settings = {ATTRIBUTES = (Public, ); }; }; + FEEC26DBAD0A0B7C291BCE7C83AB043B /* FBLPromise+Wrap.m in Sources */ = {isa = PBXBuildFile; fileRef = C85AE2873E79A0825E5B30A26984F552 /* FBLPromise+Wrap.m */; }; FF12570D17CF41CA5C9EEF407A97D7F2 /* flutter_secure_storage-flutter_secure_storage in Resources */ = {isa = PBXBuildFile; fileRef = E3C330B5F4227ED6FDC9FC042B5115D5 /* flutter_secure_storage-flutter_secure_storage */; }; FF183DA2D3CD93517206BF38E16E702E /* compliance.nanopb.h in Headers */ = {isa = PBXBuildFile; fileRef = 7B4E31DD252E96F0D79569A6516C52A0 /* compliance.nanopb.h */; settings = {ATTRIBUTES = (Project, ); }; }; FF259517E20734F63744C99D59EB7859 /* SentryGeo.h in Headers */ = {isa = PBXBuildFile; fileRef = 5358FB0C780BDB7645B864483F40E363 /* SentryGeo.h */; settings = {ATTRIBUTES = (Public, ); }; }; FF442DD426912DA7A40E81FA11093E22 /* SentryBaseIntegration.h in Headers */ = {isa = PBXBuildFile; fileRef = 7163C6F79E22E7B7538BDD1E7E7CACC5 /* SentryBaseIntegration.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FF6357608E4F9133E6423CB858D9E7B3 /* FBLPromise+Testing.m in Sources */ = {isa = PBXBuildFile; fileRef = BC593A21505A40362E212D9860A91EAD /* FBLPromise+Testing.m */; }; - FF94B7A0021B0F8EDFBD9ECA8F9EC06C /* FBLPromise+Validate.m in Sources */ = {isa = PBXBuildFile; fileRef = C1BB58F99D0618CB77F4A2B3986BC3F7 /* FBLPromise+Validate.m */; }; FFBF0E9F205169F699DE95E02FF398A5 /* GDTCORUploader.h in Headers */ = {isa = PBXBuildFile; fileRef = 7DE71B4E7768535A29481EA371243D14 /* GDTCORUploader.h */; settings = {ATTRIBUTES = (Project, ); }; }; /* End PBXBuildFile section */ /* Begin PBXContainerItemProxy section */ - 02D50E89E48B7EAEADE1324331AFC7C9 /* PBXContainerItemProxy */ = { + 0232CCA234934EC5AA5070A622E38CC6 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 5C0371EE948D0357B8EE0E34ABB44BF0; - remoteInfo = GoogleDataTransport; + remoteGlobalIDString = 15490FE8E4E35B20C7777FA3316A00AA; + remoteInfo = flutter_secure_storage; }; - 0353EE80343FB41D8DCFB611E9C2A03C /* PBXContainerItemProxy */ = { + 04DD35A09E65486795616BADB6BE03F3 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = DF45E85925DF410BE416B32171F59C1F; - remoteInfo = url_launcher_ios; + remoteGlobalIDString = BA5B0F40AD74C7512B1E4FD79F8F202F; + remoteInfo = "flutter_secure_storage-flutter_secure_storage"; }; - 055638B82C8B5B01675DFAB53CBE7D71 /* PBXContainerItemProxy */ = { + 06FA9DCBFBAC9D5DD1FDF163181113F5 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 1FF87323EE36EEC3288ACC236433F23A; - remoteInfo = flutter_inappwebview; + remoteGlobalIDString = 7EBF8091921DE5FE69E2062F2FAD948D; + remoteInfo = MLKitBarcodeScanning; }; - 0C5FBF045A03B3C3D742533442B24B07 /* PBXContainerItemProxy */ = { + 075468C24C4BE235299A9ADC610AC9B2 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 1EFDDC32A34D56D411E640A81DCD9E73; - remoteInfo = Flutter; + remoteGlobalIDString = ADE86197C9EC7D5D7AB212E24AE13395; + remoteInfo = integration_test; }; - 1022D4243219587DF33E2C21B6211624 /* PBXContainerItemProxy */ = { + 0842C4A8660D63C56CA60DB7171A5891 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = EE702F5C28052C5D194A34199665DB90; - remoteInfo = "flutter_email_sender-flutter_email_sender"; + remoteGlobalIDString = 1EFDDC32A34D56D411E640A81DCD9E73; + remoteInfo = Flutter; }; - 16C54CD278CB3002CD7BE80472FE91D5 /* PBXContainerItemProxy */ = { + 0AE3CD90582DE8EF698CD8843C577AB5 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 8D7F5D5DD528D21A72DC87ADA5B12E2D; - remoteInfo = GoogleUtilities; + remoteGlobalIDString = D676E21115185671D7258A56944ABE98; + remoteInfo = GTMSessionFetcher; }; - 171CDF2A242FC54BD49B538A29619DA3 /* PBXContainerItemProxy */ = { + 0F74205F431F66CED9C42EEF1445F268 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 0A4338C5C8BD51549298BECF630A6D57; - remoteInfo = MLKitCommon; + remoteGlobalIDString = 5C0371EE948D0357B8EE0E34ABB44BF0; + remoteInfo = GoogleDataTransport; }; - 19FEFAA7CED6202C64FFCC27AA3C9DB8 /* PBXContainerItemProxy */ = { + 1196DE0B1F20F4EA5F16321496471D82 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 4A9CF14C8C6709FC3D3736F0F06E7DD9; - remoteInfo = "local_auth_darwin-local_auth_darwin_privacy"; + remoteGlobalIDString = A64F5725956770327D080E1EB31878EE; + remoteInfo = GoogleUtilitiesComponents; }; - 1DFF5493AB0E89EF2F14D862ADA7F189 /* PBXContainerItemProxy */ = { + 123FEF49DD4E821320C99AFC63E8FA72 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 94BDCD90B52278D1FB244A66E8B95A4A; - remoteInfo = Sentry; + remoteGlobalIDString = D2B5E7DCCBBFB32341D857D01211A1A3; + remoteInfo = nanopb; }; - 214B54ADE41596BA620BF2F7029D0192 /* PBXContainerItemProxy */ = { + 13E117BB32051E80621313C586E2A0B5 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 7EBF8091921DE5FE69E2062F2FAD948D; - remoteInfo = MLKitBarcodeScanning; + remoteGlobalIDString = 9EE77E86DCDBAE9BB534B34A87623C77; + remoteInfo = sentry_flutter; }; - 2679B37BDB1B1C68EFEBFB2A469BA737 /* PBXContainerItemProxy */ = { + 1647EF5D9CB12E00864DF2ECA6AC29CB /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; remoteGlobalIDString = 1EFDDC32A34D56D411E640A81DCD9E73; remoteInfo = Flutter; }; - 285BB6BC38E18481C4C20CFFFF67A641 /* PBXContainerItemProxy */ = { + 1A65570148BE38540428FE1D0B1A4371 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 97C36B3C576D3765DAAE4EA7AC1E9ADC; - remoteInfo = "Sentry-Sentry"; + remoteGlobalIDString = D6C082E212CF95C0098ED9BE0D488DB4; + remoteInfo = local_auth_darwin; }; - 28C38E06F505CAB1A3CAFD9B117989B2 /* PBXContainerItemProxy */ = { + 1B5A82AC0379CE43EEC7A934A943B8A0 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = D676E21115185671D7258A56944ABE98; - remoteInfo = GTMSessionFetcher; + remoteGlobalIDString = 8D7F5D5DD528D21A72DC87ADA5B12E2D; + remoteInfo = GoogleUtilities; }; - 296A150A64F13DA09ABFBEAA70D980BE /* PBXContainerItemProxy */ = { + 1CD61A3D55D60945A6774FD968F7FF9C /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = A45E503409C9530E1F5D12C293F4BD67; - remoteInfo = permission_handler_apple; + remoteGlobalIDString = 36DCFAF5755EC2D8A75B4F250108A359; + remoteInfo = flutter_native_splash; }; - 2BA8247607B6DF404496619EAEB3EEC3 /* PBXContainerItemProxy */ = { + 22E78FF54504F0B0562DB37BD7D2220E /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; remoteGlobalIDString = 6D46A1F6123B14449A2A1FC04011860D; remoteInfo = GoogleMLKit; }; - 2E4FDEF5601867CE1DDF4A42490D0AC5 /* PBXContainerItemProxy */ = { + 259B85F5939486DC0984DE75759B7B96 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = D47C581D39D227080F83B16A22A56664; - remoteInfo = GoogleToolboxForMac; + remoteGlobalIDString = 2F8410D3DA69756D81B1FE8C64A8ED4B; + remoteInfo = OrderedSet; }; - 31ABB3B8219071579A09D053C814C0A8 /* PBXContainerItemProxy */ = { + 270CA702C03078934702AD9EC095E056 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 5FF1A58DEEC5DB749FCD6C120B97CC82; - remoteInfo = "GoogleUtilities-GoogleUtilities_Privacy"; + remoteGlobalIDString = F1D55369E4C8976F396F83588DAC03C4; + remoteInfo = MLKitVision; }; - 324C160B2D42094D7DAC2131A939526A /* PBXContainerItemProxy */ = { + 2979AAD977D91CF4F3A4BA5ADEF40AED /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 9EE77E86DCDBAE9BB534B34A87623C77; - remoteInfo = sentry_flutter; + remoteGlobalIDString = A450BF39E3E5256209A256E278D71BFD; + remoteInfo = "image_picker_ios-image_picker_ios_privacy"; }; - 32936239E61CB2DF85C66FFD3E384D5C /* PBXContainerItemProxy */ = { + 2DF7803505382A5D9396AEAB8645A0CC /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 1EFDDC32A34D56D411E640A81DCD9E73; - remoteInfo = Flutter; + remoteGlobalIDString = 372F11AACD7D15808C1D95D42113A50C; + remoteInfo = "sqflite-sqflite_darwin_privacy"; }; - 334D4D8CE272C3E66480F774AB5E0EC0 /* PBXContainerItemProxy */ = { + 307EE4EAEB0B4D2677BF8C77D138C061 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = ADE86197C9EC7D5D7AB212E24AE13395; - remoteInfo = integration_test; + remoteGlobalIDString = 1EFDDC32A34D56D411E640A81DCD9E73; + remoteInfo = Flutter; }; - 386FAC0633811B2564BD2070764B6B52 /* PBXContainerItemProxy */ = { + 335CDF0484B33931D38ED0E9AE199678 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; remoteGlobalIDString = 8D7F5D5DD528D21A72DC87ADA5B12E2D; remoteInfo = GoogleUtilities; }; - 3888AB0E0C694326EF1D9ADBAD31B65D /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 2BBF7206D7FAC92C82A042A99C4A98F8; - remoteInfo = PromisesObjC; - }; - 38B8AE71E9D634697C3B6734C4ABAB13 /* PBXContainerItemProxy */ = { + 3386FDB86731D30BD23581A82A99259D /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = F2B6B9861EE4A9DBEED3FFB7D06614D6; - remoteInfo = "flutter_native_splash-flutter_native_splash_privacy"; + remoteGlobalIDString = 1EFDDC32A34D56D411E640A81DCD9E73; + remoteInfo = Flutter; }; - 398E32B304CEDFAC090C668338832383 /* PBXContainerItemProxy */ = { + 38CFFD3C8E24E66A31DE5E578B98E6E9 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; remoteGlobalIDString = 1EFDDC32A34D56D411E640A81DCD9E73; remoteInfo = Flutter; }; - 4077CB9D56D6057417552114ACA7F0F2 /* PBXContainerItemProxy */ = { + 3A859E3C6AC380FF953CB2059318C13E /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = F1D55369E4C8976F396F83588DAC03C4; - remoteInfo = MLKitVision; + remoteGlobalIDString = 42A5F24E847029301BC47B4E68477322; + remoteInfo = share_plus; }; - 413435551FDDED5F56656A9337AE7380 /* PBXContainerItemProxy */ = { + 3AD26EAADF08A02E5B3A96614EDF8160 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 6D46A1F6123B14449A2A1FC04011860D; - remoteInfo = GoogleMLKit; + remoteGlobalIDString = EE702F5C28052C5D194A34199665DB90; + remoteInfo = "flutter_email_sender-flutter_email_sender"; }; - 445A4BE95799DE402D0E60316A908384 /* PBXContainerItemProxy */ = { + 3BD10BD052D0A692E10693B518CDC62E /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 8D7F5D5DD528D21A72DC87ADA5B12E2D; - remoteInfo = GoogleUtilities; + remoteGlobalIDString = D47C581D39D227080F83B16A22A56664; + remoteInfo = GoogleToolboxForMac; }; - 4C05A8EFB7890815267A70F623DC2CDC /* PBXContainerItemProxy */ = { + 3D99CA2591D1260D973B5D494D29AAF6 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 845DF30C6C93A1F35C6DCEBAFECA8F8A; - remoteInfo = image_picker_ios; + remoteGlobalIDString = 1EFDDC32A34D56D411E640A81DCD9E73; + remoteInfo = Flutter; }; - 4E2E1DC5C47D6CCA8AAB4F879C418507 /* PBXContainerItemProxy */ = { + 42416DB7FCBBE7A6EBC92AC374E46054 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = BE3B5914C1194353E85796E3EE3CE245; - remoteInfo = MLImage; + remoteGlobalIDString = 1EFDDC32A34D56D411E640A81DCD9E73; + remoteInfo = Flutter; }; - 5146CDADBF2065FEE88E65DFE190925F /* PBXContainerItemProxy */ = { + 493120931549D28E77797BA495D43D5B /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 7BDA31252C374D565DC2DA0358CCAE26; - remoteInfo = flutter_email_sender; + remoteGlobalIDString = BE3B5914C1194353E85796E3EE3CE245; + remoteInfo = MLImage; }; - 5A9C6B596ED506AAA3BB3647CD6F6F3C /* PBXContainerItemProxy */ = { + 496A7F17F50C6AFE376999564119C2A3 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 0A4338C5C8BD51549298BECF630A6D57; - remoteInfo = MLKitCommon; + remoteGlobalIDString = DF45E85925DF410BE416B32171F59C1F; + remoteInfo = url_launcher_ios; }; - 5A9CB898E99919DDA66AD660AD1B523E /* PBXContainerItemProxy */ = { + 499CF80D3399162854B3C66DD3DA5267 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 56F581DDCB0A032454E604885E17AE3C; - remoteInfo = path_provider_foundation; + remoteGlobalIDString = FB5330FE6EBCAEA8B61DAC8F21917289; + remoteInfo = connectivity_plus; }; - 5C66E3C327722FF7CE53FEAEAE61A048 /* PBXContainerItemProxy */ = { + 4C271E5AC558834032CA671F66BFAE62 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 36DCFAF5755EC2D8A75B4F250108A359; - remoteInfo = flutter_native_splash; + remoteGlobalIDString = 845DF30C6C93A1F35C6DCEBAFECA8F8A; + remoteInfo = image_picker_ios; }; - 5DFA46A17A6D6E198074DDE66C2726AC /* PBXContainerItemProxy */ = { + 4F7CE46239B7BC406D5197C05877CB42 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = D2B5E7DCCBBFB32341D857D01211A1A3; - remoteInfo = nanopb; + remoteGlobalIDString = 07C64B0E06ED7C1903D446F9BBDDF5C9; + remoteInfo = "package_info_plus-package_info_plus_privacy"; }; - 5EA6DAD1E60D8BD2F61816D042DCD0F4 /* PBXContainerItemProxy */ = { + 4FB895446E29E9DFDBF86C50E471BAFC /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = BE3B5914C1194353E85796E3EE3CE245; - remoteInfo = MLImage; + remoteGlobalIDString = F2B6B9861EE4A9DBEED3FFB7D06614D6; + remoteInfo = "flutter_native_splash-flutter_native_splash_privacy"; }; - 66F16C2AFD99F2F5D74E253EBFF0759A /* PBXContainerItemProxy */ = { + 52A012B331952582EAA2496A03E009D5 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = F1D55369E4C8976F396F83588DAC03C4; - remoteInfo = MLKitVision; + remoteGlobalIDString = 97C36B3C576D3765DAAE4EA7AC1E9ADC; + remoteInfo = "Sentry-Sentry"; }; - 673445DDB22501CDEAC75FE59AFA0E14 /* PBXContainerItemProxy */ = { + 5688B35CACA7CEB88D1567802DD83634 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 1BFBEDBF7E03729D43C96530EE190825; - remoteInfo = "PromisesObjC-FBLPromises_Privacy"; + remoteGlobalIDString = 54A00AF9F830F355D8FD8F6A4387F6A2; + remoteInfo = package_info_plus; }; - 699E3FE4C0F92786327616B80C77DF41 /* PBXContainerItemProxy */ = { + 588767973E1360CD76AB4EDB194DA9D4 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = FB5330FE6EBCAEA8B61DAC8F21917289; - remoteInfo = connectivity_plus; + remoteGlobalIDString = 1FF87323EE36EEC3288ACC236433F23A; + remoteInfo = flutter_inappwebview; }; - 6A3BDC3C53645DFD773816A3FEA544DD /* PBXContainerItemProxy */ = { + 5B50635B2B92E1F213A78797605E200B /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; remoteGlobalIDString = 1EFDDC32A34D56D411E640A81DCD9E73; remoteInfo = Flutter; }; - 71B9E8FB2F1C443080DC3C49E8FFF57E /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 2F8410D3DA69756D81B1FE8C64A8ED4B; - remoteInfo = OrderedSet; - }; - 72036B246684FCD46FD8CD2C634C26A7 /* PBXContainerItemProxy */ = { + 5D4001FFFC4F92131434219584CD306A /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = E2606E08328700D7777787BC6AC63822; - remoteInfo = "connectivity_plus-connectivity_plus_privacy"; + remoteGlobalIDString = DD0D41A9315A48004E57F4F0E54095F1; + remoteInfo = "GoogleDataTransport-GoogleDataTransport_Privacy"; }; - 7948FF0F67923D2ED688DC354FC37EF0 /* PBXContainerItemProxy */ = { + 5DA790B54EFC3647CE8959706BFF7F8A /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = C8013ADE865DC3567779C6C9857CE526; - remoteInfo = mobile_scanner; + remoteGlobalIDString = 1EFDDC32A34D56D411E640A81DCD9E73; + remoteInfo = Flutter; }; - 7D973A7243E988E3FFFD95A0CEE1B0E7 /* PBXContainerItemProxy */ = { + 5DF30CEAE5B596920F55709F082C9B55 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 5C0371EE948D0357B8EE0E34ABB44BF0; - remoteInfo = GoogleDataTransport; + remoteGlobalIDString = D676E21115185671D7258A56944ABE98; + remoteInfo = GTMSessionFetcher; }; - 7E465A8BFF419D09F75B37E6FBC93D8A /* PBXContainerItemProxy */ = { + 602564CDE1695DC228719DB0B061752F /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 1EFDDC32A34D56D411E640A81DCD9E73; - remoteInfo = Flutter; + remoteGlobalIDString = A45E503409C9530E1F5D12C293F4BD67; + remoteInfo = permission_handler_apple; }; - 80CC63698CC21C7BB9632F9FF898BA5C /* PBXContainerItemProxy */ = { + 6C71E82031F3A660E9FD2D47137B0623 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; remoteGlobalIDString = 2BBF7206D7FAC92C82A042A99C4A98F8; remoteInfo = PromisesObjC; }; - 81B5AF5008588295AC301A561E09476B /* PBXContainerItemProxy */ = { + 6C863CF60FED9A4921DCEF4101900EDB /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = DD0D41A9315A48004E57F4F0E54095F1; - remoteInfo = "GoogleDataTransport-GoogleDataTransport_Privacy"; + remoteGlobalIDString = 56F581DDCB0A032454E604885E17AE3C; + remoteInfo = path_provider_foundation; }; - 8DEBA88B8B4905B04B33C3957C54DE86 /* PBXContainerItemProxy */ = { + 6D21D1A956DE1937AE75238883CEDA8B /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; remoteGlobalIDString = 1EFDDC32A34D56D411E640A81DCD9E73; remoteInfo = Flutter; }; - 8FC18A7F9675EFFE25400D51DA08E92C /* PBXContainerItemProxy */ = { + 6F7BE719B002BF3564F285306D0AE0DA /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 2BBF7206D7FAC92C82A042A99C4A98F8; - remoteInfo = PromisesObjC; + remoteGlobalIDString = D2B5E7DCCBBFB32341D857D01211A1A3; + remoteInfo = nanopb; }; - 92F9B66A3015D43B9F4DE5D26C42C428 /* PBXContainerItemProxy */ = { + 73B76180861BBDF1B6048A8F5F207CB3 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; remoteGlobalIDString = 1EFDDC32A34D56D411E640A81DCD9E73; remoteInfo = Flutter; }; - 965458318B26D07E847DAEB38DE0543A /* PBXContainerItemProxy */ = { + 77932F9DDCD728C9C25888A5502EE49A /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 54A00AF9F830F355D8FD8F6A4387F6A2; - remoteInfo = package_info_plus; + remoteGlobalIDString = BE3B5914C1194353E85796E3EE3CE245; + remoteInfo = MLImage; }; - 9A535C1B476B1D43F67A397C9ECEE335 /* PBXContainerItemProxy */ = { + 77A5CFD86BE4D471780500BD05C1A47B /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 1EFDDC32A34D56D411E640A81DCD9E73; - remoteInfo = Flutter; + remoteGlobalIDString = 2BBF7206D7FAC92C82A042A99C4A98F8; + remoteInfo = PromisesObjC; }; - 9CE322CE584C05E3E13A62E692ABE89A /* PBXContainerItemProxy */ = { + 78D76378D5AA183B250767F3909DE8F6 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 1EFDDC32A34D56D411E640A81DCD9E73; - remoteInfo = Flutter; + remoteGlobalIDString = E2606E08328700D7777787BC6AC63822; + remoteInfo = "connectivity_plus-connectivity_plus_privacy"; }; - 9F2C591211A5BDAECBA8FCAF066A2C58 /* PBXContainerItemProxy */ = { + 79D281A5B4C65F5342E424F6AD296688 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 8CB181E0B90ABC017A42AB50FCF7A7E0; - remoteInfo = sqflite; + remoteGlobalIDString = 1EFDDC32A34D56D411E640A81DCD9E73; + remoteInfo = Flutter; }; - A016D46258518C74CF5DE0B670DFEBED /* PBXContainerItemProxy */ = { + 7BB3B689E4E4CFB4A8458DEC038D5B7B /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 15490FE8E4E35B20C7777FA3316A00AA; - remoteInfo = flutter_secure_storage; + remoteGlobalIDString = 1EFDDC32A34D56D411E640A81DCD9E73; + remoteInfo = Flutter; }; - A33892DF5E21C341D3734E9DD6C3DF7D /* PBXContainerItemProxy */ = { + 7EEFB5906583F5218EF810534EF1CBDA /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; remoteGlobalIDString = 1EFDDC32A34D56D411E640A81DCD9E73; remoteInfo = Flutter; }; - A72E5ADFA5DEA4641A42D5C91A1098B9 /* PBXContainerItemProxy */ = { + 834FD93338E9F23211EEFAAAC203C50A /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 7EBF8091921DE5FE69E2062F2FAD948D; - remoteInfo = MLKitBarcodeScanning; + remoteGlobalIDString = 1EFDDC32A34D56D411E640A81DCD9E73; + remoteInfo = Flutter; }; - A99974E12BB9FB510FDA42DD504FF4C6 /* PBXContainerItemProxy */ = { + 876EBD9017D62EE6FE1E762503170094 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 372F11AACD7D15808C1D95D42113A50C; - remoteInfo = "sqflite-sqflite_darwin_privacy"; + remoteGlobalIDString = 4A9CF14C8C6709FC3D3736F0F06E7DD9; + remoteInfo = "local_auth_darwin-local_auth_darwin_privacy"; }; - ACA6CDBB6C90B1175618C7F300786A9C /* PBXContainerItemProxy */ = { + 878F2050EB3E61DFECA773793DEBFC8E /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = A64F5725956770327D080E1EB31878EE; - remoteInfo = GoogleUtilitiesComponents; + remoteGlobalIDString = D47C581D39D227080F83B16A22A56664; + remoteInfo = GoogleToolboxForMac; }; - AD1D25582203B3F77CA472240F2B0158 /* PBXContainerItemProxy */ = { + 919DBF3B018EBC674CC9E45A1649F9CB /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 43BE97C40504244259CF3C1D21E7EDB5; - remoteInfo = "url_launcher_ios-url_launcher_ios_privacy"; + remoteGlobalIDString = 0A4338C5C8BD51549298BECF630A6D57; + remoteInfo = MLKitCommon; }; - AFEE50518625B57B28523BD6C179E7E0 /* PBXContainerItemProxy */ = { + 92E4556B1EA39070E03B837D202FE46D /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 1EFDDC32A34D56D411E640A81DCD9E73; - remoteInfo = Flutter; + remoteGlobalIDString = A64F5725956770327D080E1EB31878EE; + remoteInfo = GoogleUtilitiesComponents; }; - B04DFE15073279C03439E6FA3DFFEF83 /* PBXContainerItemProxy */ = { + 9373A0DA86B19F175A2A5CA70E200568 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 94BDCD90B52278D1FB244A66E8B95A4A; - remoteInfo = Sentry; + remoteGlobalIDString = 5FF1A58DEEC5DB749FCD6C120B97CC82; + remoteInfo = "GoogleUtilities-GoogleUtilities_Privacy"; }; - B18F2FC52B95051106694BDB035ABF31 /* PBXContainerItemProxy */ = { + 971D8C0D9BE69FBF98DFAD07865E044E /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = B51E4F66CC7B565B582B2DD8C9C86AC3; - remoteInfo = flutter_keyboard_visibility; + remoteGlobalIDString = 517E8BED8B0E6D6FD078BD19B0A13893; + remoteInfo = "permission_handler_apple-permission_handler_apple_privacy"; }; - B2E7CED5C34D64B3B5651E8CCD99CDF0 /* PBXContainerItemProxy */ = { + 97D4C64CDB30D1AF9EFDA77D60A8D631 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = B6AF8B7CEAF6321719ABBC7E770624DA; - remoteInfo = "shared_preferences_foundation-shared_preferences_foundation_privacy"; + remoteGlobalIDString = 8D7F5D5DD528D21A72DC87ADA5B12E2D; + remoteInfo = GoogleUtilities; }; - B3347FD1B402B50D778833973364E557 /* PBXContainerItemProxy */ = { + 9FF8DA050080E6724E722E1766EC476E /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 1EFDDC32A34D56D411E640A81DCD9E73; - remoteInfo = Flutter; + remoteGlobalIDString = A89B444A66B39759D9A7920AF442F69C; + remoteInfo = flutter_nekoton_bridge; }; - B62BCE76B4E71AEA99D35803E0905F46 /* PBXContainerItemProxy */ = { + A0669ECC5033172E024EED872FAA8EC1 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 07C64B0E06ED7C1903D446F9BBDDF5C9; - remoteInfo = "package_info_plus-package_info_plus_privacy"; + remoteGlobalIDString = 2F8410D3DA69756D81B1FE8C64A8ED4B; + remoteInfo = OrderedSet; }; - B6CD7E3325B74A5AB6A751A307C4FC98 /* PBXContainerItemProxy */ = { + A2484F16FDBBB2EF1E8DA2A35E3CF181 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; remoteGlobalIDString = D47C581D39D227080F83B16A22A56664; remoteInfo = GoogleToolboxForMac; }; - BE68FC20AE47AC4D501A28E4F93D8AD6 /* PBXContainerItemProxy */ = { + A28C9F209A0F7399798995CA7D4A33D4 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = A64F5725956770327D080E1EB31878EE; - remoteInfo = GoogleUtilitiesComponents; + remoteGlobalIDString = 18C1C89B0915365FEE8FAEB868A0B528; + remoteInfo = "share_plus-share_plus_privacy"; + }; + A2DFBB093C5DF100BF5989CD2187A66C /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 1EFDDC32A34D56D411E640A81DCD9E73; + remoteInfo = Flutter; }; - BE96CABDAAC00F9F4785762CA1BA4327 /* PBXContainerItemProxy */ = { + A7630DCB356D56A29F4E3031E8F520FA /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; remoteGlobalIDString = 0A4338C5C8BD51549298BECF630A6D57; remoteInfo = MLKitCommon; }; - BEF49DF73E5C018E3B29C43B36EA31DC /* PBXContainerItemProxy */ = { + A91FAE50762FDBD59D90BCE4C8CE025C /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 517E8BED8B0E6D6FD078BD19B0A13893; - remoteInfo = "permission_handler_apple-permission_handler_apple_privacy"; + remoteGlobalIDString = B6AF8B7CEAF6321719ABBC7E770624DA; + remoteInfo = "shared_preferences_foundation-shared_preferences_foundation_privacy"; }; - C3D0A47C0D926C3CFD351F5998F9BC48 /* PBXContainerItemProxy */ = { + AA3186EF1E066E63EB6DAD30AA99A168 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 2F8410D3DA69756D81B1FE8C64A8ED4B; - remoteInfo = OrderedSet; + remoteGlobalIDString = 55522A91938FF505CFEBEAD2DD85AE2D; + remoteInfo = "nanopb-nanopb_Privacy"; }; - C5CD999108E806322AE2DF9D80CDBE1A /* PBXContainerItemProxy */ = { + AB9C6767A2E33E6242106AB736FFD400 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = BA5B0F40AD74C7512B1E4FD79F8F202F; - remoteInfo = "flutter_secure_storage-flutter_secure_storage"; + remoteGlobalIDString = AB5EE685B22D01885ADD930538E8DD3C; + remoteInfo = shared_preferences_foundation; }; - CC4E6A49E7152FF52C2646DB64FDEB7C /* PBXContainerItemProxy */ = { + ACA5AA265779F4B519EE5D96F022AE04 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; remoteGlobalIDString = 1EFDDC32A34D56D411E640A81DCD9E73; remoteInfo = Flutter; }; - CE271EF8229DEC11F93E65136C893354 /* PBXContainerItemProxy */ = { + AEDB46EAD5861920B82331A00EBF1EFD /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = A450BF39E3E5256209A256E278D71BFD; - remoteInfo = "image_picker_ios-image_picker_ios_privacy"; + remoteGlobalIDString = 1BFBEDBF7E03729D43C96530EE190825; + remoteInfo = "PromisesObjC-FBLPromises_Privacy"; }; - D24D3E679374020FA5606113BFBBC725 /* PBXContainerItemProxy */ = { + AEE5C9EE94BA09F3906DE74A5D1277FB /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 42A5F24E847029301BC47B4E68477322; - remoteInfo = share_plus; + remoteGlobalIDString = B51E4F66CC7B565B582B2DD8C9C86AC3; + remoteInfo = flutter_keyboard_visibility; }; - D692069573DA3C66508B48CB0D34E983 /* PBXContainerItemProxy */ = { + AF7C43777610F149721F1D41416AEBCF /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = A89B444A66B39759D9A7920AF442F69C; - remoteInfo = flutter_nekoton_bridge; + remoteGlobalIDString = CACE6618E7996464E38687E13F67D945; + remoteInfo = "path_provider_foundation-path_provider_foundation_privacy"; }; - D8A2147C73A9374B80F14C719211D92D /* PBXContainerItemProxy */ = { + B4316C289E8F6C6540A33C77F62C9C61 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 8D7F5D5DD528D21A72DC87ADA5B12E2D; - remoteInfo = GoogleUtilities; + remoteGlobalIDString = 94BDCD90B52278D1FB244A66E8B95A4A; + remoteInfo = Sentry; }; - E23AE9500794488AFDC192D8A8C9B436 /* PBXContainerItemProxy */ = { + BA51409D1C54C5B5C07707C07D480EF6 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 1EFDDC32A34D56D411E640A81DCD9E73; - remoteInfo = Flutter; + remoteGlobalIDString = F1D55369E4C8976F396F83588DAC03C4; + remoteInfo = MLKitVision; }; - E7F5DB95685F9179E4DDDF254E2A4258 /* PBXContainerItemProxy */ = { + BD4E49FCE4E8A6D8F2AC7719695D6800 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 1EFDDC32A34D56D411E640A81DCD9E73; - remoteInfo = Flutter; + remoteGlobalIDString = 5C0371EE948D0357B8EE0E34ABB44BF0; + remoteInfo = GoogleDataTransport; }; - E81270407F57BF1070645E09C065A90D /* PBXContainerItemProxy */ = { + BF76239543C0685EE492A0FB064B4C9D /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; remoteGlobalIDString = 0A4338C5C8BD51549298BECF630A6D57; remoteInfo = MLKitCommon; }; - E985927EE1ED9A2007AE5F3EBE9F8163 /* PBXContainerItemProxy */ = { + C422C26A292778DA1031225728462CCB /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = AB5EE685B22D01885ADD930538E8DD3C; - remoteInfo = shared_preferences_foundation; + remoteGlobalIDString = 94BDCD90B52278D1FB244A66E8B95A4A; + remoteInfo = Sentry; }; - E9D1629C7F57D312141447841E434B09 /* PBXContainerItemProxy */ = { + C88DBF4769B48631CFFA90D079D70BCA /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 1EFDDC32A34D56D411E640A81DCD9E73; - remoteInfo = Flutter; + remoteGlobalIDString = D676E21115185671D7258A56944ABE98; + remoteInfo = GTMSessionFetcher; }; - EB9E7663D0C71AD8068FAB50831278A4 /* PBXContainerItemProxy */ = { + C93A5F3825795809A6E4EAB87E3B6EF5 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = D6C082E212CF95C0098ED9BE0D488DB4; - remoteInfo = local_auth_darwin; + remoteGlobalIDString = 1EFDDC32A34D56D411E640A81DCD9E73; + remoteInfo = Flutter; }; - ED40CB557E6AE0E973DB24315D16165E /* PBXContainerItemProxy */ = { + D1EC6BDAB2ED7CB0333CB6B16FC1E3FF /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = D2B5E7DCCBBFB32341D857D01211A1A3; - remoteInfo = nanopb; + remoteGlobalIDString = 6D46A1F6123B14449A2A1FC04011860D; + remoteInfo = GoogleMLKit; }; - F0CBDA6406C10538D686DBFD16F8328B /* PBXContainerItemProxy */ = { + D3E9BE821748FF58822CD7E1E964E716 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = D676E21115185671D7258A56944ABE98; - remoteInfo = GTMSessionFetcher; + remoteGlobalIDString = 43BE97C40504244259CF3C1D21E7EDB5; + remoteInfo = "url_launcher_ios-url_launcher_ios_privacy"; }; - F1B88DC0E2FFA9717A495B5705595C41 /* PBXContainerItemProxy */ = { + DB976C5D3912EDDE5B3079C58031330D /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = D47C581D39D227080F83B16A22A56664; - remoteInfo = GoogleToolboxForMac; + remoteGlobalIDString = C8013ADE865DC3567779C6C9857CE526; + remoteInfo = mobile_scanner; }; - F5CDC9DAF502DEAF71FC4D19662B5C87 /* PBXContainerItemProxy */ = { + E683CF7BE94AB5B608FEE737F6AFD06F /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 1EFDDC32A34D56D411E640A81DCD9E73; - remoteInfo = Flutter; + remoteGlobalIDString = 8CB181E0B90ABC017A42AB50FCF7A7E0; + remoteInfo = sqflite; }; - F69CB5988BF64B3F8A22B01FFBB74FC1 /* PBXContainerItemProxy */ = { + E81B376DB9A242CF0172B10802DFEF5B /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 18C1C89B0915365FEE8FAEB868A0B528; - remoteInfo = "share_plus-share_plus_privacy"; + remoteGlobalIDString = 7BDA31252C374D565DC2DA0358CCAE26; + remoteInfo = flutter_email_sender; }; - F92AEC97E47AE3DAAE6FD35DF48ECAFE /* PBXContainerItemProxy */ = { + E9439B302E23DB31D8BAA14FD399760C /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = CACE6618E7996464E38687E13F67D945; - remoteInfo = "path_provider_foundation-path_provider_foundation_privacy"; + remoteGlobalIDString = 2BBF7206D7FAC92C82A042A99C4A98F8; + remoteInfo = PromisesObjC; }; - FDB50DD71104A33425F8F55220572B25 /* PBXContainerItemProxy */ = { + ED16B58FE98D7D009ED0043BA8E90FA2 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = D676E21115185671D7258A56944ABE98; - remoteInfo = GTMSessionFetcher; + remoteGlobalIDString = 7EBF8091921DE5FE69E2062F2FAD948D; + remoteInfo = MLKitBarcodeScanning; }; - FDE20ACC668F1923F8A024FA9AD24061 /* PBXContainerItemProxy */ = { + EFB68DE4781A0831405F5E669F06B396 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 55522A91938FF505CFEBEAD2DD85AE2D; - remoteInfo = "nanopb-nanopb_Privacy"; + remoteGlobalIDString = 0A4338C5C8BD51549298BECF630A6D57; + remoteInfo = MLKitCommon; }; - FE749CCDC2CF6E959B4C583FE24FD2BA /* PBXContainerItemProxy */ = { + F04B76945BF9B4E08413C43500AE0130 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; remoteGlobalIDString = 1EFDDC32A34D56D411E640A81DCD9E73; remoteInfo = Flutter; }; + FAC7EE4BAA947D514C6ADA8385A5D7A3 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 8D7F5D5DD528D21A72DC87ADA5B12E2D; + remoteInfo = GoogleUtilities; + }; /* End PBXContainerItemProxy section */ /* Begin PBXFileReference section */ - 002E041E9C8A91C2CDA95A807E85EDB8 /* MyCookieManager.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = MyCookieManager.swift; path = "../../../../../../../../../.pub-cache/hosted/pub.dev/flutter_inappwebview-5.8.0/ios/Classes/MyCookieManager.swift"; sourceTree = ""; }; 00B9C08939D119127FD1C9439DB427F8 /* Pods-Runner.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-Runner.release.xcconfig"; sourceTree = ""; }; 0115C3C00C175D77422084DD0542CE6F /* Sentry */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = Sentry; path = Sentry.framework; sourceTree = BUILT_PRODUCTS_DIR; }; 01726EF8837045E344913859CC95829F /* FBLPromise+Reduce.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FBLPromise+Reduce.m"; path = "Sources/FBLPromises/FBLPromise+Reduce.m"; sourceTree = ""; }; 0199B763AF2AB236E632A33A49055547 /* SentrySdkInfo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SentrySdkInfo.m; path = Sources/Sentry/SentrySdkInfo.m; sourceTree = ""; }; - 01CF91ED5CB1345E34251218FAD7EF27 /* SpeechPermissionStrategy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SpeechPermissionStrategy.m; path = "../../../../../../../../../../.pub-cache/hosted/pub.dev/permission_handler_apple-9.4.5/ios/Classes/strategies/SpeechPermissionStrategy.m"; sourceTree = ""; }; 01D4423ACAA2D3BA83F4D097E7D81F3A /* SentryCurrentDateProvider.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SentryCurrentDateProvider.swift; path = Sources/Swift/Helper/SentryCurrentDateProvider.swift; sourceTree = ""; }; 01E60C30D908B25C760C39A99FF98180 /* SentrySessionTracker.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SentrySessionTracker.m; path = Sources/Sentry/SentrySessionTracker.m; sourceTree = ""; }; 01EC835E20981E532F873F21165CD863 /* FBLPromise+Timeout.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FBLPromise+Timeout.m"; path = "Sources/FBLPromises/FBLPromise+Timeout.m"; sourceTree = ""; }; - 01FC54BC1458F546124A97D5FB12492A /* ResourceBundle-local_auth_darwin_privacy-local_auth_darwin-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "ResourceBundle-local_auth_darwin_privacy-local_auth_darwin-Info.plist"; sourceTree = ""; }; 02234F8144B8DFE1A51F54CFE77527AC /* SentryCrashNSErrorUtil.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SentryCrashNSErrorUtil.h; path = Sources/SentryCrash/Recording/Tools/SentryCrashNSErrorUtil.h; sourceTree = ""; }; 02B02C3CB88B7226539ABB58E4C8EC2A /* SentryReplayOptions.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SentryReplayOptions.swift; path = Sources/Swift/Integrations/SessionReplay/SentryReplayOptions.swift; sourceTree = ""; }; 02B5DFA38365FAD67EC2B664F7636559 /* GULCCComponentContainer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULCCComponentContainer.h; path = GoogleUtilitiesComponents/Sources/Public/GULCCComponentContainer.h; sourceTree = ""; }; - 0332A861E4177980F02423A9BED0C0C4 /* ResourceBundle-permission_handler_apple_privacy-permission_handler_apple-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "ResourceBundle-permission_handler_apple_privacy-permission_handler_apple-Info.plist"; sourceTree = ""; }; - 0399E5A90DDB82EA9AF62B4590048A63 /* Launcher.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Launcher.swift; path = "../../../../../../../../../../../.pub-cache/hosted/pub.dev/url_launcher_ios-6.3.0/ios/url_launcher_ios/Sources/url_launcher_ios/Launcher.swift"; sourceTree = ""; }; + 02FA38436AAFE66E90DF414A30BE7746 /* mobile_scanner.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; name = mobile_scanner.podspec; path = "../../../../../../../../../.pub-cache/hosted/pub.dev/mobile_scanner-3.4.1/ios/mobile_scanner.podspec"; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 0378403EECA7D1757ADD7F980E9968FA /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; name = LICENSE; path = "../../../../../../../../../.pub-cache/hosted/pub.dev/flutter_native_splash-2.4.0/LICENSE"; sourceTree = ""; }; + 037B903BE9BB63D9718E0EAC828A68C8 /* SqfliteDarwinDatabaseAdditions.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SqfliteDarwinDatabaseAdditions.m; path = "../../../../../../../../../../.pub-cache/hosted/pub.dev/sqflite-2.3.3+1/darwin/Classes/SqfliteDarwinDatabaseAdditions.m"; sourceTree = ""; }; + 038A4526E9AA85618351662B3B69FFE9 /* Size2D.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Size2D.swift; path = "../../../../../../../../../../../.pub-cache/hosted/pub.dev/flutter_inappwebview-5.8.0/ios/Classes/Types/Size2D.swift"; sourceTree = ""; }; 03A5322EB6763F4F50E1877C587292B9 /* SentryCrashReportVersion.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SentryCrashReportVersion.h; path = Sources/SentryCrash/Recording/SentryCrashReportVersion.h; sourceTree = ""; }; - 03B3CBE8719F6F4CECE5D7FFF9E17C8E /* FindTextHighlightJS.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = FindTextHighlightJS.swift; path = "../../../../../../../../../../.pub-cache/hosted/pub.dev/flutter_inappwebview-5.8.0/ios/Classes/PluginScriptsJS/FindTextHighlightJS.swift"; sourceTree = ""; }; 03DAA603E7D1E46E149D7E7870E6D778 /* SentryDataCategory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SentryDataCategory.h; path = Sources/Sentry/include/SentryDataCategory.h; sourceTree = ""; }; - 03FA97B7884F29821200BEFB1523A9DD /* InterceptAjaxRequestJS.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = InterceptAjaxRequestJS.swift; path = "../../../../../../../../../../.pub-cache/hosted/pub.dev/flutter_inappwebview-5.8.0/ios/Classes/PluginScriptsJS/InterceptAjaxRequestJS.swift"; sourceTree = ""; }; - 0404AA0E05AAA9B1A189481625A56F3E /* flutter_nekoton_bridge-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "flutter_nekoton_bridge-Info.plist"; sourceTree = ""; }; 041DD5B37E9EAE2833324D8DE0525B04 /* SentryCrashStackCursor_MachineContext.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SentryCrashStackCursor_MachineContext.h; path = Sources/SentryCrash/Recording/Tools/SentryCrashStackCursor_MachineContext.h; sourceTree = ""; }; + 0422D1FD2FDB5A7D631672A6E0A9F216 /* package_info_plus-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "package_info_plus-dummy.m"; sourceTree = ""; }; 04775ED80C5CD9BF786F4F85BC968CF5 /* SentryNSError.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SentryNSError.m; path = Sources/Sentry/SentryNSError.m; sourceTree = ""; }; + 047F06E61EC2942DA212BD96E97059FD /* BluetoothPermissionStrategy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = BluetoothPermissionStrategy.m; path = "../../../../../../../../../../../.pub-cache/hosted/pub.dev/permission_handler_apple-9.4.5/ios/Classes/strategies/BluetoothPermissionStrategy.m"; sourceTree = ""; }; + 049B4C9F84E861EC52B2E6C0B24B844A /* HeadlessInAppWebViewManager.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = HeadlessInAppWebViewManager.swift; path = "../../../../../../../../../../../.pub-cache/hosted/pub.dev/flutter_inappwebview-5.8.0/ios/Classes/HeadlessInAppWebView/HeadlessInAppWebViewManager.swift"; sourceTree = ""; }; 04A3EDB813064809ED7E9DFF3463B235 /* SentryMachLogging.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = SentryMachLogging.hpp; path = Sources/Sentry/include/SentryMachLogging.hpp; sourceTree = ""; }; - 04A761A51931839778D46A342EC2AED7 /* FlutterKeyboardVisibilityPlugin.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FlutterKeyboardVisibilityPlugin.m; path = "../../../../../../../../../.pub-cache/hosted/pub.dev/flutter_keyboard_visibility-5.4.1/ios/Classes/FlutterKeyboardVisibilityPlugin.m"; sourceTree = ""; }; 052C194EA2D4B34A5CE628284C5200CF /* SentryUIEventTrackingIntegration.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SentryUIEventTrackingIntegration.h; path = Sources/Sentry/include/SentryUIEventTrackingIntegration.h; sourceTree = ""; }; 0562ABE5C152FC3E4C0842945ACD9343 /* SentryDispatchQueueWrapper.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SentryDispatchQueueWrapper.m; path = Sources/Sentry/SentryDispatchQueueWrapper.m; sourceTree = ""; }; 058C6DB64792C2B28D4B00A27C7D7BAC /* SentrySwift.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SentrySwift.h; path = Sources/Sentry/include/SentrySwift.h; sourceTree = ""; }; 05A080C0AF6D235E4A2CFFD438A6BA2C /* SentryUIEventTrackerMode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SentryUIEventTrackerMode.h; path = Sources/Sentry/include/SentryUIEventTrackerMode.h; sourceTree = ""; }; 05B2D17A07DA00F0CE0B0BC76C0D748B /* SentryTransportFactory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SentryTransportFactory.h; path = Sources/Sentry/include/SentryTransportFactory.h; sourceTree = ""; }; - 05DE087D13C32655BB2AF58C3A0A6CBA /* MobileScanner.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = MobileScanner.swift; path = "../../../../../../../../../.pub-cache/hosted/pub.dev/mobile_scanner-3.4.1/ios/Classes/MobileScanner.swift"; sourceTree = ""; }; + 05D3B7FC1B5C90B8C6ED72FFB439FA8E /* PrivacyInfo.xcprivacy */ = {isa = PBXFileReference; includeInIndex = 1; name = PrivacyInfo.xcprivacy; path = "../../../../../../../../../../../../../.pub-cache/hosted/pub.dev/path_provider_foundation-2.4.0/darwin/path_provider_foundation/Sources/path_provider_foundation/Resources/PrivacyInfo.xcprivacy"; sourceTree = ""; }; 0641D5CEDCD1B7EFF035667556F6FAAF /* SentryCrashStackCursor_Backtrace.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SentryCrashStackCursor_Backtrace.h; path = Sources/SentryCrash/Recording/Tools/SentryCrashStackCursor_Backtrace.h; sourceTree = ""; }; 0647BA986AA3E09EF95B8A8D84085B8F /* SentryScope+Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "SentryScope+Private.h"; path = "Sources/Sentry/include/SentryScope+Private.h"; sourceTree = ""; }; 0652FCE3FC19056983AABE058B3CC45B /* shared_preferences_foundation-shared_preferences_foundation_privacy */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; name = "shared_preferences_foundation-shared_preferences_foundation_privacy"; path = shared_preferences_foundation_privacy.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; - 06772A7CF38F34E24C0E8F60729C6339 /* local_auth_darwin.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = local_auth_darwin.release.xcconfig; sourceTree = ""; }; 0697E911C97E70B9C8FDE4884AE43D36 /* SentryTimeToDisplayTracker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SentryTimeToDisplayTracker.h; path = Sources/Sentry/include/SentryTimeToDisplayTracker.h; sourceTree = ""; }; 06B2373E23894ED38C36E5AC719B2BE7 /* GDTCORTargets.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORTargets.h; path = GoogleDataTransport/GDTCORLibrary/Public/GoogleDataTransport/GDTCORTargets.h; sourceTree = ""; }; - 06ED2B5C3CE883E614348B0A2925D587 /* PhotoPermissionStrategy.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PhotoPermissionStrategy.h; path = "../../../../../../../../../../.pub-cache/hosted/pub.dev/permission_handler_apple-9.4.5/ios/Classes/strategies/PhotoPermissionStrategy.h"; sourceTree = ""; }; + 06BB53DB10F08D41B6315565B16D2D47 /* IntegrationTestPlugin.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = IntegrationTestPlugin.m; path = ../../../../../../../../../../../../flutter/packages/integration_test/ios/integration_test/Sources/integration_test/IntegrationTestPlugin.m; sourceTree = ""; }; + 06CBC8E9472E758BFF443CF6F8D020A0 /* FLTImagePickerPlugin_Test.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FLTImagePickerPlugin_Test.h; path = "../../../../../../../../../../../../../../.pub-cache/hosted/pub.dev/image_picker_ios-0.8.12/ios/image_picker_ios/Sources/image_picker_ios/include/image_picker_ios/FLTImagePickerPlugin_Test.h"; sourceTree = ""; }; 06FC5C9CF96D60C50FCD47D339C91951 /* nanopb */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = nanopb; path = nanopb.framework; sourceTree = BUILT_PRODUCTS_DIR; }; + 072B734CEA11F29F9F5BC50BE72C85E4 /* image_picker_ios-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "image_picker_ios-prefix.pch"; sourceTree = ""; }; 074282E39D46BA74A765730C057AFC43 /* local_auth_darwin-local_auth_darwin_privacy */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; name = "local_auth_darwin-local_auth_darwin_privacy"; path = local_auth_darwin_privacy.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; 07440C8B6B6768F6216C2FC2EC534536 /* SentryMechanism.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SentryMechanism.m; path = Sources/Sentry/SentryMechanism.m; sourceTree = ""; }; 07458F25144B7F7CD48EB78A09027D03 /* SentryDateUtil.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SentryDateUtil.m; path = Sources/Sentry/SentryDateUtil.m; sourceTree = ""; }; - 075A07B70395CC8477DDA1E9DE788156 /* PrintJS.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = PrintJS.swift; path = "../../../../../../../../../../.pub-cache/hosted/pub.dev/flutter_inappwebview-5.8.0/ios/Classes/PluginScriptsJS/PrintJS.swift"; sourceTree = ""; }; 0790A032473476DE853BBFD34827B17F /* UrlSanitized.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = UrlSanitized.swift; path = Sources/Swift/Tools/UrlSanitized.swift; sourceTree = ""; }; 0795F3A1277FDD9E9F4AB3835BD86DB5 /* GDTCCTNanopbHelpers.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCCTNanopbHelpers.h; path = GoogleDataTransport/GDTCCTLibrary/Private/GDTCCTNanopbHelpers.h; sourceTree = ""; }; 07DB56BBA1FBE34C36EEAC3E9BBB3D7D /* SentryCrashExceptionApplication.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SentryCrashExceptionApplication.m; path = Sources/Sentry/SentryCrashExceptionApplication.m; sourceTree = ""; }; 0806483636617A49B3E1EA14FF9C3689 /* SentryBaggage.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SentryBaggage.m; path = Sources/Sentry/SentryBaggage.m; sourceTree = ""; }; - 0839238B639FEA11BCC1C9A453A162F7 /* shared_preferences_foundation.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; name = shared_preferences_foundation.podspec; path = "../../../../../../../../.pub-cache/hosted/pub.dev/shared_preferences_foundation-2.4.0/darwin/shared_preferences_foundation.podspec"; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 084CA2C1F3E73809901284C0BFBAC50D /* StoragePermissionStrategy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = StoragePermissionStrategy.m; path = "../../../../../../../../../../../.pub-cache/hosted/pub.dev/permission_handler_apple-9.4.5/ios/Classes/strategies/StoragePermissionStrategy.m"; sourceTree = ""; }; + 084FFF7D0B595B017CEF9420B3B7C428 /* SqfliteImport.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SqfliteImport.h; path = "../../../../../../../../../../.pub-cache/hosted/pub.dev/sqflite-2.3.3+1/darwin/Classes/SqfliteImport.h"; sourceTree = ""; }; 087F337F75359AC59255B780EC773058 /* SentryTracer+Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "SentryTracer+Private.h"; path = "Sources/Sentry/include/SentryTracer+Private.h"; sourceTree = ""; }; 08BACB3B54C8516ED740E1005B106657 /* GDTCORReachability.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTCORReachability.m; path = GoogleDataTransport/GDTCORLibrary/GDTCORReachability.m; sourceTree = ""; }; 08BCF888CAEA1FF01E47BB34DC9D6B5D /* SentryMsgPackSerializer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SentryMsgPackSerializer.m; path = Sources/Sentry/SentryMsgPackSerializer.m; sourceTree = ""; }; - 090FD215777C1FACEE2A5223696527D6 /* connectivity_plus-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "connectivity_plus-umbrella.h"; sourceTree = ""; }; 0954CD2C86A1BC5EB8EE626EFAD02E05 /* SentryCrashSymbolicator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SentryCrashSymbolicator.h; path = Sources/SentryCrash/Recording/Tools/SentryCrashSymbolicator.h; sourceTree = ""; }; 09591BCE938F1C26C6D192C1AB4F10A6 /* GoogleUtilities.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = GoogleUtilities.debug.xcconfig; sourceTree = ""; }; - 095A7EF55EACDD7A2B4E9DB288CC5799 /* FLTIntegrationTestRunner.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FLTIntegrationTestRunner.m; path = ../../../../../../../../../../../flutter/packages/integration_test/ios/integration_test/Sources/integration_test/FLTIntegrationTestRunner.m; sourceTree = ""; }; 095B6C804AC1BB0A8986EFC60AB3066A /* SentryCrashJSONCodecObjC.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SentryCrashJSONCodecObjC.h; path = Sources/SentryCrash/Recording/Tools/SentryCrashJSONCodecObjC.h; sourceTree = ""; }; - 0967BEC6E942428159C448061BFFF419 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; name = LICENSE; path = "../../../../../../../../.pub-cache/hosted/pub.dev/url_launcher_ios-6.3.0/LICENSE"; sourceTree = ""; }; - 09AECB420E5CD13406B4EF8C977FCED2 /* InAppWebViewOptions.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = InAppWebViewOptions.swift; path = "../../../../../../../../../../.pub-cache/hosted/pub.dev/flutter_inappwebview-5.8.0/ios/Classes/InAppWebView/InAppWebViewOptions.swift"; sourceTree = ""; }; 09FCCCA850AAE7D373DBD3CD330554EC /* SentryCrashInstallationReporter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SentryCrashInstallationReporter.m; path = Sources/Sentry/SentryCrashInstallationReporter.m; sourceTree = ""; }; 0A1E1758126E311BF0C6A690BE2C784A /* SentrySDK.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SentrySDK.m; path = Sources/Sentry/SentrySDK.m; sourceTree = ""; }; 0A729C10CDE198780944372E7BFB66E4 /* SentryReplayRecording.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SentryReplayRecording.h; path = Sources/Sentry/include/SentryReplayRecording.h; sourceTree = ""; }; @@ -1894,62 +1889,63 @@ 0A7D3E86EBA808B1F87A41322646A9B3 /* SentryWatchdogTerminationTrackingIntegration.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SentryWatchdogTerminationTrackingIntegration.m; path = Sources/Sentry/SentryWatchdogTerminationTrackingIntegration.m; sourceTree = ""; }; 0AB9AD35C4BCCC119216B7F1F77863C4 /* GTMDefines.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = GTMDefines.h; sourceTree = ""; }; 0ADB1EBCA156C101DE6A4947791BD671 /* SentryDateUtil.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SentryDateUtil.h; path = Sources/Sentry/include/SentryDateUtil.h; sourceTree = ""; }; + 0B04FA279B07F968FEA7238CCE55189C /* sentry_flutter-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "sentry_flutter-umbrella.h"; sourceTree = ""; }; 0B104C194A78681D3581ACE91FF23CA4 /* SentryIntegrationProtocol.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SentryIntegrationProtocol.swift; path = Sources/Swift/Protocol/SentryIntegrationProtocol.swift; sourceTree = ""; }; - 0B7A20766BD9058845163D99C76C3663 /* MediaLibraryPermissionStrategy.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MediaLibraryPermissionStrategy.h; path = "../../../../../../../../../../.pub-cache/hosted/pub.dev/permission_handler_apple-9.4.5/ios/Classes/strategies/MediaLibraryPermissionStrategy.h"; sourceTree = ""; }; - 0BD10FAF5967B172B9A9BAFC9B3D4C49 /* SqfliteDarwinDatabase.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SqfliteDarwinDatabase.h; path = "../../../../../../../../../.pub-cache/hosted/pub.dev/sqflite-2.3.3+1/darwin/Classes/SqfliteDarwinDatabase.h"; sourceTree = ""; }; + 0B1332C32796BBB871B5BC9A132E7879 /* Launcher.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Launcher.swift; path = "../../../../../../../../../../../../.pub-cache/hosted/pub.dev/url_launcher_ios-6.3.0/ios/url_launcher_ios/Sources/url_launcher_ios/Launcher.swift"; sourceTree = ""; }; 0BD743F68C827502DB62D31534B6E25A /* SentryANRTracker.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SentryANRTracker.m; path = Sources/Sentry/SentryANRTracker.m; sourceTree = ""; }; - 0BDAE31134E038637B7A2CDDC1482B44 /* SensorPermissionStrategy.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SensorPermissionStrategy.h; path = "../../../../../../../../../../.pub-cache/hosted/pub.dev/permission_handler_apple-9.4.5/ios/Classes/strategies/SensorPermissionStrategy.h"; sourceTree = ""; }; - 0BE5DF8A50A053A75A3666A46815DD01 /* OriginalViewPortMetaTagContentJS.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = OriginalViewPortMetaTagContentJS.swift; path = "../../../../../../../../../../.pub-cache/hosted/pub.dev/flutter_inappwebview-5.8.0/ios/Classes/PluginScriptsJS/OriginalViewPortMetaTagContentJS.swift"; sourceTree = ""; }; 0BE600D4F07EEEA69C77B1277281398B /* GDTCORUploadBatch.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTCORUploadBatch.m; path = GoogleDataTransport/GDTCORLibrary/GDTCORUploadBatch.m; sourceTree = ""; }; 0C45BC473744E822B32F54305A7C1C5C /* NSURLSession+GULPromises.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSURLSession+GULPromises.h"; path = "GoogleUtilities/Environment/Public/GoogleUtilities/NSURLSession+GULPromises.h"; sourceTree = ""; }; + 0C64E31F3F902F928B941D77A1E623BB /* ResourceBundle-permission_handler_apple_privacy-permission_handler_apple-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "ResourceBundle-permission_handler_apple_privacy-permission_handler_apple-Info.plist"; sourceTree = ""; }; 0C8CF44885986E9DD45B473E1C779E93 /* Sentry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Sentry.h; path = Sources/Sentry/Public/Sentry.h; sourceTree = ""; }; 0CA0B86DE5F4F225F05140A3AE512DEE /* GDTCORDirectorySizeTracker.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTCORDirectorySizeTracker.m; path = GoogleDataTransport/GDTCORLibrary/GDTCORDirectorySizeTracker.m; sourceTree = ""; }; + 0CFC849C453EF54186A1E08F9537BFA9 /* mobile_scanner.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = mobile_scanner.modulemap; sourceTree = ""; }; 0D1378232D0E5A4773F9584572B6DD83 /* PromisesObjC-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "PromisesObjC-umbrella.h"; sourceTree = ""; }; 0D1DD732D2C71E277FA81D7A9CD63CEF /* SentryInternalDefines.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SentryInternalDefines.h; path = Sources/Sentry/include/SentryInternalDefines.h; sourceTree = ""; }; + 0D7844EC716ED5F30BAC73849BDA1A7D /* flutter_nekoton_bridge-xcframeworks.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "flutter_nekoton_bridge-xcframeworks.sh"; sourceTree = ""; }; 0D79CD7BAB911B77C3EEB85F93029450 /* IsAppEncrypted.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = IsAppEncrypted.m; path = third_party/IsAppEncrypted/IsAppEncrypted.m; sourceTree = ""; }; 0D7AC98C2CC32116806680D81103851B /* SentryNSURLRequestBuilder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SentryNSURLRequestBuilder.h; path = Sources/Sentry/include/SentryNSURLRequestBuilder.h; sourceTree = ""; }; - 0DFFFBACD219B36433C22F177CCB17F9 /* FindElementsAtPointJS.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = FindElementsAtPointJS.swift; path = "../../../../../../../../../../.pub-cache/hosted/pub.dev/flutter_inappwebview-5.8.0/ios/Classes/PluginScriptsJS/FindElementsAtPointJS.swift"; sourceTree = ""; }; + 0DB9807AB269DA3CF5EEAC3603677A07 /* flutter_secure_storage-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "flutter_secure_storage-umbrella.h"; sourceTree = ""; }; + 0E3E953DD36433BBB2B7A736009B7736 /* WindowIdJS.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = WindowIdJS.swift; path = "../../../../../../../../../../../.pub-cache/hosted/pub.dev/flutter_inappwebview-5.8.0/ios/Classes/PluginScriptsJS/WindowIdJS.swift"; sourceTree = ""; }; 0E4B86453487A1B28A3F6E54AADBD43C /* GDTCORFlatFileStorage.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTCORFlatFileStorage.m; path = GoogleDataTransport/GDTCORLibrary/GDTCORFlatFileStorage.m; sourceTree = ""; }; 0E95E1622AE3A8ECD9572E38ECCC7DA7 /* GoogleToolboxForMac.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = GoogleToolboxForMac.release.xcconfig; sourceTree = ""; }; 0EBDDE1816B7927B2D7DFFAF44F0120E /* SentryMachLogging.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = SentryMachLogging.cpp; path = Sources/Sentry/SentryMachLogging.cpp; sourceTree = ""; }; 0ECFAA9267D340FB2BB767DB24730257 /* SentryEnvelope+Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "SentryEnvelope+Private.h"; path = "Sources/Sentry/include/SentryEnvelope+Private.h"; sourceTree = ""; }; 0F0A8173A61664BB714BE2F8560DC4E4 /* GULNetworkInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULNetworkInfo.h; path = GoogleUtilities/Environment/Public/GoogleUtilities/GULNetworkInfo.h; sourceTree = ""; }; 0F0CF5B8DD8C47040410B0C606FC0973 /* GDTCORClock.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORClock.h; path = GoogleDataTransport/GDTCORLibrary/Public/GoogleDataTransport/GDTCORClock.h; sourceTree = ""; }; - 0F358A90004752CDA0382091B81438F4 /* BackgroundRefreshStrategy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = BackgroundRefreshStrategy.m; path = "../../../../../../../../../../.pub-cache/hosted/pub.dev/permission_handler_apple-9.4.5/ios/Classes/strategies/BackgroundRefreshStrategy.m"; sourceTree = ""; }; 0F40C5238B4C9E64C8B9FDF9BB69C124 /* SentryAttachment.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SentryAttachment.m; path = Sources/Sentry/SentryAttachment.m; sourceTree = ""; }; + 0F62AA5AF0EE048AB478074EDD1A2CD4 /* connectivity_plus.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = connectivity_plus.release.xcconfig; sourceTree = ""; }; 0F7C1C60107CFDFC0652DEA0F788BEEB /* mobile_scanner */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = mobile_scanner; path = mobile_scanner.framework; sourceTree = BUILT_PRODUCTS_DIR; }; - 0F9830A64F46BE5F8F63DC2D219EA07C /* flutter_nekoton_bridge-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "flutter_nekoton_bridge-dummy.m"; sourceTree = ""; }; 0FCD88646EB517501FB94E952A18D859 /* GoogleUtilitiesComponents-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "GoogleUtilitiesComponents-dummy.m"; sourceTree = ""; }; - 1005DBA5EC4B368EDB36970A459EF93A /* connectivity_plus.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = connectivity_plus.modulemap; sourceTree = ""; }; + 0FDDBCF20FC3DA317D3A5B5E5B73719A /* InAppBrowserNavigationController.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = InAppBrowserNavigationController.swift; path = "../../../../../../../../../../../.pub-cache/hosted/pub.dev/flutter_inappwebview-5.8.0/ios/Classes/InAppBrowser/InAppBrowserNavigationController.swift"; sourceTree = ""; }; 101411F6DAA29F227BEB9B655D020700 /* SentrySystemEventBreadcrumbs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SentrySystemEventBreadcrumbs.h; path = Sources/Sentry/include/SentrySystemEventBreadcrumbs.h; sourceTree = ""; }; 1017C5D7AA4D2F248AF31C2FE2C74578 /* SentryFrame.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SentryFrame.h; path = Sources/Sentry/Public/SentryFrame.h; sourceTree = ""; }; 1029DC038BBB4DE3F15ACA271F4969C7 /* SentryScreenshot.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SentryScreenshot.m; path = Sources/Sentry/SentryScreenshot.m; sourceTree = ""; }; - 10374FD89775961D2C3FE28F78A0E830 /* SwiftMobileScannerPlugin.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SwiftMobileScannerPlugin.swift; path = "../../../../../../../../../.pub-cache/hosted/pub.dev/mobile_scanner-3.4.1/ios/Classes/SwiftMobileScannerPlugin.swift"; sourceTree = ""; }; 1074A150AD4504289C5331DFEA3C42DC /* SentryCrashMonitor_NSException.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SentryCrashMonitor_NSException.h; path = Sources/SentryCrash/Recording/Monitors/SentryCrashMonitor_NSException.h; sourceTree = ""; }; - 10864F3E8C3F89FB23B46C36F9BBD8FE /* NSAttributedString.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = NSAttributedString.swift; path = "../../../../../../../../../../.pub-cache/hosted/pub.dev/flutter_inappwebview-5.8.0/ios/Classes/Types/NSAttributedString.swift"; sourceTree = ""; }; 10E76D412255ABCE0124DF023FDE848D /* MLKit.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MLKit.h; path = MLKitCore/Sources/MLKit.h; sourceTree = ""; }; 1102E1959C2021EDAD7D74ED2D790543 /* SentrySpanContext.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SentrySpanContext.m; path = Sources/Sentry/SentrySpanContext.m; sourceTree = ""; }; - 11A5218DCFEC8C72A4898C0D2BB381FC /* SwiftFlutterSecureStoragePlugin.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SwiftFlutterSecureStoragePlugin.swift; path = "../../../../../../../../../.pub-cache/hosted/pub.dev/flutter_secure_storage-9.2.2/ios/Classes/SwiftFlutterSecureStoragePlugin.swift"; sourceTree = ""; }; 11A8899076D5FAF2FBE3A0DE09C7EBB5 /* SentryCrashC.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SentryCrashC.h; path = Sources/SentryCrash/Recording/SentryCrashC.h; sourceTree = ""; }; - 11E93C254E930A2094F7099F7F2029E6 /* PrivacyInfo.xcprivacy */ = {isa = PBXFileReference; includeInIndex = 1; name = PrivacyInfo.xcprivacy; path = "../../../../../../../../../.pub-cache/hosted/pub.dev/flutter_native_splash-2.4.0/ios/Resources/PrivacyInfo.xcprivacy"; sourceTree = ""; }; + 11C40968328E2018287FAC6E61BE4B8F /* sentry_flutter-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "sentry_flutter-prefix.pch"; sourceTree = ""; }; + 11E30E151CBD5B5809541ECBA746CB17 /* integration_test-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "integration_test-prefix.pch"; sourceTree = ""; }; 11E9B0F96B20D63D8EFB2065D2A89716 /* GULLogger.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULLogger.m; path = GoogleUtilities/Logger/GULLogger.m; sourceTree = ""; }; 11EB5DD1C215E4268AE639D85D89F5C3 /* FBLPromise+Always.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FBLPromise+Always.m"; path = "Sources/FBLPromises/FBLPromise+Always.m"; sourceTree = ""; }; 1215052680548C931BBB686371349F46 /* SentryError.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = SentryError.mm; path = Sources/Sentry/SentryError.mm; sourceTree = ""; }; + 127211CB3FCD83493BF0DBEE63BB55F8 /* flutter_native_splash-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "flutter_native_splash-umbrella.h"; sourceTree = ""; }; 128FC7FFE85370D75FB38EC31F4C2738 /* SentryViewHierarchyIntegration.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SentryViewHierarchyIntegration.h; path = Sources/Sentry/include/SentryViewHierarchyIntegration.h; sourceTree = ""; }; + 129FB7CF81CB39498137E4F2C276CD11 /* image_picker_ios.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = image_picker_ios.modulemap; sourceTree = ""; }; 12D11599E49050D82F8AA7E2CA54BB84 /* SentryScreenFrames.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SentryScreenFrames.h; path = Sources/Sentry/include/HybridPublic/SentryScreenFrames.h; sourceTree = ""; }; + 13146A48D1544CF0CF218B3A514C848E /* flutter_secure_storage.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = flutter_secure_storage.release.xcconfig; sourceTree = ""; }; 1335EE0DA99A5CEFD960E89A390F37C0 /* FBLPromise+Delay.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBLPromise+Delay.h"; path = "Sources/FBLPromises/include/FBLPromise+Delay.h"; sourceTree = ""; }; + 133FF68502FC0F45FEE20D53BDC71434 /* ResourceBundle-sqflite_darwin_privacy-sqflite-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "ResourceBundle-sqflite_darwin_privacy-sqflite-Info.plist"; sourceTree = ""; }; 1362538590AA6137736FBD60B45E65C0 /* SentryCrashSymbolicator.c */ = {isa = PBXFileReference; includeInIndex = 1; name = SentryCrashSymbolicator.c; path = Sources/SentryCrash/Recording/Tools/SentryCrashSymbolicator.c; sourceTree = ""; }; 137057CF8F6C9E44DF71B4288D56F988 /* GULUserDefaults.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULUserDefaults.m; path = GoogleUtilities/UserDefaults/GULUserDefaults.m; sourceTree = ""; }; 1370D6C75A46526378BDFE7E731DEA5F /* SentryReplayEvent.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SentryReplayEvent.m; path = Sources/Sentry/SentryReplayEvent.m; sourceTree = ""; }; - 1372971D81F12D53D144676DF82636DC /* flutter_keyboard_visibility.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = flutter_keyboard_visibility.debug.xcconfig; sourceTree = ""; }; 13CA0401AEFD3CDD9FA791F4FECA251E /* PrivacyInfo.xcprivacy */ = {isa = PBXFileReference; includeInIndex = 1; name = PrivacyInfo.xcprivacy; path = Sources/Resources/PrivacyInfo.xcprivacy; sourceTree = ""; }; 13CE41860C1C1B5C77FC793DC0F3A466 /* SentrySample.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SentrySample.h; path = Sources/Sentry/include/SentrySample.h; sourceTree = ""; }; - 13DB3ACD9F6A6767EEFE5919FB3EA7A0 /* sentry_flutter-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "sentry_flutter-prefix.pch"; sourceTree = ""; }; - 1463A6B033371A2348BD00873FFC7A0B /* package_info_plus-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "package_info_plus-umbrella.h"; sourceTree = ""; }; - 14874210F011FB025B8A19341D7941C0 /* URLAuthenticationChallenge.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = URLAuthenticationChallenge.swift; path = "../../../../../../../../../../.pub-cache/hosted/pub.dev/flutter_inappwebview-5.8.0/ios/Classes/Types/URLAuthenticationChallenge.swift"; sourceTree = ""; }; - 14D3318652D3E88B1F58FCE0D1C4760C /* PrivacyInfo.xcprivacy */ = {isa = PBXFileReference; includeInIndex = 1; name = PrivacyInfo.xcprivacy; path = "../../../../../../../../.pub-cache/hosted/pub.dev/connectivity_plus-6.0.5/darwin/PrivacyInfo.xcprivacy"; sourceTree = ""; }; + 13F095CB2C4A075347217053B769CE11 /* ResourceBundle-flutter_secure_storage-flutter_secure_storage-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "ResourceBundle-flutter_secure_storage-flutter_secure_storage-Info.plist"; sourceTree = ""; }; + 14095BA69201A92D570BECBAE4BC4F9C /* SqfliteDarwinResultSet.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SqfliteDarwinResultSet.m; path = "../../../../../../../../../../.pub-cache/hosted/pub.dev/sqflite-2.3.3+1/darwin/Classes/SqfliteDarwinResultSet.m"; sourceTree = ""; }; + 148703012B70444E07ADD934486CCB2C /* EventPermissionStrategy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EventPermissionStrategy.m; path = "../../../../../../../../../../../.pub-cache/hosted/pub.dev/permission_handler_apple-9.4.5/ios/Classes/strategies/EventPermissionStrategy.m"; sourceTree = ""; }; + 15051AC442FEF4B644008D3C002446D4 /* DownloadStartRequest.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = DownloadStartRequest.swift; path = "../../../../../../../../../../../.pub-cache/hosted/pub.dev/flutter_inappwebview-5.8.0/ios/Classes/Types/DownloadStartRequest.swift"; sourceTree = ""; }; 153CD7074435D16BE02233B8AF13E1CF /* FBLPromisePrivate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBLPromisePrivate.h; path = Sources/FBLPromises/include/FBLPromisePrivate.h; sourceTree = ""; }; - 154DBF6E97523835F2CB9615BB62FE8E /* url_launcher_ios.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = url_launcher_ios.debug.xcconfig; sourceTree = ""; }; 15A0717F25BD4AD0545E9DC054FE5D31 /* SentryCrashID.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SentryCrashID.h; path = Sources/SentryCrash/Recording/Tools/SentryCrashID.h; sourceTree = ""; }; 16C64CF2440BD4314A7E6AA7C4B3824F /* SentryMeta.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SentryMeta.m; path = Sources/Sentry/SentryMeta.m; sourceTree = ""; }; 16E2AE0248BE22404B43BC748BEDC1C9 /* FBLPromise+Wrap.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBLPromise+Wrap.h"; path = "Sources/FBLPromises/include/FBLPromise+Wrap.h"; sourceTree = ""; }; @@ -1958,256 +1954,261 @@ 174A404E5520E04A1767C00C0DE52FBB /* SentryCrashDynamicLinker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SentryCrashDynamicLinker.h; path = Sources/SentryCrash/Recording/Tools/SentryCrashDynamicLinker.h; sourceTree = ""; }; 17885CA53B9E47BCDBC1272F41083C90 /* GDTCOREndpoints.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTCOREndpoints.m; path = GoogleDataTransport/GDTCORLibrary/GDTCOREndpoints.m; sourceTree = ""; }; 17C6CB15ABD2C85B0830E662363D33B6 /* SentryCrashReportFilterBasic.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SentryCrashReportFilterBasic.h; path = Sources/SentryCrash/Reporting/Filters/SentryCrashReportFilterBasic.h; sourceTree = ""; }; - 17D03953D364524A4455825582BD75D3 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; name = LICENSE; path = "../../../../../../../../.pub-cache/hosted/pub.dev/flutter_email_sender-6.0.3/LICENSE"; sourceTree = ""; }; - 183487F45B77A2EDEF4FD5D3FB39E9D6 /* flutter_email_sender.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = flutter_email_sender.modulemap; sourceTree = ""; }; + 17F0737683AB458FA39A0DF3DB75E0FA /* FLTImagePickerPhotoAssetUtil.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FLTImagePickerPhotoAssetUtil.m; path = "../../../../../../../../../../../../.pub-cache/hosted/pub.dev/image_picker_ios-0.8.12/ios/image_picker_ios/Sources/image_picker_ios/FLTImagePickerPhotoAssetUtil.m"; sourceTree = ""; }; + 181513F01FB113F13B8FDB35C4F9CA28 /* InAppWebViewOptions.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = InAppWebViewOptions.swift; path = "../../../../../../../../../../../.pub-cache/hosted/pub.dev/flutter_inappwebview-5.8.0/ios/Classes/InAppWebView/InAppWebViewOptions.swift"; sourceTree = ""; }; + 181F9761EDE7EE132BFC0CDD5947C064 /* ResourceBundle-flutter_email_sender-flutter_email_sender-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "ResourceBundle-flutter_email_sender-flutter_email_sender-Info.plist"; sourceTree = ""; }; + 182428C3583489C33FCF4BF75215561A /* sentry_flutter-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "sentry_flutter-Info.plist"; sourceTree = ""; }; 18358020B1AD5CC8C84504E29E9C5948 /* GTMSessionFetcher.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GTMSessionFetcher.m; path = Sources/Core/GTMSessionFetcher.m; sourceTree = ""; }; - 1879F0A7540831E7D2AC7D9DDF37F2B5 /* EnforceBundling.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = EnforceBundling.swift; path = "../../../../../../../../../.pub-cache/git/nekoton_bridge-39a53e71ffec0668e4384a61c3fc5a9695b7687c/packages/flutter_nekoton_bridge/ios/Classes/EnforceBundling.swift"; sourceTree = ""; }; + 18C6F37B21993F5457242E888D684C85 /* share_plus-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "share_plus-prefix.pch"; sourceTree = ""; }; 18C90F2A843714057F6721C503653141 /* PrivacyInfo.xcprivacy */ = {isa = PBXFileReference; includeInIndex = 1; name = PrivacyInfo.xcprivacy; path = GoogleUtilities/Privacy/Resources/PrivacyInfo.xcprivacy; sourceTree = ""; }; + 18CB7B5FCB45ADAC4A95C8575E85CFE7 /* InAppWebViewFlutterPlugin.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = InAppWebViewFlutterPlugin.h; path = "../../../../../../../../../../.pub-cache/hosted/pub.dev/flutter_inappwebview-5.8.0/ios/Classes/InAppWebViewFlutterPlugin.h"; sourceTree = ""; }; 190AC42255EA672A61B74096235AB92A /* SentryClientReport.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SentryClientReport.m; path = Sources/Sentry/SentryClientReport.m; sourceTree = ""; }; 1914513E3BA15F3ACC94C39F5716FCAD /* SentryCrashStackCursor_MachineContext.c */ = {isa = PBXFileReference; includeInIndex = 1; name = SentryCrashStackCursor_MachineContext.c; path = Sources/SentryCrash/Recording/Tools/SentryCrashStackCursor_MachineContext.c; sourceTree = ""; }; - 191EEBE4C7DDE9B7E0187F181BD5C531 /* PrivacyInfo.xcprivacy */ = {isa = PBXFileReference; includeInIndex = 1; name = PrivacyInfo.xcprivacy; path = "../../../../../../../../../../../../.pub-cache/hosted/pub.dev/image_picker_ios-0.8.12/ios/image_picker_ios/Sources/image_picker_ios/Resources/PrivacyInfo.xcprivacy"; sourceTree = ""; }; + 19156C8DC8376C68638F7EDD562EE60F /* WebMessageChannel.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = WebMessageChannel.swift; path = "../../../../../../../../../../../.pub-cache/hosted/pub.dev/flutter_inappwebview-5.8.0/ios/Classes/Types/WebMessageChannel.swift"; sourceTree = ""; }; 192E5316A100FF81BED4C3679FE68600 /* SentryCrashMonitor_CPPException.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SentryCrashMonitor_CPPException.h; path = Sources/SentryCrash/Recording/Monitors/SentryCrashMonitor_CPPException.h; sourceTree = ""; }; - 1947013809725794409F0DA5FEAE3537 /* StoragePermissionStrategy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = StoragePermissionStrategy.m; path = "../../../../../../../../../../.pub-cache/hosted/pub.dev/permission_handler_apple-9.4.5/ios/Classes/strategies/StoragePermissionStrategy.m"; sourceTree = ""; }; - 194B408ABAD03A1FEF4AC4F0201DB0F4 /* flutter_email_sender-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "flutter_email_sender-umbrella.h"; sourceTree = ""; }; + 196B9320A9BD7C09E7C5420F49D709B3 /* share_plus.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = share_plus.release.xcconfig; sourceTree = ""; }; + 19BD32E8F3B368CB5393E897ADA3B84D /* ConnectivityProvider.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ConnectivityProvider.swift; path = "../../../../../../../../../../.pub-cache/hosted/pub.dev/connectivity_plus-6.0.5/darwin/Classes/ConnectivityProvider.swift"; sourceTree = ""; }; 19CE9AC8B13646CC03FBC77F131FF183 /* GoogleDataTransport.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = GoogleDataTransport.release.xcconfig; sourceTree = ""; }; 19E95F3D72548415AF768AA1089369AC /* pb_encode.c */ = {isa = PBXFileReference; includeInIndex = 1; path = pb_encode.c; sourceTree = ""; }; - 1A2562D11E950D44C107CA5BD8C795E9 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; name = LICENSE; path = "../../../../../../../../.pub-cache/hosted/pub.dev/sentry_flutter-7.20.2/LICENSE"; sourceTree = ""; }; - 1A59C76A8AE0A90CB5787DB66A896FDB /* mobile_scanner.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; name = mobile_scanner.podspec; path = "../../../../../../../../.pub-cache/hosted/pub.dev/mobile_scanner-3.4.1/ios/mobile_scanner.podspec"; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 1AAB4FF7835FA52AF5768D7967082304 /* frb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = frb.h; path = "../../../../../../../../../.pub-cache/git/nekoton_bridge-39a53e71ffec0668e4384a61c3fc5a9695b7687c/packages/flutter_nekoton_bridge/ios/Classes/frb.h"; sourceTree = ""; }; + 19EF02DC76D896E38265ECFA835AA715 /* BluetoothPermissionStrategy.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = BluetoothPermissionStrategy.h; path = "../../../../../../../../../../../.pub-cache/hosted/pub.dev/permission_handler_apple-9.4.5/ios/Classes/strategies/BluetoothPermissionStrategy.h"; sourceTree = ""; }; + 1A63C891959EB0F21AF9F4D2A16EA73D /* connectivity_plus-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "connectivity_plus-Info.plist"; sourceTree = ""; }; 1B068CDDEE40925B45BBF998C6C3CB8A /* GULHeartbeatDateStorageUserDefaults.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULHeartbeatDateStorageUserDefaults.h; path = GoogleUtilities/Environment/Public/GoogleUtilities/GULHeartbeatDateStorageUserDefaults.h; sourceTree = ""; }; 1BBA0D981E461B32AC53D1A903F22D42 /* UIViewController+Sentry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIViewController+Sentry.h"; path = "Sources/Sentry/include/UIViewController+Sentry.h"; sourceTree = ""; }; 1BC2B4C3413CC2A47158DB170BD1BF10 /* GULCCComponent.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULCCComponent.m; path = GoogleUtilitiesComponents/Sources/GULCCComponent.m; sourceTree = ""; }; - 1BD2816772DEF178FF6B5F47E0B46992 /* mobile_scanner.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = mobile_scanner.modulemap; sourceTree = ""; }; 1BD80644A5AC4605105FA5EA546995D9 /* SentryMsgPackSerializer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SentryMsgPackSerializer.h; path = Sources/Sentry/include/SentryMsgPackSerializer.h; sourceTree = ""; }; 1C127815933B174A0532DE97130FAF17 /* SentryCoreDataSwizzling.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SentryCoreDataSwizzling.m; path = Sources/Sentry/SentryCoreDataSwizzling.m; sourceTree = ""; }; 1C3555C32687C31DDF6C99B94082EC13 /* SentryMigrateSessionInit.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SentryMigrateSessionInit.m; path = Sources/Sentry/SentryMigrateSessionInit.m; sourceTree = ""; }; 1C43C906B742CE6222C2F7940F3408A4 /* SentryTransportAdapter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SentryTransportAdapter.h; path = Sources/Sentry/include/SentryTransportAdapter.h; sourceTree = ""; }; + 1C4E920D8B793EA0076FE4A24106A39F /* SqfliteDarwinDB.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SqfliteDarwinDB.h; path = "../../../../../../../../../../.pub-cache/hosted/pub.dev/sqflite-2.3.3+1/darwin/Classes/SqfliteDarwinDB.h"; sourceTree = ""; }; + 1C971C3735633EE7FDAEE71AADDBCAFF /* OnWindowBlurEventJS.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = OnWindowBlurEventJS.swift; path = "../../../../../../../../../../../.pub-cache/hosted/pub.dev/flutter_inappwebview-5.8.0/ios/Classes/PluginScriptsJS/OnWindowBlurEventJS.swift"; sourceTree = ""; }; 1CDB51AB0562125B2DF6D35CD6711B41 /* GDTCCTUploadOperation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCCTUploadOperation.h; path = GoogleDataTransport/GDTCCTLibrary/Private/GDTCCTUploadOperation.h; sourceTree = ""; }; - 1D2355FD138907962A151973A3FB89DA /* flutter_nekoton_bridge.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = flutter_nekoton_bridge.debug.xcconfig; sourceTree = ""; }; - 1DEB133FC3CF851DF4F948FFB54C5421 /* permission_handler_apple.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; name = permission_handler_apple.podspec; path = "../../../../../../../../.pub-cache/hosted/pub.dev/permission_handler_apple-9.4.5/ios/permission_handler_apple.podspec"; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 1D160FBEBBB1D964CBAFE6B9C94554F5 /* FlutterSecureStoragePlugin.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FlutterSecureStoragePlugin.m; path = "../../../../../../../../../../.pub-cache/hosted/pub.dev/flutter_secure_storage-9.2.2/ios/Classes/FlutterSecureStoragePlugin.m"; sourceTree = ""; }; 1E0C4DAB3C1C4E91BB01F7F0F2A16953 /* SentryCrashMach.c */ = {isa = PBXFileReference; includeInIndex = 1; name = SentryCrashMach.c; path = Sources/SentryCrash/Recording/Tools/SentryCrashMach.c; sourceTree = ""; }; - 1E47B40DD78F33D7394C9CDADE9B41A7 /* share_plus.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = share_plus.release.xcconfig; sourceTree = ""; }; 1E75EE035F5EB29AEAC88D138FC81274 /* SentryCrashReportStore.c */ = {isa = PBXFileReference; includeInIndex = 1; name = SentryCrashReportStore.c; path = Sources/SentryCrash/Recording/SentryCrashReportStore.c; sourceTree = ""; }; 1EA4F9CB399BCC8C96A6BC6297305EFE /* SentryScreenshotIntegration.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SentryScreenshotIntegration.h; path = Sources/Sentry/include/SentryScreenshotIntegration.h; sourceTree = ""; }; - 1F2764E8268C46A61F31FDB3FA362A7A /* WKNavigationResponse.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = WKNavigationResponse.swift; path = "../../../../../../../../../../.pub-cache/hosted/pub.dev/flutter_inappwebview-5.8.0/ios/Classes/Types/WKNavigationResponse.swift"; sourceTree = ""; }; + 1EAE0DC233EA4B730542869D852B8D54 /* EnforceBundling.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = EnforceBundling.swift; path = "../../../../../../../../../../.pub-cache/hosted/pub.dev/flutter_nekoton_bridge-2.0.0/ios/Classes/EnforceBundling.swift"; sourceTree = ""; }; 1F74F6D9D5F87F31B7A5F7B0D6DA7DD0 /* SentryLevelMapper.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SentryLevelMapper.m; path = Sources/Sentry/SentryLevelMapper.m; sourceTree = ""; }; - 1F985D15FBDD8B3FDF6763750490369D /* FlutterNativeSplashPlugin.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FlutterNativeSplashPlugin.h; path = "../../../../../../../../../.pub-cache/hosted/pub.dev/flutter_native_splash-2.4.0/ios/Classes/FlutterNativeSplashPlugin.h"; sourceTree = ""; }; + 1FA39D45CBD24AAC1A80A7911DD5D0E4 /* FLTPHPickerSaveImageToPathOperation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FLTPHPickerSaveImageToPathOperation.m; path = "../../../../../../../../../../../../.pub-cache/hosted/pub.dev/image_picker_ios-0.8.12/ios/image_picker_ios/Sources/image_picker_ios/FLTPHPickerSaveImageToPathOperation.m"; sourceTree = ""; }; 1FB6A8C90B1DEA55B361A5A2C264D21D /* GoogleUtilitiesComponents.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = GoogleUtilitiesComponents.debug.xcconfig; sourceTree = ""; }; - 1FEA7CFB3121FF5495C507EFD69EBDFA /* SqfliteDarwinDatabaseQueue.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SqfliteDarwinDatabaseQueue.m; path = "../../../../../../../../../.pub-cache/hosted/pub.dev/sqflite-2.3.3+1/darwin/Classes/SqfliteDarwinDatabaseQueue.m"; sourceTree = ""; }; + 1FEC9B2165A31268AD21A6FDE5000E47 /* sentry_flutter.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = sentry_flutter.modulemap; sourceTree = ""; }; 202F85E0834F8D0D431F865A7388B4FC /* SentryNSURLRequest.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SentryNSURLRequest.h; path = Sources/Sentry/include/SentryNSURLRequest.h; sourceTree = ""; }; - 205274A6BF529EC9C42634BDAAB5B69F /* flutter_inappwebview-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "flutter_inappwebview-umbrella.h"; sourceTree = ""; }; - 20B143526F384FD4BC4962D807AC3C9E /* ConnectivityProvider.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ConnectivityProvider.swift; path = "../../../../../../../../../.pub-cache/hosted/pub.dev/connectivity_plus-6.0.5/darwin/Classes/ConnectivityProvider.swift"; sourceTree = ""; }; 20B4B5ADF0E6BC94D9D45FA5E40997C8 /* SentryCrashIsAppImage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SentryCrashIsAppImage.h; path = Sources/Sentry/include/SentryCrashIsAppImage.h; sourceTree = ""; }; 211182261568C6AEBD288953F2F777AB /* SentryHttpDateParser.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SentryHttpDateParser.m; path = Sources/Sentry/SentryHttpDateParser.m; sourceTree = ""; }; 21823293F7E98868C0AC99C68490EE78 /* PrivatesHeader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PrivatesHeader.h; path = Sources/Sentry/include/HybridPublic/PrivatesHeader.h; sourceTree = ""; }; 2188E2F8D7577DF9B0A3CAEBA68E4767 /* SentryTraceHeader.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SentryTraceHeader.m; path = Sources/Sentry/SentryTraceHeader.m; sourceTree = ""; }; 218BECBA0B061EFB5512D9A12B5C047A /* SentryCrashInstallation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SentryCrashInstallation.h; path = Sources/SentryCrash/Installations/SentryCrashInstallation.h; sourceTree = ""; }; - 219397827D65EF950553FF08B64A822E /* LastTouchedAnchorOrImageJS.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = LastTouchedAnchorOrImageJS.swift; path = "../../../../../../../../../../.pub-cache/hosted/pub.dev/flutter_inappwebview-5.8.0/ios/Classes/PluginScriptsJS/LastTouchedAnchorOrImageJS.swift"; sourceTree = ""; }; + 21A0CE26E80F633C44B14B6A35FE7BFB /* WKNavigationResponse.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = WKNavigationResponse.swift; path = "../../../../../../../../../../../.pub-cache/hosted/pub.dev/flutter_inappwebview-5.8.0/ios/Classes/Types/WKNavigationResponse.swift"; sourceTree = ""; }; 21AA8007CA3FE1AC8367C626C7D200E4 /* SentryCrashCString.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SentryCrashCString.m; path = Sources/SentryCrash/Reporting/Tools/SentryCrashCString.m; sourceTree = ""; }; - 21B0385C0A0F5B09B99F16727C474D5B /* SqfliteDarwinDatabaseAdditions.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SqfliteDarwinDatabaseAdditions.m; path = "../../../../../../../../../.pub-cache/hosted/pub.dev/sqflite-2.3.3+1/darwin/Classes/SqfliteDarwinDatabaseAdditions.m"; sourceTree = ""; }; 21C6A4F8F636816F35883FEB2E39700A /* SentryByteCountFormatter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SentryByteCountFormatter.h; path = Sources/Sentry/include/SentryByteCountFormatter.h; sourceTree = ""; }; 21E6BC1F26ACE40457FBD297A66FFB7B /* GDTCORRegistrar.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTCORRegistrar.m; path = GoogleDataTransport/GDTCORLibrary/GDTCORRegistrar.m; sourceTree = ""; }; + 21F8595F28973AA5A212B385EAECF2CF /* path_provider_foundation-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "path_provider_foundation-Info.plist"; sourceTree = ""; }; 220BC95AC5B92C59BD86315696CBB17D /* external_privacy_context.nanopb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = external_privacy_context.nanopb.h; path = GoogleDataTransport/GDTCCTLibrary/Protogen/nanopb/external_privacy_context.nanopb.h; sourceTree = ""; }; 2227FC3EBD795C9EAB70E697AB9D33B3 /* GDTCORStorageSizeBytes.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORStorageSizeBytes.h; path = GoogleDataTransport/GDTCORLibrary/Internal/GDTCORStorageSizeBytes.h; sourceTree = ""; }; - 2238798E9A95B42DFAF1B773ABC69C55 /* ContactPermissionStrategy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = ContactPermissionStrategy.m; path = "../../../../../../../../../../.pub-cache/hosted/pub.dev/permission_handler_apple-9.4.5/ios/Classes/strategies/ContactPermissionStrategy.m"; sourceTree = ""; }; 224C3ACE869A3E59F0D3CB4A2539E01D /* SentryReplayType.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SentryReplayType.h; path = Sources/Sentry/include/SentryReplayType.h; sourceTree = ""; }; - 2250BECE009253DF68289C6639E30128 /* FlutterSecureStoragePlugin.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FlutterSecureStoragePlugin.h; path = "../../../../../../../../../.pub-cache/hosted/pub.dev/flutter_secure_storage-9.2.2/ios/Classes/FlutterSecureStoragePlugin.h"; sourceTree = ""; }; - 229207B0BCF93F9BE4844A97B8EADA13 /* messages.g.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = messages.g.m; path = "../../../../../../../../../../../.pub-cache/hosted/pub.dev/local_auth_darwin-1.3.1/darwin/local_auth_darwin/Sources/local_auth_darwin/messages.g.m"; sourceTree = ""; }; + 22618D13774344E2E37442B3CA9F6388 /* PrivacyInfo.xcprivacy */ = {isa = PBXFileReference; includeInIndex = 1; name = PrivacyInfo.xcprivacy; path = "../../../../../../../../../../../../../.pub-cache/hosted/pub.dev/url_launcher_ios-6.3.0/ios/url_launcher_ios/Sources/url_launcher_ios/Resources/PrivacyInfo.xcprivacy"; sourceTree = ""; }; + 226983EE58B5E76F8272F93407904185 /* SentryFlutterPlugin.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SentryFlutterPlugin.m; path = "../../../../../../../../../../.pub-cache/hosted/pub.dev/sentry_flutter-7.20.2/ios/Classes/SentryFlutterPlugin.m"; sourceTree = ""; }; + 226BF539BB3C91B96614305CD7A83F07 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; name = LICENSE; path = "../../../../../../../../../.pub-cache/hosted/pub.dev/flutter_nekoton_bridge-2.0.0/LICENSE"; sourceTree = ""; }; 229745DEDB304422C8F9AB456ABC7E41 /* SentryCrashBinaryImageProvider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SentryCrashBinaryImageProvider.h; path = Sources/Sentry/include/SentryCrashBinaryImageProvider.h; sourceTree = ""; }; + 22F6495158FE36910A567672B32B3FB7 /* SqfliteDatabase.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SqfliteDatabase.h; path = "../../../../../../../../../../.pub-cache/hosted/pub.dev/sqflite-2.3.3+1/darwin/Classes/SqfliteDatabase.h"; sourceTree = ""; }; 2308F2E95798C9D5640D52384C92B666 /* SentryANRTrackingIntegration.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SentryANRTrackingIntegration.h; path = Sources/Sentry/include/SentryANRTrackingIntegration.h; sourceTree = ""; }; - 2313EF5E6D98B1C7925BA70602D28323 /* UnknownPermissionStrategy.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UnknownPermissionStrategy.h; path = "../../../../../../../../../../.pub-cache/hosted/pub.dev/permission_handler_apple-9.4.5/ios/Classes/strategies/UnknownPermissionStrategy.h"; sourceTree = ""; }; 2329729B04AE5FB23DFCD3A3538E0D57 /* Metric.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Metric.swift; path = Sources/Swift/Metrics/Metric.swift; sourceTree = ""; }; 2345281918711A1EB4CAB08EBBB178EF /* SentrySamplingContext.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SentrySamplingContext.h; path = Sources/Sentry/Public/SentrySamplingContext.h; sourceTree = ""; }; 23526B5C8BF6768C2DFBA470AEE47355 /* SentryCrashMachineContext.c */ = {isa = PBXFileReference; includeInIndex = 1; name = SentryCrashMachineContext.c; path = Sources/SentryCrash/Recording/Tools/SentryCrashMachineContext.c; sourceTree = ""; }; + 2359A5B195E02CE7D3BF765B2D1DF681 /* integration_test.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = integration_test.modulemap; sourceTree = ""; }; 2369BAD0C2F10CB77E653B548C5C2BD5 /* GDTCCTCompressionHelper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCCTCompressionHelper.h; path = GoogleDataTransport/GDTCCTLibrary/Private/GDTCCTCompressionHelper.h; sourceTree = ""; }; - 237D5AEE9D0DF37297BCD85E1DDD01D6 /* integration_test.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = integration_test.debug.xcconfig; sourceTree = ""; }; + 23876EBC4B1AAF5172EFEED5D6693224 /* FLTImagePickerPlugin.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FLTImagePickerPlugin.h; path = "../../../../../../../../../../../../../../.pub-cache/hosted/pub.dev/image_picker_ios-0.8.12/ios/image_picker_ios/Sources/image_picker_ios/include/image_picker_ios/FLTImagePickerPlugin.h"; sourceTree = ""; }; 238A74F0ECBAAF92A731C6E80EB18C4C /* GoogleMLKit.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = GoogleMLKit.debug.xcconfig; sourceTree = ""; }; + 2391BAB127258E3C8526525F690CFD22 /* SqfliteDatabase.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SqfliteDatabase.m; path = "../../../../../../../../../../.pub-cache/hosted/pub.dev/sqflite-2.3.3+1/darwin/Classes/SqfliteDatabase.m"; sourceTree = ""; }; + 23DA183388996AE4018A783DF68CE527 /* WKWindowFeatures.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = WKWindowFeatures.swift; path = "../../../../../../../../../../../.pub-cache/hosted/pub.dev/flutter_inappwebview-5.8.0/ios/Classes/Types/WKWindowFeatures.swift"; sourceTree = ""; }; 23F92926D3C8981213E8614CEDB56206 /* GoogleUtilities.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = GoogleUtilities.modulemap; sourceTree = ""; }; 243C6D67E9D18F7BC29F9568DD64EE13 /* SentryQueueableRequestManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SentryQueueableRequestManager.h; path = Sources/Sentry/include/SentryQueueableRequestManager.h; sourceTree = ""; }; 2444A83377FB3DC1B2E75A6011A262AA /* SentryCrashReportWriter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SentryCrashReportWriter.h; path = Sources/SentryCrash/Recording/SentryCrashReportWriter.h; sourceTree = ""; }; + 24CEE5AA14FFDCB36BD0D3163B43861C /* SupportZoomJS.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SupportZoomJS.swift; path = "../../../../../../../../../../../.pub-cache/hosted/pub.dev/flutter_inappwebview-5.8.0/ios/Classes/PluginScriptsJS/SupportZoomJS.swift"; sourceTree = ""; }; 251C6319AD50CB50F18D50CBF727F8B2 /* GoogleToolboxForMac */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = GoogleToolboxForMac; path = GoogleToolboxForMac.framework; sourceTree = BUILT_PRODUCTS_DIR; }; 252221898D19F7CCE4B0A252D65F72A1 /* GDTCOREvent+GDTMetricsSupport.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "GDTCOREvent+GDTMetricsSupport.h"; path = "GoogleDataTransport/GDTCCTLibrary/Private/GDTCOREvent+GDTMetricsSupport.h"; sourceTree = ""; }; + 2529F7B6D57D43838BFCB332D2EDFE47 /* path_provider_foundation.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = path_provider_foundation.release.xcconfig; sourceTree = ""; }; 2550CA84F060DAC6CE2C5D39F51C3F3A /* SentryInstallation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SentryInstallation.m; path = Sources/Sentry/SentryInstallation.m; sourceTree = ""; }; + 2593FA2B6F5F1921C6F13C99E9C8BDFC /* share_plus.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = share_plus.modulemap; sourceTree = ""; }; + 25A4B4A7CB3DB7F03C50ABD164A35E23 /* JavaScriptBridgeJS.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = JavaScriptBridgeJS.swift; path = "../../../../../../../../../../../.pub-cache/hosted/pub.dev/flutter_inappwebview-5.8.0/ios/Classes/PluginScriptsJS/JavaScriptBridgeJS.swift"; sourceTree = ""; }; 25B87E4587EE162821210EF91C3C0C06 /* SentryNSURLSessionTaskSearch.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SentryNSURLSessionTaskSearch.m; path = Sources/Sentry/SentryNSURLSessionTaskSearch.m; sourceTree = ""; }; 25D3935319F4ABFF59CDB7DACF563AFC /* Pods-Runner-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-Runner-Info.plist"; sourceTree = ""; }; 268D3E4CE97902A74AD32DBF546F86DC /* SentryRetryAfterHeaderParser.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SentryRetryAfterHeaderParser.h; path = Sources/Sentry/include/SentryRetryAfterHeaderParser.h; sourceTree = ""; }; - 268E33F7C98FF50AF5B738106520F7B3 /* sqflite.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = sqflite.modulemap; sourceTree = ""; }; + 26CC2D9603B42B3FBDBBA9B79821AEBE /* PrivacyInfo.xcprivacy */ = {isa = PBXFileReference; includeInIndex = 1; name = PrivacyInfo.xcprivacy; path = "../../../../../../../../../../.pub-cache/hosted/pub.dev/flutter_secure_storage-9.2.2/ios/Resources/PrivacyInfo.xcprivacy"; sourceTree = ""; }; 26DC2356281E0FDF58B22A98765B6EA0 /* SentryBaseIntegration.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SentryBaseIntegration.m; path = Sources/Sentry/SentryBaseIntegration.m; sourceTree = ""; }; 26DCE60E629963FB754A022AED7ACC73 /* MLImage.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = MLImage.release.xcconfig; sourceTree = ""; }; 270884FD70409A1461685D7F754ED90A /* SentryContinuousProfiler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SentryContinuousProfiler.h; path = Sources/Sentry/include/SentryContinuousProfiler.h; sourceTree = ""; }; + 27291D9AA336B64AF35485F8BE409257 /* PhonePermissionStrategy.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PhonePermissionStrategy.h; path = "../../../../../../../../../../../.pub-cache/hosted/pub.dev/permission_handler_apple-9.4.5/ios/Classes/strategies/PhonePermissionStrategy.h"; sourceTree = ""; }; 273FED516B335D864F56CF45FA6D9595 /* SentryUIEventTracker.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SentryUIEventTracker.m; path = Sources/Sentry/SentryUIEventTracker.m; sourceTree = ""; }; - 276D002A8F389EF85B3EB668F80D06AF /* integration_test.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = integration_test.modulemap; sourceTree = ""; }; - 27A142475E75C1D043A0D481F9B801C2 /* ResourceBundle-connectivity_plus_privacy-connectivity_plus-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "ResourceBundle-connectivity_plus_privacy-connectivity_plus-Info.plist"; sourceTree = ""; }; 27A7E939E7ADA9FCE38C165B587C16A4 /* SentryAppState.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SentryAppState.h; path = Sources/Sentry/include/SentryAppState.h; sourceTree = ""; }; - 27B2F91022612A25AE234E38132BF9E1 /* SqfliteCursor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SqfliteCursor.h; path = "../../../../../../../../../.pub-cache/hosted/pub.dev/sqflite-2.3.3+1/darwin/Classes/SqfliteCursor.h"; sourceTree = ""; }; 2814D1C88C85A5B2348E372216026FE7 /* SentryMeasurementUnit.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SentryMeasurementUnit.h; path = Sources/Sentry/Public/SentryMeasurementUnit.h; sourceTree = ""; }; - 28A56FC4668A33D87933B85EC8082F57 /* flutter_native_splash.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; name = flutter_native_splash.podspec; path = "../../../../../../../../.pub-cache/hosted/pub.dev/flutter_native_splash-2.4.0/ios/flutter_native_splash.podspec"; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 28A6B5BF6BC790B6C78100EFCD35AC47 /* flutter_nekoton_bridge.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = flutter_nekoton_bridge.modulemap; sourceTree = ""; }; + 281ABDF761B8A6DF706C828F953EF9B0 /* PrivacyInfo.xcprivacy */ = {isa = PBXFileReference; includeInIndex = 1; name = PrivacyInfo.xcprivacy; path = "../../../../../../../../../../.pub-cache/hosted/pub.dev/flutter_native_splash-2.4.0/ios/Resources/PrivacyInfo.xcprivacy"; sourceTree = ""; }; 28A6DB952CEA79E3902D41748273A364 /* GoogleUtilitiesComponents */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = GoogleUtilitiesComponents; path = GoogleUtilitiesComponents.framework; sourceTree = BUILT_PRODUCTS_DIR; }; - 28B1E5D0B0ECEA6E548A39708825EC07 /* BackgroundRefreshStrategy.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = BackgroundRefreshStrategy.h; path = "../../../../../../../../../../.pub-cache/hosted/pub.dev/permission_handler_apple-9.4.5/ios/Classes/strategies/BackgroundRefreshStrategy.h"; sourceTree = ""; }; - 29211C05B050C034FF9569B5E4800A09 /* SwiftFlutterEmailSenderPlugin.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SwiftFlutterEmailSenderPlugin.swift; path = "../../../../../../../../../.pub-cache/hosted/pub.dev/flutter_email_sender-6.0.3/ios/Classes/SwiftFlutterEmailSenderPlugin.swift"; sourceTree = ""; }; + 28C6A92040B7AE9155DE2648EB0D7296 /* sentry_flutter.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = sentry_flutter.release.xcconfig; sourceTree = ""; }; 295E9BD5E204FB427E4628DE85CDC3F4 /* FBLPromiseError.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBLPromiseError.h; path = Sources/FBLPromises/include/FBLPromiseError.h; sourceTree = ""; }; 297FDACFD1B3EDB4DA3B13A51A3D9449 /* SentryScreenFrames.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SentryScreenFrames.m; path = Sources/Sentry/SentryScreenFrames.m; sourceTree = ""; }; + 2989BF63F29DE22D7EE8160CEE408FBD /* FLTPHPickerSaveImageToPathOperation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FLTPHPickerSaveImageToPathOperation.h; path = "../../../../../../../../../../../../../../.pub-cache/hosted/pub.dev/image_picker_ios-0.8.12/ios/image_picker_ios/Sources/image_picker_ios/include/image_picker_ios/FLTPHPickerSaveImageToPathOperation.h"; sourceTree = ""; }; + 29932A56BCEFC69115E723A7ED8D75A2 /* FlutterEmailSenderPlugin.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FlutterEmailSenderPlugin.h; path = "../../../../../../../../../../.pub-cache/hosted/pub.dev/flutter_email_sender-6.0.3/ios/Classes/FlutterEmailSenderPlugin.h"; sourceTree = ""; }; + 29A8D728C0F1220032C0A6897AD2BEA2 /* messages.g.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = messages.g.swift; path = "../../../../../../../../../../../../.pub-cache/hosted/pub.dev/path_provider_foundation-2.4.0/darwin/path_provider_foundation/Sources/path_provider_foundation/messages.g.swift"; sourceTree = ""; }; 29B9C00A5E74EB24E151DF396DECFE60 /* SentryThreadHandle.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = SentryThreadHandle.hpp; path = Sources/Sentry/include/SentryThreadHandle.hpp; sourceTree = ""; }; - 29C83713F0C404FE67A1ACD7964E0227 /* flutter_secure_storage-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "flutter_secure_storage-umbrella.h"; sourceTree = ""; }; 29D090B849E2EDDEA633802EAF7CE283 /* SentryTime.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = SentryTime.mm; path = Sources/Sentry/SentryTime.mm; sourceTree = ""; }; - 29DA425C210D008D04B135B3B2E6EC11 /* FPPSharePlusPlugin.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FPPSharePlusPlugin.m; path = "../../../../../../../../../.pub-cache/hosted/pub.dev/share_plus-9.0.0/ios/Classes/FPPSharePlusPlugin.m"; sourceTree = ""; }; 29E128A22E9F2E6BFB03F5D74225E33A /* Pods-Runner.stage-production.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-Runner.stage-production.xcconfig"; sourceTree = ""; }; - 29E55405D83348477879CD2613E556D0 /* BluetoothPermissionStrategy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = BluetoothPermissionStrategy.m; path = "../../../../../../../../../../.pub-cache/hosted/pub.dev/permission_handler_apple-9.4.5/ios/Classes/strategies/BluetoothPermissionStrategy.m"; sourceTree = ""; }; 29FC47930451B8B0C303DF95D045B540 /* SentryUser.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SentryUser.m; path = Sources/Sentry/SentryUser.m; sourceTree = ""; }; 29FF5C371495372F66EE83E878E6DB33 /* SentryDebugImageProvider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SentryDebugImageProvider.h; path = Sources/Sentry/Public/SentryDebugImageProvider.h; sourceTree = ""; }; 2A0182BD5E06515BCB4E267D4D1E7EC7 /* SentryPredicateDescriptor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SentryPredicateDescriptor.h; path = Sources/Sentry/include/SentryPredicateDescriptor.h; sourceTree = ""; }; 2A27A3C0047B792CAA7E198BD1D4852D /* FBLPromise+Do.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBLPromise+Do.h"; path = "Sources/FBLPromises/include/FBLPromise+Do.h"; sourceTree = ""; }; - 2A2E55B197F2638C8C5C67077FA69F67 /* PermissionHandlerEnums.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PermissionHandlerEnums.h; path = "../../../../../../../../../.pub-cache/hosted/pub.dev/permission_handler_apple-9.4.5/ios/Classes/PermissionHandlerEnums.h"; sourceTree = ""; }; + 2A9B0E25C0A53591DD2B8559D5DE5F16 /* EventPermissionStrategy.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EventPermissionStrategy.h; path = "../../../../../../../../../../../.pub-cache/hosted/pub.dev/permission_handler_apple-9.4.5/ios/Classes/strategies/EventPermissionStrategy.h"; sourceTree = ""; }; 2AA2F918DADD294F057A2F64435537AE /* SentryDelayedFramesTracker.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SentryDelayedFramesTracker.m; path = Sources/Sentry/SentryDelayedFramesTracker.m; sourceTree = ""; }; 2B194E34C7A8E64861E5DEA8D2588BC7 /* SentryCrashReportFields.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SentryCrashReportFields.h; path = Sources/SentryCrash/Recording/SentryCrashReportFields.h; sourceTree = ""; }; + 2B2D7F63ABD2F94CA6F5437CBB5143EF /* ResourceBundle-shared_preferences_foundation_privacy-shared_preferences_foundation-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "ResourceBundle-shared_preferences_foundation_privacy-shared_preferences_foundation-Info.plist"; sourceTree = ""; }; 2B82DE9A4259ADE276F731398B0D97F8 /* GDTCORProductData.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTCORProductData.m; path = GoogleDataTransport/GDTCORLibrary/GDTCORProductData.m; sourceTree = ""; }; - 2B8AF3A64553B8CFFCCDF8D62596A375 /* WKUserContentController.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = WKUserContentController.swift; path = "../../../../../../../../../../.pub-cache/hosted/pub.dev/flutter_inappwebview-5.8.0/ios/Classes/Types/WKUserContentController.swift"; sourceTree = ""; }; - 2BA6122EA9114A8BAFCEDB3AEF8D1E4F /* URLProtectionSpace.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = URLProtectionSpace.swift; path = "../../../../../../../../../../.pub-cache/hosted/pub.dev/flutter_inappwebview-5.8.0/ios/Classes/Types/URLProtectionSpace.swift"; sourceTree = ""; }; - 2C0178C1EDE28CC099A2ADAB1A94C43C /* sqflite.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = sqflite.debug.xcconfig; sourceTree = ""; }; + 2C1C3365AD76CADD76C482C62A690138 /* image_picker_ios-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "image_picker_ios-Info.plist"; sourceTree = ""; }; 2C5957FCE912B5945FE204322A7DE0C5 /* MLKitVision.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = MLKitVision.debug.xcconfig; sourceTree = ""; }; 2C5F93DF62552CE905F8AA77269725DA /* GDTCORPlatform.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORPlatform.h; path = GoogleDataTransport/GDTCORLibrary/Internal/GDTCORPlatform.h; sourceTree = ""; }; - 2CF884DB478A409FAC98F0B0922BFDF9 /* SslError.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SslError.swift; path = "../../../../../../../../../../.pub-cache/hosted/pub.dev/flutter_inappwebview-5.8.0/ios/Classes/Types/SslError.swift"; sourceTree = ""; }; + 2CE07805643913C600386506AB396BBE /* messages.g.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = messages.g.h; path = "../../../../../../../../../../../../../../.pub-cache/hosted/pub.dev/image_picker_ios-0.8.12/ios/image_picker_ios/Sources/image_picker_ios/include/image_picker_ios/messages.g.h"; sourceTree = ""; }; + 2CE61C43BE36079E33CB7C61EA3DB4C7 /* CriticalAlertsPermissionStrategy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = CriticalAlertsPermissionStrategy.m; path = "../../../../../../../../../../../.pub-cache/hosted/pub.dev/permission_handler_apple-9.4.5/ios/Classes/strategies/CriticalAlertsPermissionStrategy.m"; sourceTree = ""; }; 2D57F6C220C06278F8AB8D5532AB50D1 /* pb_encode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = pb_encode.h; sourceTree = ""; }; 2D5C5A91CA8AA8F681B117122AC4EA54 /* SentryCrashNSErrorUtil.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SentryCrashNSErrorUtil.m; path = Sources/SentryCrash/Recording/Tools/SentryCrashNSErrorUtil.m; sourceTree = ""; }; + 2D62283B7381D5DE0A6CF1FF9E95E81D /* CallAsyncJavaScriptBelowIOS14WrapperJS.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CallAsyncJavaScriptBelowIOS14WrapperJS.swift; path = "../../../../../../../../../../../.pub-cache/hosted/pub.dev/flutter_inappwebview-5.8.0/ios/Classes/PluginScriptsJS/CallAsyncJavaScriptBelowIOS14WrapperJS.swift"; sourceTree = ""; }; + 2D670D6568B3DBE350D66691ADC46550 /* ResourceBundle-image_picker_ios_privacy-image_picker_ios-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "ResourceBundle-image_picker_ios_privacy-image_picker_ios-Info.plist"; sourceTree = ""; }; 2DD0C3E43B32F9250E7EFDA36EF183DC /* Pods-Runner-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = "Pods-Runner-acknowledgements.markdown"; sourceTree = ""; }; 2DEDC8F564683037B489D6A3E4FA5E92 /* SentryProfilerState.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SentryProfilerState.h; path = Sources/Sentry/include/SentryProfilerState.h; sourceTree = ""; }; + 2E0A38CDCA49B5DE050E954C88E63D68 /* flutter_keyboard_visibility.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = flutter_keyboard_visibility.modulemap; sourceTree = ""; }; 2E2200EEC7E46F96EAC2F0F6F7C9D239 /* SentryScopeSyncC.c */ = {isa = PBXFileReference; includeInIndex = 1; name = SentryScopeSyncC.c; path = Sources/Sentry/SentryScopeSyncC.c; sourceTree = ""; }; 2E3798D2A0DE8BF72456764296534BBF /* SentryFileManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SentryFileManager.h; path = Sources/Sentry/include/SentryFileManager.h; sourceTree = ""; }; - 2E408C7CFCE48282909EB0579F6DA739 /* FlutterEmailSenderPlugin.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FlutterEmailSenderPlugin.h; path = "../../../../../../../../../.pub-cache/hosted/pub.dev/flutter_email_sender-6.0.3/ios/Classes/FlutterEmailSenderPlugin.h"; sourceTree = ""; }; - 2E50E4CFC0FA141C0EA11F0C7F8446AB /* shared_preferences_foundation-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "shared_preferences_foundation-prefix.pch"; sourceTree = ""; }; 2E53B6999F04DB43D12B6146BCB636A1 /* SentryAppStartTracker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SentryAppStartTracker.h; path = Sources/Sentry/include/SentryAppStartTracker.h; sourceTree = ""; }; + 2E9519540E59EA6742FCDA3037B62A26 /* ConnectivityPlusPlugin.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = ConnectivityPlusPlugin.m; path = "../../../../../../../../../../.pub-cache/hosted/pub.dev/connectivity_plus-6.0.5/darwin/Classes/ConnectivityPlusPlugin.m"; sourceTree = ""; }; 2E9EFBCBB9898733E5985B9025F3B39C /* SentryTraceHeader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SentryTraceHeader.h; path = Sources/Sentry/Public/SentryTraceHeader.h; sourceTree = ""; }; + 2EC17703646BE4B7F5DF4EF21DA6FDDF /* MyCookieManager.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = MyCookieManager.swift; path = "../../../../../../../../../../.pub-cache/hosted/pub.dev/flutter_inappwebview-5.8.0/ios/Classes/MyCookieManager.swift"; sourceTree = ""; }; 2F194FCABAEDAB823F9B72AF05D34561 /* Sentry-Sentry */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; name = "Sentry-Sentry"; path = Sentry.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; - 2F98BC4DC5D7C49A0542E2CA56D97A1B /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; name = LICENSE; path = "../../../../../../../../.pub-cache/hosted/pub.dev/mobile_scanner-3.4.1/LICENSE"; sourceTree = ""; }; + 2F7E6319C06CF58444B55BFF82FE693C /* flutter_keyboard_visibility.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; name = flutter_keyboard_visibility.podspec; path = "../../../../../../../../../.pub-cache/hosted/pub.dev/flutter_keyboard_visibility-5.4.1/ios/flutter_keyboard_visibility.podspec"; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 2FA2500C68F5E432FC7A4423AEFC8B3D /* PluginScriptsUtil.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = PluginScriptsUtil.swift; path = "../../../../../../../../../../../.pub-cache/hosted/pub.dev/flutter_inappwebview-5.8.0/ios/Classes/PluginScriptsJS/PluginScriptsUtil.swift"; sourceTree = ""; }; 2FAD0DA6010013DC73CD47F5337C610B /* SentryCrashReportFixer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SentryCrashReportFixer.h; path = Sources/SentryCrash/Recording/SentryCrashReportFixer.h; sourceTree = ""; }; + 2FB048EB9B80FF92C730A47691434788 /* InAppBrowserWebViewController.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = InAppBrowserWebViewController.swift; path = "../../../../../../../../../../../.pub-cache/hosted/pub.dev/flutter_inappwebview-5.8.0/ios/Classes/InAppBrowser/InAppBrowserWebViewController.swift"; sourceTree = ""; }; 2FBA8EC7ED4B8EC73BCF440F48D729B3 /* GDTCORConsoleLogger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORConsoleLogger.h; path = GoogleDataTransport/GDTCORLibrary/Public/GoogleDataTransport/GDTCORConsoleLogger.h; sourceTree = ""; }; + 2FC9E549F58399B23CB5D799C1DA659E /* path_provider_foundation-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "path_provider_foundation-umbrella.h"; sourceTree = ""; }; 2FE0ACB1CDDAC15FA058E3A7C505FA1F /* GDTCORMetrics+GDTCCTSupport.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "GDTCORMetrics+GDTCCTSupport.m"; path = "GoogleDataTransport/GDTCCTLibrary/GDTCORMetrics+GDTCCTSupport.m"; sourceTree = ""; }; - 300699A38B7904D5D573BBDE8F8E5015 /* PluginScript.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = PluginScript.swift; path = "../../../../../../../../../../.pub-cache/hosted/pub.dev/flutter_inappwebview-5.8.0/ios/Classes/Types/PluginScript.swift"; sourceTree = ""; }; 3008F9A9F931AC60CD3A6E53E5312227 /* SentryCrashExceptionApplication.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SentryCrashExceptionApplication.h; path = Sources/Sentry/Public/SentryCrashExceptionApplication.h; sourceTree = ""; }; - 3081ECA59DD51659989DBD8037294A4D /* PrivacyInfo.xcprivacy */ = {isa = PBXFileReference; includeInIndex = 1; name = PrivacyInfo.xcprivacy; path = "../../../../../../../../.pub-cache/hosted/pub.dev/package_info_plus-8.0.0/ios/PrivacyInfo.xcprivacy"; sourceTree = ""; }; - 30F98EB803FD5C328558272910C8246D /* flutter_native_splash.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = flutter_native_splash.debug.xcconfig; sourceTree = ""; }; + 3057C7E05D7A5607565A9921C7033648 /* PrivacyInfo.xcprivacy */ = {isa = PBXFileReference; includeInIndex = 1; name = PrivacyInfo.xcprivacy; path = "../../../../../../../../../../../../../.pub-cache/hosted/pub.dev/local_auth_darwin-1.3.1/darwin/local_auth_darwin/Sources/local_auth_darwin/Resources/PrivacyInfo.xcprivacy"; sourceTree = ""; }; + 30808562807951DFCC2FD610B9FD7F6E /* integration_test.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; name = integration_test.podspec; path = ../../../../../../../../../flutter/packages/integration_test/ios/integration_test.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 30F38060B875547295AC118922B6219B /* WKFrameInfo.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = WKFrameInfo.swift; path = "../../../../../../../../../../../.pub-cache/hosted/pub.dev/flutter_inappwebview-5.8.0/ios/Classes/Types/WKFrameInfo.swift"; sourceTree = ""; }; + 310586C337C6135938E6DA039290C0C8 /* SecCertificate.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SecCertificate.swift; path = "../../../../../../../../../../../.pub-cache/hosted/pub.dev/flutter_inappwebview-5.8.0/ios/Classes/Types/SecCertificate.swift"; sourceTree = ""; }; 31097993E31E35BC56A612DD892C82AD /* SentryCoreDataTracker.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SentryCoreDataTracker.m; path = Sources/Sentry/SentryCoreDataTracker.m; sourceTree = ""; }; 310D179A87D9F6580482AA28895866AE /* SentryAutoBreadcrumbTrackingIntegration.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SentryAutoBreadcrumbTrackingIntegration.h; path = Sources/Sentry/include/SentryAutoBreadcrumbTrackingIntegration.h; sourceTree = ""; }; 310E69A3A1BEFED5EC91F58C5DBCCF3D /* SentrySpan.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SentrySpan.m; path = Sources/Sentry/SentrySpan.m; sourceTree = ""; }; + 315D3FEFAF397915D77EBAF2640438D1 /* path_provider_foundation.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; name = path_provider_foundation.podspec; path = "../../../../../../../../../.pub-cache/hosted/pub.dev/path_provider_foundation-2.4.0/darwin/path_provider_foundation.podspec"; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; 3219664BDB46B258DBD3CD70E19A5AFF /* SentryCrashDynamicLinker.c */ = {isa = PBXFileReference; includeInIndex = 1; name = SentryCrashDynamicLinker.c; path = Sources/SentryCrash/Recording/Tools/SentryCrashDynamicLinker.c; sourceTree = ""; }; 3227F3FC45681D7CEE5D1355A532398A /* nanopb-nanopb_Privacy */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; name = "nanopb-nanopb_Privacy"; path = nanopb_Privacy.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; 3263FB876272A8B5BF47832E5E847BE9 /* SentryWatchdogTerminationTrackingIntegration.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SentryWatchdogTerminationTrackingIntegration.h; path = Sources/Sentry/include/SentryWatchdogTerminationTrackingIntegration.h; sourceTree = ""; }; - 32941FABD3095FE6680473B1D2416DDA /* PrivacyInfo.xcprivacy */ = {isa = PBXFileReference; includeInIndex = 1; name = PrivacyInfo.xcprivacy; path = "../../../../../../../../../.pub-cache/hosted/pub.dev/flutter_secure_storage-9.2.2/ios/Resources/PrivacyInfo.xcprivacy"; sourceTree = ""; }; + 32AB065117AF5B1B2E6CB60ACDDF6CD8 /* URLLauncherPlugin.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = URLLauncherPlugin.swift; path = "../../../../../../../../../../../../.pub-cache/hosted/pub.dev/url_launcher_ios-6.3.0/ios/url_launcher_ios/Sources/url_launcher_ios/URLLauncherPlugin.swift"; sourceTree = ""; }; 32CA63FFD51517DB532D829B2B216ECC /* GDTCORConsoleLogger.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTCORConsoleLogger.m; path = GoogleDataTransport/GDTCORLibrary/GDTCORConsoleLogger.m; sourceTree = ""; }; - 333875AE4BA7297C8003590B4FC30E92 /* SentryFlutterPluginApple.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SentryFlutterPluginApple.swift; path = "../../../../../../../../../.pub-cache/hosted/pub.dev/sentry_flutter-7.20.2/ios/Classes/SentryFlutterPluginApple.swift"; sourceTree = ""; }; + 32F877D5967B8B505BAA3B8020786688 /* DetectionSpeed.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = DetectionSpeed.swift; path = "../../../../../../../../../../.pub-cache/hosted/pub.dev/mobile_scanner-3.4.1/ios/Classes/DetectionSpeed.swift"; sourceTree = ""; }; 3345A13F977D97083649BF4634210ED7 /* SentryClient.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SentryClient.h; path = Sources/Sentry/Public/SentryClient.h; sourceTree = ""; }; 3347A1AB6546F0A3977529B8F199DC41 /* PromisesObjC */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = PromisesObjC; path = FBLPromises.framework; sourceTree = BUILT_PRODUCTS_DIR; }; + 3349BE4FC383B4B5161416B3BFFA8B21 /* SharedPreferencesPlugin.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SharedPreferencesPlugin.swift; path = "../../../../../../../../../../../../.pub-cache/hosted/pub.dev/shared_preferences_foundation-2.4.0/darwin/shared_preferences_foundation/Sources/shared_preferences_foundation/SharedPreferencesPlugin.swift"; sourceTree = ""; }; 33831F9017AB927CFA8BF235D78FA37D /* compliance.nanopb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = compliance.nanopb.c; path = GoogleDataTransport/GDTCCTLibrary/Protogen/nanopb/compliance.nanopb.c; sourceTree = ""; }; - 33834ABA21FF48866562114BFE476176 /* PathProviderPlugin.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = PathProviderPlugin.swift; path = "../../../../../../../../../../../.pub-cache/hosted/pub.dev/path_provider_foundation-2.4.0/darwin/path_provider_foundation/Sources/path_provider_foundation/PathProviderPlugin.swift"; sourceTree = ""; }; 33BA8F55BDDDB787238768FBCC9F2CEB /* SentryBreadcrumbDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SentryBreadcrumbDelegate.h; path = Sources/Sentry/include/SentryBreadcrumbDelegate.h; sourceTree = ""; }; - 33ED185898BC40DA8511D7A11943E448 /* url_launcher_ios-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "url_launcher_ios-umbrella.h"; sourceTree = ""; }; 3411F04A131528CDAE6B692518D34EAE /* SentryScreenshot.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SentryScreenshot.h; path = Sources/Sentry/include/SentryScreenshot.h; sourceTree = ""; }; + 34F4C6378B04D0BD00220F4AD16D70A4 /* package_info_plus.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; name = package_info_plus.podspec; path = "../../../../../../../../../.pub-cache/hosted/pub.dev/package_info_plus-8.0.0/ios/package_info_plus.podspec"; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; 352450B601648E8FC906DD98E956FF04 /* FBLPromise+Recover.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBLPromise+Recover.h"; path = "Sources/FBLPromises/include/FBLPromise+Recover.h"; sourceTree = ""; }; 35F016CACCF5B66A025D44F2FE693254 /* SentryInternalNotificationNames.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SentryInternalNotificationNames.h; path = Sources/Sentry/include/SentryInternalNotificationNames.h; sourceTree = ""; }; 35FE09F7B11B47BD5B18A3E1C4EF2AB7 /* SentryQueueableRequestManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SentryQueueableRequestManager.m; path = Sources/Sentry/SentryQueueableRequestManager.m; sourceTree = ""; }; - 3607CAF38A15D4B00804051CD8001544 /* flutter_secure_storage.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = flutter_secure_storage.modulemap; sourceTree = ""; }; 3612E34C4AF8453C98684C4E2EE5DEE3 /* SentryCrashInstallation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SentryCrashInstallation.m; path = Sources/SentryCrash/Installations/SentryCrashInstallation.m; sourceTree = ""; }; - 364609A1CA74DE175B26FDB7BF7BADD3 /* SqfliteDarwinDatabaseQueue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SqfliteDarwinDatabaseQueue.h; path = "../../../../../../../../../.pub-cache/hosted/pub.dev/sqflite-2.3.3+1/darwin/Classes/SqfliteDarwinDatabaseQueue.h"; sourceTree = ""; }; + 36295AA6FD91BC3B62C1E06D89AC75DE /* ContextMenuOptions.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ContextMenuOptions.swift; path = "../../../../../../../../../../.pub-cache/hosted/pub.dev/flutter_inappwebview-5.8.0/ios/Classes/ContextMenuOptions.swift"; sourceTree = ""; }; 3662846D84FAB5BB844E74B704580725 /* SentryReplayRecording.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SentryReplayRecording.m; path = Sources/Sentry/SentryReplayRecording.m; sourceTree = ""; }; 368E58C91548BBC8911410F6B303AEA4 /* SentryReachability.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SentryReachability.m; path = Sources/Sentry/SentryReachability.m; sourceTree = ""; }; - 36CF2B35A3CB6FB76D417EC7A65B800D /* messages.g.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = messages.g.swift; path = "../../../../../../../../../../../.pub-cache/hosted/pub.dev/path_provider_foundation-2.4.0/darwin/path_provider_foundation/Sources/path_provider_foundation/messages.g.swift"; sourceTree = ""; }; + 36D6F6815DBE1F857791D61B4387E6BC /* ImagePickerPlugin.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; name = ImagePickerPlugin.modulemap; path = "../../../../../../../../../.pub-cache/hosted/pub.dev/image_picker_ios-0.8.12/ios/image_picker_ios/Sources/image_picker_ios/include/ImagePickerPlugin.modulemap"; sourceTree = ""; }; 36E9F9DBD2A2B17D769969BAED10125D /* SentryEvent+Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "SentryEvent+Private.h"; path = "Sources/Sentry/include/SentryEvent+Private.h"; sourceTree = ""; }; 370450D911636B51CA27ECFB0983FDDE /* SentryGlobalEventProcessor.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SentryGlobalEventProcessor.m; path = Sources/Sentry/SentryGlobalEventProcessor.m; sourceTree = ""; }; 370F4EC4D6377811C6AC3E8A1A6310DC /* GDTCOREvent+GDTCCTSupport.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "GDTCOREvent+GDTCCTSupport.h"; path = "GoogleDataTransport/GDTCCTLibrary/Public/GDTCOREvent+GDTCCTSupport.h"; sourceTree = ""; }; - 3751BCA2061A295E0ECE68E6961F9827 /* url_launcher_ios-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "url_launcher_ios-prefix.pch"; sourceTree = ""; }; + 37573058B51C234C526F8EFACD1423D1 /* PermissionManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = PermissionManager.m; path = "../../../../../../../../../../.pub-cache/hosted/pub.dev/permission_handler_apple-9.4.5/ios/Classes/PermissionManager.m"; sourceTree = ""; }; + 3772919F8EE536F0B9FC21305A65E4E6 /* PermissionHandlerPlugin.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = PermissionHandlerPlugin.m; path = "../../../../../../../../../../.pub-cache/hosted/pub.dev/permission_handler_apple-9.4.5/ios/Classes/PermissionHandlerPlugin.m"; sourceTree = ""; }; + 381A0F04776BF1B790F21030CA3BB8B3 /* package_info_plus.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = package_info_plus.debug.xcconfig; sourceTree = ""; }; 381C18F23818A70A7EE3CCE0C84C28B3 /* SentryDefaultRateLimits.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SentryDefaultRateLimits.m; path = Sources/Sentry/SentryDefaultRateLimits.m; sourceTree = ""; }; 382F0C3B77644998E339657E5C0B81F2 /* SentryRandom.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SentryRandom.h; path = Sources/Sentry/include/SentryRandom.h; sourceTree = ""; }; + 384E79FA840CE8F4CEDB1DE25781C94B /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; name = LICENSE; path = "../../../../../../../../../.pub-cache/hosted/pub.dev/flutter_keyboard_visibility-5.4.1/LICENSE"; sourceTree = ""; }; 387EFF3E3E5E9784D1AEDAFD4B6B284C /* SentryWatchdogTerminationScopeObserver.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SentryWatchdogTerminationScopeObserver.h; path = Sources/Sentry/include/SentryWatchdogTerminationScopeObserver.h; sourceTree = ""; }; - 38ABAE0CDBCB2A856AA1B77F606B2CB0 /* IntegrationTestPlugin.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IntegrationTestPlugin.h; path = ../../../../../../../../../../../../flutter/packages/integration_test/ios/integration_test/Sources/integration_test/include/IntegrationTestPlugin.h; sourceTree = ""; }; - 3A21217B0FA27B578F9E4BE217B7CBFA /* PrivacyInfo.xcprivacy */ = {isa = PBXFileReference; includeInIndex = 1; name = PrivacyInfo.xcprivacy; path = "../../../../../../../../../.pub-cache/hosted/pub.dev/permission_handler_apple-9.4.5/ios/Resources/PrivacyInfo.xcprivacy"; sourceTree = ""; }; + 38BE9AD85B58BE60893587F92E89D71A /* flutter_email_sender.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = flutter_email_sender.modulemap; sourceTree = ""; }; + 3A1A4ECDFCE386C8517DA1F48E99D4A5 /* ResourceBundle-connectivity_plus_privacy-connectivity_plus-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "ResourceBundle-connectivity_plus_privacy-connectivity_plus-Info.plist"; sourceTree = ""; }; 3AA0AA3F8657FB36813458F3C9D2E70D /* SentryDefaultRateLimits.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SentryDefaultRateLimits.h; path = Sources/Sentry/include/SentryDefaultRateLimits.h; sourceTree = ""; }; 3AE3F4D21FF344C7111D5B1985AAE760 /* SentryCrashMonitor_AppState.c */ = {isa = PBXFileReference; includeInIndex = 1; name = SentryCrashMonitor_AppState.c; path = Sources/SentryCrash/Recording/Monitors/SentryCrashMonitor_AppState.c; sourceTree = ""; }; 3B467427E0F41F4F0001103849647353 /* GULURLSessionDataResponse.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULURLSessionDataResponse.m; path = GoogleUtilities/Environment/URLSessionPromiseWrapper/GULURLSessionDataResponse.m; sourceTree = ""; }; 3B5E78612D6AB76CAA75DA33725629D9 /* SentryUIViewControllerSwizzling.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SentryUIViewControllerSwizzling.h; path = Sources/Sentry/include/SentryUIViewControllerSwizzling.h; sourceTree = ""; }; - 3B7AD1D25A5C8D1B03EC8116A22399C3 /* flutter_email_sender.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; name = flutter_email_sender.podspec; path = "../../../../../../../../.pub-cache/hosted/pub.dev/flutter_email_sender-6.0.3/ios/flutter_email_sender.podspec"; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 3B7D78737CE35DF6A65A072A3C533D2D /* NekotonBridge.xcframework */ = {isa = PBXFileReference; includeInIndex = 1; name = NekotonBridge.xcframework; path = "../../../../../../../../../.pub-cache/hosted/pub.dev/flutter_nekoton_bridge-2.0.0/ios/Frameworks/NekotonBridge.xcframework"; sourceTree = ""; }; 3B9B683A32923328EF51AB07F795B00C /* FBLPromiseError.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBLPromiseError.m; path = Sources/FBLPromises/FBLPromiseError.m; sourceTree = ""; }; - 3BBE2ECE94C4E164170DF632303FEFE1 /* SpeechPermissionStrategy.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SpeechPermissionStrategy.h; path = "../../../../../../../../../../.pub-cache/hosted/pub.dev/permission_handler_apple-9.4.5/ios/Classes/strategies/SpeechPermissionStrategy.h"; sourceTree = ""; }; - 3BFBF7C7E81A0074C9D5C035E387E9AF /* WebMessagePort.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = WebMessagePort.swift; path = "../../../../../../../../../../.pub-cache/hosted/pub.dev/flutter_inappwebview-5.8.0/ios/Classes/Types/WebMessagePort.swift"; sourceTree = ""; }; - 3C06302D722083A52A9F138FD867674C /* UIColor.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = UIColor.swift; path = "../../../../../../../../../../.pub-cache/hosted/pub.dev/flutter_inappwebview-5.8.0/ios/Classes/Types/UIColor.swift"; sourceTree = ""; }; + 3BF7759A59E0ABE43D92ADAB110FE7FD /* flutter_email_sender-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "flutter_email_sender-prefix.pch"; sourceTree = ""; }; 3C07C9D0A16C4A26C466F72F0F6003E8 /* SentryCrashDate.c */ = {isa = PBXFileReference; includeInIndex = 1; name = SentryCrashDate.c; path = Sources/SentryCrash/Recording/Tools/SentryCrashDate.c; sourceTree = ""; }; + 3C2765689C2118E081174235126160FC /* flutter_keyboard_visibility-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "flutter_keyboard_visibility-Info.plist"; sourceTree = ""; }; 3C2C6251441F3BD9D4EFFEDB34578906 /* GTMLogger.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GTMLogger.m; path = Foundation/GTMLogger.m; sourceTree = ""; }; 3C46F02D19A0B0F1F8939742515BBA20 /* SentryAppStartTracker.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SentryAppStartTracker.m; path = Sources/Sentry/SentryAppStartTracker.m; sourceTree = ""; }; 3C4996057B86092BBCEBD81FEF7D68F9 /* SentryCrashUUIDConversion.c */ = {isa = PBXFileReference; includeInIndex = 1; name = SentryCrashUUIDConversion.c; path = Sources/SentryCrash/Recording/Tools/SentryCrashUUIDConversion.c; sourceTree = ""; }; 3C51F808CA0B29A391D8945894792B71 /* SentryCrashObjCApple.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SentryCrashObjCApple.h; path = Sources/SentryCrash/Recording/Tools/SentryCrashObjCApple.h; sourceTree = ""; }; - 3C623764A02C0B6BA3A628060F65377B /* flutter_native_splash.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = flutter_native_splash.release.xcconfig; sourceTree = ""; }; - 3C9405D1081A22F8D93E165628356199 /* path_provider_foundation.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = path_provider_foundation.modulemap; sourceTree = ""; }; - 3CBAA32448D7092D3388A6F5B2EAD77B /* connectivity_plus.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = connectivity_plus.debug.xcconfig; sourceTree = ""; }; - 3CC2A851736FD3567A68F55DC606E5F9 /* FLTImagePickerPhotoAssetUtil.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FLTImagePickerPhotoAssetUtil.m; path = "../../../../../../../../../../../.pub-cache/hosted/pub.dev/image_picker_ios-0.8.12/ios/image_picker_ios/Sources/image_picker_ios/FLTImagePickerPhotoAssetUtil.m"; sourceTree = ""; }; + 3C52C60804BA29D2462E0DCDAE3C4933 /* FLALocalAuthPlugin.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FLALocalAuthPlugin.h; path = "../../../../../../../../../../../../../../.pub-cache/hosted/pub.dev/local_auth_darwin-1.3.1/darwin/local_auth_darwin/Sources/local_auth_darwin/include/local_auth_darwin/FLALocalAuthPlugin.h"; sourceTree = ""; }; 3CFA1719AAEC1C0B7851EF83E9661170 /* SentryWatchdogTerminationScopeObserver.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SentryWatchdogTerminationScopeObserver.m; path = Sources/Sentry/SentryWatchdogTerminationScopeObserver.m; sourceTree = ""; }; - 3D07BB026EB842C5DC8FF24C1DBC931C /* SqfliteDarwinDatabaseAdditions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SqfliteDarwinDatabaseAdditions.h; path = "../../../../../../../../../.pub-cache/hosted/pub.dev/sqflite-2.3.3+1/darwin/Classes/SqfliteDarwinDatabaseAdditions.h"; sourceTree = ""; }; - 3D14AB2A5EC9199FB00C56394DAA2A4A /* WebMessageListener.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = WebMessageListener.swift; path = "../../../../../../../../../../.pub-cache/hosted/pub.dev/flutter_inappwebview-5.8.0/ios/Classes/Types/WebMessageListener.swift"; sourceTree = ""; }; - 3D1EB6AA2F48FD6B319F947563F24994 /* FlutterMethodCallDelegate.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = FlutterMethodCallDelegate.swift; path = "../../../../../../../../../.pub-cache/hosted/pub.dev/flutter_inappwebview-5.8.0/ios/Classes/FlutterMethodCallDelegate.swift"; sourceTree = ""; }; + 3D0061CE65BA57CAA0D9F8DF4AC65B99 /* integration_test-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "integration_test-dummy.m"; sourceTree = ""; }; 3D30009FC6C0FA1CCFF4FA898470B1E7 /* SetMetric.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SetMetric.swift; path = Sources/Swift/Metrics/SetMetric.swift; sourceTree = ""; }; 3D5033666163B2544489B2198D9308CD /* SentryBinaryImageCache.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SentryBinaryImageCache.m; path = Sources/Sentry/SentryBinaryImageCache.m; sourceTree = ""; }; - 3D7756A771AB6DAC1C0DC1450A2F507F /* HitTestResult.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = HitTestResult.swift; path = "../../../../../../../../../../.pub-cache/hosted/pub.dev/flutter_inappwebview-5.8.0/ios/Classes/Types/HitTestResult.swift"; sourceTree = ""; }; 3DA0622263CF287DCB158296725B2E01 /* SentryProfiledTracerConcurrency.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SentryProfiledTracerConcurrency.h; path = Sources/Sentry/include/SentryProfiledTracerConcurrency.h; sourceTree = ""; }; 3DBD4BADE27F8B91024E4B4B4DD75DB5 /* path_provider_foundation-path_provider_foundation_privacy */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; name = "path_provider_foundation-path_provider_foundation_privacy"; path = path_provider_foundation_privacy.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; - 3DE61418F6CD618881D3584BED5A4D6C /* SensorPermissionStrategy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SensorPermissionStrategy.m; path = "../../../../../../../../../../.pub-cache/hosted/pub.dev/permission_handler_apple-9.4.5/ios/Classes/strategies/SensorPermissionStrategy.m"; sourceTree = ""; }; 3E577FC8654F2EC339DA7E5269E24B96 /* GULHeartbeatDateStorable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULHeartbeatDateStorable.h; path = GoogleUtilities/Environment/Public/GoogleUtilities/GULHeartbeatDateStorable.h; sourceTree = ""; }; - 3EAAF651C8D10A62E554DCB7A16416DF /* FLALocalAuthPlugin.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FLALocalAuthPlugin.m; path = "../../../../../../../../../../../.pub-cache/hosted/pub.dev/local_auth_darwin-1.3.1/darwin/local_auth_darwin/Sources/local_auth_darwin/FLALocalAuthPlugin.m"; sourceTree = ""; }; + 3EC610871E290FC6333BE2509406DF98 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; name = LICENSE; path = "../../../../../../../../../.pub-cache/hosted/pub.dev/url_launcher_ios-6.3.0/LICENSE"; sourceTree = ""; }; 3ED56D1626A8C0214DFC609B49833D06 /* GDTCORMetricsMetadata.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTCORMetricsMetadata.m; path = GoogleDataTransport/GDTCORLibrary/GDTCORMetricsMetadata.m; sourceTree = ""; }; - 3F195CDC771001F7D31D7CEF182D87B8 /* messages.g.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = messages.g.h; path = "../../../../../../../../../../../../../.pub-cache/hosted/pub.dev/local_auth_darwin-1.3.1/darwin/local_auth_darwin/Sources/local_auth_darwin/include/local_auth_darwin/messages.g.h"; sourceTree = ""; }; + 3EE8F77B5ACD09C925921A77B88C174D /* flutter_keyboard_visibility.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = flutter_keyboard_visibility.debug.xcconfig; sourceTree = ""; }; 3F238BB22C5201CE689CAF2F766AED95 /* PromisesObjC-FBLPromises_Privacy */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; name = "PromisesObjC-FBLPromises_Privacy"; path = FBLPromises_Privacy.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; - 3F32EED31B61D144402BF782E67C0C27 /* SafariBrowserOptions.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SafariBrowserOptions.swift; path = "../../../../../../../../../../.pub-cache/hosted/pub.dev/flutter_inappwebview-5.8.0/ios/Classes/SafariViewController/SafariBrowserOptions.swift"; sourceTree = ""; }; - 3F5272EA66106DBBF8754F49E0915252 /* FLTImagePickerPlugin.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FLTImagePickerPlugin.m; path = "../../../../../../../../../../../.pub-cache/hosted/pub.dev/image_picker_ios-0.8.12/ios/image_picker_ios/Sources/image_picker_ios/FLTImagePickerPlugin.m"; sourceTree = ""; }; 3F5C910E71EF1BB643C081F75181E25D /* SentryBuildAppStartSpans.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SentryBuildAppStartSpans.h; path = Sources/Sentry/include/SentryBuildAppStartSpans.h; sourceTree = ""; }; 3F83C5A22BF88512B7F39C4AC16071EE /* SentryNSDataSwizzling.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SentryNSDataSwizzling.m; path = Sources/Sentry/SentryNSDataSwizzling.m; sourceTree = ""; }; - 401827771E4016874D7DE89B02902FDD /* SentryFlutter.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SentryFlutter.swift; path = "../../../../../../../../../.pub-cache/hosted/pub.dev/sentry_flutter-7.20.2/ios/Classes/SentryFlutter.swift"; sourceTree = ""; }; 402401A6D20767EC39F7484691A7E5E6 /* GDTCORAssert.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORAssert.h; path = GoogleDataTransport/GDTCORLibrary/Internal/GDTCORAssert.h; sourceTree = ""; }; + 402E22AD19B152CD0ACB96E1959A4675 /* flutter_nekoton_bridge-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "flutter_nekoton_bridge-umbrella.h"; sourceTree = ""; }; 4031FA36EA284CFDBFC5B446CCD902D3 /* SentryProfilingLogging.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = SentryProfilingLogging.mm; path = Sources/Sentry/SentryProfilingLogging.mm; sourceTree = ""; }; - 4038A0998F79A73BFA9DF39D51652B5A /* messages.g.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = messages.g.swift; path = "../../../../../../../../../../../.pub-cache/hosted/pub.dev/url_launcher_ios-6.3.0/ios/url_launcher_ios/Sources/url_launcher_ios/messages.g.swift"; sourceTree = ""; }; - 403D70F75034FFC5A70FF437BE21457E /* flutter_native_splash-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "flutter_native_splash-umbrella.h"; sourceTree = ""; }; 40424295180FA3D80A8C355A03421685 /* SentryTransportAdapter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SentryTransportAdapter.m; path = Sources/Sentry/SentryTransportAdapter.m; sourceTree = ""; }; 4065D80CB4D0C909ECD272A83B5F0988 /* GTMSessionFetcher-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "GTMSessionFetcher-umbrella.h"; sourceTree = ""; }; + 40A46BC81300CEBE4F557D47E588C7F8 /* FLTImagePickerPlugin.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FLTImagePickerPlugin.m; path = "../../../../../../../../../../../../.pub-cache/hosted/pub.dev/image_picker_ios-0.8.12/ios/image_picker_ios/Sources/image_picker_ios/FLTImagePickerPlugin.m"; sourceTree = ""; }; 40CA14D1691F10465C57350427345371 /* SentryDevice.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SentryDevice.h; path = Sources/Sentry/include/SentryDevice.h; sourceTree = ""; }; - 40CD03B46CDF68593DC82AFD24A4BB0D /* integration_test.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; name = integration_test.podspec; path = ../../../../../../../../flutter/packages/integration_test/ios/integration_test.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 40DE71780F9494C36B498C407E602FD5 /* SwiftFlutterPlugin.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SwiftFlutterPlugin.swift; path = "../../../../../../../../../.pub-cache/hosted/pub.dev/flutter_inappwebview-5.8.0/ios/Classes/SwiftFlutterPlugin.swift"; sourceTree = ""; }; + 40DFDE1568F4563299807032258A4AEC /* Util.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Util.swift; path = "../../../../../../../../../../.pub-cache/hosted/pub.dev/flutter_inappwebview-5.8.0/ios/Classes/Util.swift"; sourceTree = ""; }; + 4109EA3EB5BA0D838FBD0199B8A139A2 /* url_launcher_ios.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; name = url_launcher_ios.podspec; path = "../../../../../../../../../.pub-cache/hosted/pub.dev/url_launcher_ios-6.3.0/ios/url_launcher_ios.podspec"; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; 412060A2F3DC91E4FB221A1795BD33D5 /* GoogleDataTransport.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = GoogleDataTransport.debug.xcconfig; sourceTree = ""; }; + 4124F1BBB9A75A0DBA297C41EC2A56D9 /* WKProcessPoolManager.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = WKProcessPoolManager.swift; path = "../../../../../../../../../../.pub-cache/hosted/pub.dev/flutter_inappwebview-5.8.0/ios/Classes/WKProcessPoolManager.swift"; sourceTree = ""; }; 41305B9AE08742077D5B2D0013D8762F /* SentryCrashStackEntryMapper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SentryCrashStackEntryMapper.h; path = Sources/Sentry/include/SentryCrashStackEntryMapper.h; sourceTree = ""; }; 414E03E2449868C89991D1917F2073B4 /* FBLPromise+Async.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBLPromise+Async.h"; path = "Sources/FBLPromises/include/FBLPromise+Async.h"; sourceTree = ""; }; 415E744AEA6B8F09D810C897540822CB /* SentryAttachment.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SentryAttachment.h; path = Sources/Sentry/Public/SentryAttachment.h; sourceTree = ""; }; 41828143482AEB812D120C57E82452BE /* NSLocale+Sentry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSLocale+Sentry.h"; path = "Sources/Sentry/include/NSLocale+Sentry.h"; sourceTree = ""; }; 41BCF36C9536C0FCE1A9F4A3EE01E6D4 /* SentryCrashJSONCodec.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SentryCrashJSONCodec.h; path = Sources/SentryCrash/Recording/Tools/SentryCrashJSONCodec.h; sourceTree = ""; }; + 4216104F4274B6101A312E9907EE948F /* IntegrationTestIosTest.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IntegrationTestIosTest.h; path = ../../../../../../../../../../../../../flutter/packages/integration_test/ios/integration_test/Sources/integration_test/include/IntegrationTestIosTest.h; sourceTree = ""; }; 422A3404CD5E6628D89EBB5CCB1A0D79 /* GDTCORUploadCoordinator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORUploadCoordinator.h; path = GoogleDataTransport/GDTCORLibrary/Private/GDTCORUploadCoordinator.h; sourceTree = ""; }; - 424C5202794B80D8D29440538BA84624 /* WebMessageListenerJS.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = WebMessageListenerJS.swift; path = "../../../../../../../../../../.pub-cache/hosted/pub.dev/flutter_inappwebview-5.8.0/ios/Classes/PluginScriptsJS/WebMessageListenerJS.swift"; sourceTree = ""; }; + 42385493A2E9373683CFD647E65599F1 /* url_launcher_ios.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = url_launcher_ios.debug.xcconfig; sourceTree = ""; }; 427B069F78E2CB68E41F4DB64369590D /* GTMNSDictionary+URLArguments.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "GTMNSDictionary+URLArguments.h"; path = "Foundation/GTMNSDictionary+URLArguments.h"; sourceTree = ""; }; 4289BE51A2A68466BDB96912382AEFC6 /* GDTCORFlatFileStorage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORFlatFileStorage.h; path = GoogleDataTransport/GDTCORLibrary/Private/GDTCORFlatFileStorage.h; sourceTree = ""; }; - 42910DD90F88B44F488E6BEEFACE001A /* flutter_inappwebview.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = flutter_inappwebview.modulemap; sourceTree = ""; }; - 429B8F30C0075AC28A8387DE578B0028 /* flutter_secure_storage.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = flutter_secure_storage.debug.xcconfig; sourceTree = ""; }; 42A590E66E9E83BA695620C5B6ADE928 /* GULKeychainUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULKeychainUtils.m; path = GoogleUtilities/Environment/SecureStorage/GULKeychainUtils.m; sourceTree = ""; }; + 42C075972C85D4DE8748EF299217FFEB /* WKContentWorld.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = WKContentWorld.swift; path = "../../../../../../../../../../../.pub-cache/hosted/pub.dev/flutter_inappwebview-5.8.0/ios/Classes/Types/WKContentWorld.swift"; sourceTree = ""; }; 42F64C91746309669AE2C09260F0505A /* SentryRequestOperation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SentryRequestOperation.m; path = Sources/Sentry/SentryRequestOperation.m; sourceTree = ""; }; 431A2D6ACC302EF1623320003D3EB99C /* SentryNetworkTracker.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SentryNetworkTracker.m; path = Sources/Sentry/SentryNetworkTracker.m; sourceTree = ""; }; 4326DF84A7CD898DF493BDFC4227C4D8 /* GULHeartbeatDateStorage.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULHeartbeatDateStorage.m; path = GoogleUtilities/Environment/GULHeartbeatDateStorage.m; sourceTree = ""; }; - 4394870251B440C1407E966C52CB86B4 /* Options.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Options.swift; path = "../../../../../../../../../.pub-cache/hosted/pub.dev/flutter_inappwebview-5.8.0/ios/Classes/Options.swift"; sourceTree = ""; }; 443103ABAE63328DA990EF9DD083FB89 /* Pods-Runner.profile.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-Runner.profile.xcconfig"; sourceTree = ""; }; + 4469F91A5299787F008D44A68B038A80 /* messages.g.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = messages.g.m; path = "../../../../../../../../../../../../.pub-cache/hosted/pub.dev/local_auth_darwin-1.3.1/darwin/local_auth_darwin/Sources/local_auth_darwin/messages.g.m"; sourceTree = ""; }; 44714AD113F4B1583BDC85E549AFF081 /* nanopb.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = nanopb.debug.xcconfig; sourceTree = ""; }; 4476EDC56C67184C6B45570D7ACB8C6D /* SentryDsn.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SentryDsn.h; path = Sources/Sentry/Public/SentryDsn.h; sourceTree = ""; }; - 44852535DA5BBADEAFEDD2380535306A /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; name = LICENSE; path = "../../../../../../../../.pub-cache/hosted/pub.dev/connectivity_plus-6.0.5/LICENSE"; sourceTree = ""; }; + 44D265B00034636200F304E3CF6B5256 /* PhotoPermissionStrategy.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PhotoPermissionStrategy.h; path = "../../../../../../../../../../../.pub-cache/hosted/pub.dev/permission_handler_apple-9.4.5/ios/Classes/strategies/PhotoPermissionStrategy.h"; sourceTree = ""; }; + 44D57AFAF1608E0747127608255354DF /* WKNavigationAction.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = WKNavigationAction.swift; path = "../../../../../../../../../../../.pub-cache/hosted/pub.dev/flutter_inappwebview-5.8.0/ios/Classes/Types/WKNavigationAction.swift"; sourceTree = ""; }; 44DEC3FE8179F57C8F145934C1D864CF /* StringExtensions.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = StringExtensions.swift; path = Sources/Swift/Extensions/StringExtensions.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; }; - 45613676B34FC0CE7FDF844DA5F6E623 /* PrivacyInfo.xcprivacy */ = {isa = PBXFileReference; includeInIndex = 1; name = PrivacyInfo.xcprivacy; path = "../../../../../../../../../.pub-cache/hosted/pub.dev/flutter_email_sender-6.0.3/ios/Resources/PrivacyInfo.xcprivacy"; sourceTree = ""; }; + 452E7613985D693048389B9D08533845 /* OriginalViewPortMetaTagContentJS.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = OriginalViewPortMetaTagContentJS.swift; path = "../../../../../../../../../../../.pub-cache/hosted/pub.dev/flutter_inappwebview-5.8.0/ios/Classes/PluginScriptsJS/OriginalViewPortMetaTagContentJS.swift"; sourceTree = ""; }; + 452FE7F9EF84DAEA60EF9D205E76144F /* PlatformUtil.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = PlatformUtil.swift; path = "../../../../../../../../../../.pub-cache/hosted/pub.dev/flutter_inappwebview-5.8.0/ios/Classes/PlatformUtil.swift"; sourceTree = ""; }; + 4552809E6B3C3DABB1CAB59582D67B8D /* FindElementsAtPointJS.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = FindElementsAtPointJS.swift; path = "../../../../../../../../../../../.pub-cache/hosted/pub.dev/flutter_inappwebview-5.8.0/ios/Classes/PluginScriptsJS/FindElementsAtPointJS.swift"; sourceTree = ""; }; 45C72EC161E9F4FDEA4563135907B05A /* SentrySysctl.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SentrySysctl.m; path = Sources/Sentry/SentrySysctl.m; sourceTree = ""; }; 45C8B9BD99FDE9D0FC0A288F497B5827 /* GULCCDependency.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULCCDependency.m; path = GoogleUtilitiesComponents/Sources/GULCCDependency.m; sourceTree = ""; }; + 45CBD70953AA4E296A4D1A3E38EF28C5 /* SqflitePlugin.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SqflitePlugin.h; path = "../../../../../../../../../../.pub-cache/hosted/pub.dev/sqflite-2.3.3+1/darwin/Classes/SqflitePlugin.h"; sourceTree = ""; }; 45F941371C9DE8BF2657D325A77B9123 /* SentryMechanismMeta.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SentryMechanismMeta.m; path = Sources/Sentry/SentryMechanismMeta.m; sourceTree = ""; }; + 464CAA817B716A5752FDE949AD98B6AE /* LocationPermissionStrategy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = LocationPermissionStrategy.m; path = "../../../../../../../../../../../.pub-cache/hosted/pub.dev/permission_handler_apple-9.4.5/ios/Classes/strategies/LocationPermissionStrategy.m"; sourceTree = ""; }; + 46505DA302F7A14AE8349A3A258DB9E3 /* WebMessageChannelJS.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = WebMessageChannelJS.swift; path = "../../../../../../../../../../../.pub-cache/hosted/pub.dev/flutter_inappwebview-5.8.0/ios/Classes/PluginScriptsJS/WebMessageChannelJS.swift"; sourceTree = ""; }; 465564295EE777E783C8256B465DCEA4 /* Pods-Runner.debug-production.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-Runner.debug-production.xcconfig"; sourceTree = ""; }; 4683C6A6BA60720F17CAD71C28988BDC /* permission_handler_apple-permission_handler_apple_privacy */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; name = "permission_handler_apple-permission_handler_apple_privacy"; path = permission_handler_apple_privacy.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; - 46B590971878E46D6CCCF1367F625174 /* sentry_flutter-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "sentry_flutter-dummy.m"; sourceTree = ""; }; - 470088F212DCF2581243437741172920 /* integration_test-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "integration_test-prefix.pch"; sourceTree = ""; }; 470FA4603D06EF02747F126F7B9749F5 /* GoogleUtilities-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "GoogleUtilities-dummy.m"; sourceTree = ""; }; 474AEB344B92539603838B1058978418 /* GULCCComponentType.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULCCComponentType.h; path = GoogleUtilitiesComponents/Sources/Public/GULCCComponentType.h; sourceTree = ""; }; - 476CF3183D4DC343B96465324FB8BBE7 /* FlutterWebViewController.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = FlutterWebViewController.swift; path = "../../../../../../../../../../.pub-cache/hosted/pub.dev/flutter_inappwebview-5.8.0/ios/Classes/InAppWebView/FlutterWebViewController.swift"; sourceTree = ""; }; + 47A6015B555521EF07B1E7D5BA319B99 /* AudioVideoPermissionStrategy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = AudioVideoPermissionStrategy.m; path = "../../../../../../../../../../../.pub-cache/hosted/pub.dev/permission_handler_apple-9.4.5/ios/Classes/strategies/AudioVideoPermissionStrategy.m"; sourceTree = ""; }; 47ADF48D3C8A8605927DC27056FBC07E /* SentrySwizzleWrapper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SentrySwizzleWrapper.h; path = Sources/Sentry/include/SentrySwizzleWrapper.h; sourceTree = ""; }; 47AEED267729EF28C857BFD49B6901B6 /* IsAppEncrypted.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IsAppEncrypted.h; path = third_party/IsAppEncrypted/Public/IsAppEncrypted.h; sourceTree = ""; }; 4834D8F0FA3C261746D306E316226F3D /* SentryCrashMonitor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SentryCrashMonitor.h; path = Sources/SentryCrash/Recording/Monitors/SentryCrashMonitor.h; sourceTree = ""; }; - 484272E098EB5F841B81880845C7F416 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; name = LICENSE; path = "../../../../../../../../.pub-cache/hosted/pub.dev/shared_preferences_foundation-2.4.0/LICENSE"; sourceTree = ""; }; 48858418C67BAB587096BD607EFA0C79 /* SentryCrashMachineContextWrapper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SentryCrashMachineContextWrapper.h; path = Sources/Sentry/include/SentryCrashMachineContextWrapper.h; sourceTree = ""; }; - 489F41AB03F009F10DB6667A6AE00AF0 /* SecCertificate.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SecCertificate.swift; path = "../../../../../../../../../../.pub-cache/hosted/pub.dev/flutter_inappwebview-5.8.0/ios/Classes/Types/SecCertificate.swift"; sourceTree = ""; }; + 48BD3C3C7868A5D26877B532CD7FD3ED /* sqflite-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "sqflite-Info.plist"; sourceTree = ""; }; 48F15FD0FC51E4EEDAE6EDE80EDD065F /* SentryDefaultObjCRuntimeWrapper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SentryDefaultObjCRuntimeWrapper.h; path = Sources/Sentry/include/SentryDefaultObjCRuntimeWrapper.h; sourceTree = ""; }; 490C697EEF136E5676578F7BA2EC1B0C /* SentryRequestOperation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SentryRequestOperation.h; path = Sources/Sentry/include/SentryRequestOperation.h; sourceTree = ""; }; 491531768C32C0AEE0CAABDAA7FCDA50 /* SentryBreadcrumbTracker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SentryBreadcrumbTracker.h; path = Sources/Sentry/include/SentryBreadcrumbTracker.h; sourceTree = ""; }; @@ -2215,254 +2216,255 @@ 495CA2F78710C0513D29D138C37BFF25 /* GDTCOREvent_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCOREvent_Private.h; path = GoogleDataTransport/GDTCORLibrary/Private/GDTCOREvent_Private.h; sourceTree = ""; }; 497F2B75C867D2399270877559788776 /* connectivity_plus-connectivity_plus_privacy */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; name = "connectivity_plus-connectivity_plus_privacy"; path = connectivity_plus_privacy.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; 49BE5BAFE0B74756E8EFC038C23B3530 /* SentryDispatchSourceWrapper.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SentryDispatchSourceWrapper.m; path = Sources/Sentry/SentryDispatchSourceWrapper.m; sourceTree = ""; }; - 4A037E060424628E5D090B11C0E34DB6 /* sqflite-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "sqflite-dummy.m"; sourceTree = ""; }; 4A09D78CC9FBB620DE2A509B0844C4B6 /* FBLPromise+Always.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBLPromise+Always.h"; path = "Sources/FBLPromises/include/FBLPromise+Always.h"; sourceTree = ""; }; 4A171D792F2C643BC0F41FEC9FA46433 /* SentryThreadHandle.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = SentryThreadHandle.cpp; path = Sources/Sentry/SentryThreadHandle.cpp; sourceTree = ""; }; 4A4924A6DF9DB66899351D1085CE2BF3 /* SentryCrashStackEntryMapper.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SentryCrashStackEntryMapper.m; path = Sources/Sentry/SentryCrashStackEntryMapper.m; sourceTree = ""; }; - 4A5C9C0A41F8CB32362287C68D435712 /* path_provider_foundation-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "path_provider_foundation-prefix.pch"; sourceTree = ""; }; 4A5ECDDFF3FB52C5FF85955DF8D5833C /* GoogleUtilities-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "GoogleUtilities-Info.plist"; sourceTree = ""; }; 4A7E124E1E9F801DFA46657310ACB312 /* GDTCORTransformer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORTransformer.h; path = GoogleDataTransport/GDTCORLibrary/Private/GDTCORTransformer.h; sourceTree = ""; }; - 4A911B9FACB388B308D1ABB5669DD583 /* permission_handler_apple.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = permission_handler_apple.release.xcconfig; sourceTree = ""; }; 4A9A922FA3E953E08E1CB35A75D893E2 /* SentryDisplayLinkWrapper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SentryDisplayLinkWrapper.h; path = Sources/Sentry/include/SentryDisplayLinkWrapper.h; sourceTree = ""; }; - 4AB5B552470F1A73FB23EF2F07B3AFC1 /* share_plus-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "share_plus-umbrella.h"; sourceTree = ""; }; 4AECBCBA71B1D86CAA650F1BBA2A8B1F /* SentryClient.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SentryClient.m; path = Sources/Sentry/SentryClient.m; sourceTree = ""; }; 4B4366A8CCC1BFEA1FF2BE6B23714DA5 /* NSArray+SentrySanitize.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSArray+SentrySanitize.m"; path = "Sources/Sentry/NSArray+SentrySanitize.m"; sourceTree = ""; }; 4B830643D59D61DE43E891BDF71240B6 /* SentryDiscardReason.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SentryDiscardReason.h; path = Sources/Sentry/include/SentryDiscardReason.h; sourceTree = ""; }; 4B87FD3D290CB418699E1BD479E4647A /* SentryCrashMachineContext.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SentryCrashMachineContext.h; path = Sources/SentryCrash/Recording/Tools/SentryCrashMachineContext.h; sourceTree = ""; }; + 4BB6D83A83366DD3295B456FF36F5E3F /* permission_handler_apple.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = permission_handler_apple.release.xcconfig; sourceTree = ""; }; 4BC674FB97FBBEAFA472C5D742173423 /* SentryMetricsClient.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SentryMetricsClient.swift; path = Sources/Swift/Metrics/SentryMetricsClient.swift; sourceTree = ""; }; - 4BD959FE67BD0252AE48B5E4F2974626 /* package_info_plus-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "package_info_plus-dummy.m"; sourceTree = ""; }; - 4BE66C629CE4F50650615593830FE9C3 /* SqfliteOperation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SqfliteOperation.h; path = "../../../../../../../../../.pub-cache/hosted/pub.dev/sqflite-2.3.3+1/darwin/Classes/SqfliteOperation.h"; sourceTree = ""; }; 4C358CAC3F5FB2E9EF9C49203FB9D318 /* SentryCrashIntegration.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SentryCrashIntegration.h; path = Sources/Sentry/include/SentryCrashIntegration.h; sourceTree = ""; }; 4C7548C3B18D0964239630227BAAECFD /* FBLPromise+Await.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBLPromise+Await.h"; path = "Sources/FBLPromises/include/FBLPromise+Await.h"; sourceTree = ""; }; 4CC0210A9480200B9C9343D9E5D3A372 /* GDTCORRegistrar.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORRegistrar.h; path = GoogleDataTransport/GDTCORLibrary/Internal/GDTCORRegistrar.h; sourceTree = ""; }; 4CF5ECD8C48193F9C8D6BD83C5E7AF53 /* SentryCrashCPU_arm.c */ = {isa = PBXFileReference; includeInIndex = 1; name = SentryCrashCPU_arm.c; path = Sources/SentryCrash/Recording/Tools/SentryCrashCPU_arm.c; sourceTree = ""; }; - 4D0612DDE8C8F7609B7755E1C9DECBDE /* permission_handler_apple.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = permission_handler_apple.modulemap; sourceTree = ""; }; - 4D0733B67E2556254DEBC635D3FA3387 /* MobileScannerError.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = MobileScannerError.swift; path = "../../../../../../../../../.pub-cache/hosted/pub.dev/mobile_scanner-3.4.1/ios/Classes/MobileScannerError.swift"; sourceTree = ""; }; 4D0C9F7705400E2EFE2B25F3A465754E /* GTMSessionUploadFetcher.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GTMSessionUploadFetcher.m; path = Sources/Core/GTMSessionUploadFetcher.m; sourceTree = ""; }; - 4D77B6557406A6E126288B744AEF66C6 /* messages.g.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = messages.g.h; path = "../../../../../../../../../../../../../.pub-cache/hosted/pub.dev/image_picker_ios-0.8.12/ios/image_picker_ios/Sources/image_picker_ios/include/image_picker_ios/messages.g.h"; sourceTree = ""; }; + 4D8D74E861EB0F6DC174DEE3768D4ECC /* mobile_scanner.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = mobile_scanner.debug.xcconfig; sourceTree = ""; }; 4E4ED3B3B0F20B11D5843C8993682B8F /* client_metrics.nanopb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = client_metrics.nanopb.h; path = GoogleDataTransport/GDTCCTLibrary/Protogen/nanopb/client_metrics.nanopb.h; sourceTree = ""; }; - 4E7898C0B8206250924C76BBEDC0FF35 /* FlutterWebViewFactory.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = FlutterWebViewFactory.swift; path = "../../../../../../../../../../.pub-cache/hosted/pub.dev/flutter_inappwebview-5.8.0/ios/Classes/InAppWebView/FlutterWebViewFactory.swift"; sourceTree = ""; }; - 4ED70C92FF083202BFD6D3E4FB2FAA7B /* UnknownPermissionStrategy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = UnknownPermissionStrategy.m; path = "../../../../../../../../../../.pub-cache/hosted/pub.dev/permission_handler_apple-9.4.5/ios/Classes/strategies/UnknownPermissionStrategy.m"; sourceTree = ""; }; + 4E7B13718BD4CB0F5C34B077D6D8DE11 /* PermissionHandlerEnums.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PermissionHandlerEnums.h; path = "../../../../../../../../../../.pub-cache/hosted/pub.dev/permission_handler_apple-9.4.5/ios/Classes/PermissionHandlerEnums.h"; sourceTree = ""; }; 4ED9F6D64ABB2F9AC24EC4A55487F1F5 /* Pods-Runner-resources.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-Runner-resources.sh"; sourceTree = ""; }; - 4F2034951BAF58836265831B2A91F698 /* BarcodeHandler.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = BarcodeHandler.swift; path = "../../../../../../../../../.pub-cache/hosted/pub.dev/mobile_scanner-3.4.1/ios/Classes/BarcodeHandler.swift"; sourceTree = ""; }; 4F65148A46BA4F8E3C17C5B85FA94EF6 /* SentryAppStartTrackingIntegration.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SentryAppStartTrackingIntegration.m; path = Sources/Sentry/SentryAppStartTrackingIntegration.m; sourceTree = ""; }; + 4F65D46F70D24038C4A35C7A47A79DAB /* ConsoleLogJS.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ConsoleLogJS.swift; path = "../../../../../../../../../../../.pub-cache/hosted/pub.dev/flutter_inappwebview-5.8.0/ios/Classes/PluginScriptsJS/ConsoleLogJS.swift"; sourceTree = ""; }; + 4F949A9EAD3580AE420B5F0428A66D5C /* AppTrackingTransparencyPermissionStrategy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = AppTrackingTransparencyPermissionStrategy.m; path = "../../../../../../../../../../../.pub-cache/hosted/pub.dev/permission_handler_apple-9.4.5/ios/Classes/strategies/AppTrackingTransparencyPermissionStrategy.m"; sourceTree = ""; }; 502792BCF74C81A8222A39F6B89C0AD1 /* SentryExtraContextProvider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SentryExtraContextProvider.h; path = Sources/Sentry/SentryExtraContextProvider.h; sourceTree = ""; }; 5051A3B8D6C5160F7EF20E6F9F3238B8 /* SentryPerformanceTrackingIntegration.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SentryPerformanceTrackingIntegration.m; path = Sources/Sentry/SentryPerformanceTrackingIntegration.m; sourceTree = ""; }; - 50606B8981BCF3F195DD9FA91838B7F1 /* InAppWebView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = InAppWebView.swift; path = "../../../../../../../../../../.pub-cache/hosted/pub.dev/flutter_inappwebview-5.8.0/ios/Classes/InAppWebView/InAppWebView.swift"; sourceTree = ""; }; + 5054D97F7BC59D791264BFAC2EA210D1 /* image_picker_ios-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "image_picker_ios-dummy.m"; sourceTree = ""; }; 50661651238AA39DF43F0C1E835F9739 /* SentryDateUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SentryDateUtils.h; path = Sources/Sentry/include/SentryDateUtils.h; sourceTree = ""; }; 50886E5C0F842D1E24BDA7B90C8EA595 /* SentryBreadcrumb.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SentryBreadcrumb.m; path = Sources/Sentry/SentryBreadcrumb.m; sourceTree = ""; }; - 511101F78A8C34B727851E240552656E /* ResourceBundle-image_picker_ios_privacy-image_picker_ios-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "ResourceBundle-image_picker_ios_privacy-image_picker_ios-Info.plist"; sourceTree = ""; }; + 50C310450139C6BEE5AE7C8AE6F64BC1 /* CredentialDatabase.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CredentialDatabase.swift; path = "../../../../../../../../../../.pub-cache/hosted/pub.dev/flutter_inappwebview-5.8.0/ios/Classes/CredentialDatabase.swift"; sourceTree = ""; }; + 50E20F8472DAA36995A13B628B59B8FD /* connectivity_plus-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "connectivity_plus-prefix.pch"; sourceTree = ""; }; 5118A18B56D7B2498E81F6FE8224F0CE /* SentryCoreDataSwizzling.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SentryCoreDataSwizzling.h; path = Sources/Sentry/include/SentryCoreDataSwizzling.h; sourceTree = ""; }; 511C082AB6A5D6B54BB33CFB54AA6ABE /* GTMNSString+URLArguments.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "GTMNSString+URLArguments.h"; path = "Foundation/GTMNSString+URLArguments.h"; sourceTree = ""; }; + 511D3890F85458361D15DA4B6D2E2A1C /* share_plus-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "share_plus-dummy.m"; sourceTree = ""; }; + 517F7D79770B6156E39FEB4689E3C404 /* ResourceBundle-local_auth_darwin_privacy-local_auth_darwin-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "ResourceBundle-local_auth_darwin_privacy-local_auth_darwin-Info.plist"; sourceTree = ""; }; 519EA7602DFE4CFDF6CB4781415C899C /* SentryCrashMonitor_MachException.c */ = {isa = PBXFileReference; includeInIndex = 1; name = SentryCrashMonitor_MachException.c; path = Sources/SentryCrash/Recording/Monitors/SentryCrashMonitor_MachException.c; sourceTree = ""; }; - 522BCE26A44266BC00C1CA6D9871F13F /* FLTImagePickerPlugin.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FLTImagePickerPlugin.h; path = "../../../../../../../../../../../../../.pub-cache/hosted/pub.dev/image_picker_ios-0.8.12/ios/image_picker_ios/Sources/image_picker_ios/include/image_picker_ios/FLTImagePickerPlugin.h"; sourceTree = ""; }; + 527F971F891855D07CDF130650B194F5 /* shared_preferences_foundation-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "shared_preferences_foundation-prefix.pch"; sourceTree = ""; }; + 5282DD2A6912A8797B13557140F12A6A /* url_launcher_ios-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "url_launcher_ios-umbrella.h"; sourceTree = ""; }; + 528EB47381E7DE10DDAC6F9AEB7A6DC5 /* SwiftMobileScannerPlugin.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SwiftMobileScannerPlugin.swift; path = "../../../../../../../../../../.pub-cache/hosted/pub.dev/mobile_scanner-3.4.1/ios/Classes/SwiftMobileScannerPlugin.swift"; sourceTree = ""; }; 52B97791BCA9AA562121AE91D7549B9B /* SentryNSNotificationCenterWrapper.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SentryNSNotificationCenterWrapper.m; path = Sources/Sentry/SentryNSNotificationCenterWrapper.m; sourceTree = ""; }; - 52C7A3A30E0D10B312ACB6AF166CB553 /* SqfliteDarwinResultSet.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SqfliteDarwinResultSet.m; path = "../../../../../../../../../.pub-cache/hosted/pub.dev/sqflite-2.3.3+1/darwin/Classes/SqfliteDarwinResultSet.m"; sourceTree = ""; }; 52D3A45B276300DECC1173BE9A70A0A1 /* GoogleMLKit.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = GoogleMLKit.release.xcconfig; sourceTree = ""; }; 52EDB529EB1C45DD30CBB4A7C262F3FE /* SentryCrashFileUtils.c */ = {isa = PBXFileReference; includeInIndex = 1; name = SentryCrashFileUtils.c; path = Sources/SentryCrash/Recording/Tools/SentryCrashFileUtils.c; sourceTree = ""; }; + 52F650C38F364BA6AD78BDD7775115D5 /* sqflite.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = sqflite.debug.xcconfig; sourceTree = ""; }; 531D2B339D5FD260E76AEB3CBEABA60A /* SentryRandom.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SentryRandom.m; path = Sources/Sentry/SentryRandom.m; sourceTree = ""; }; 5340AA246216CC0485F0A2DB3406D5BC /* SentryCrashStackCursor_SelfThread.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SentryCrashStackCursor_SelfThread.h; path = Sources/SentryCrash/Recording/Tools/SentryCrashStackCursor_SelfThread.h; sourceTree = ""; }; 5358FB0C780BDB7645B864483F40E363 /* SentryGeo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SentryGeo.h; path = Sources/Sentry/Public/SentryGeo.h; sourceTree = ""; }; 53E12D8386F9612919909A3A971E4BF5 /* SentryThreadWrapper.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SentryThreadWrapper.m; path = Sources/Sentry/SentryThreadWrapper.m; sourceTree = ""; }; + 53E4CB534020D7746FCAC465A123D541 /* SafariViewController.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SafariViewController.swift; path = "../../../../../../../../../../../.pub-cache/hosted/pub.dev/flutter_inappwebview-5.8.0/ios/Classes/SafariViewController/SafariViewController.swift"; sourceTree = ""; }; 5410852A923F9F0C14EAF53B8890AE49 /* SentryCrashLogger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SentryCrashLogger.h; path = Sources/SentryCrash/Recording/Tools/SentryCrashLogger.h; sourceTree = ""; }; 542D736D64717B205A7F5F91418040B3 /* SentryInAppLogic.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SentryInAppLogic.m; path = Sources/Sentry/SentryInAppLogic.m; sourceTree = ""; }; + 542FB5B8424B41163A50F9D7DE10133E /* path_provider_foundation-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "path_provider_foundation-prefix.pch"; sourceTree = ""; }; 54808F4C79F1B3DD7E6279997A2C4A20 /* SentryTracer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SentryTracer.m; path = Sources/Sentry/SentryTracer.m; sourceTree = ""; }; 551DC89FA62EBB703B87D947EAB51F92 /* SentryWatchdogTerminationLogic.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SentryWatchdogTerminationLogic.h; path = Sources/Sentry/include/SentryWatchdogTerminationLogic.h; sourceTree = ""; }; 559F076843D3DEAFFB1D632C66454C7E /* SentryDsn.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SentryDsn.m; path = Sources/Sentry/SentryDsn.m; sourceTree = ""; }; - 55E516637C2F7465762B5C2428BF50E8 /* flutter_email_sender.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = flutter_email_sender.debug.xcconfig; sourceTree = ""; }; + 55CABBFDA741B6809730DEE1165E60C9 /* mobile_scanner.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = mobile_scanner.release.xcconfig; sourceTree = ""; }; 55E7569F5DF4AF6987AC3E71EC0665AF /* GDTCORReachability.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORReachability.h; path = GoogleDataTransport/GDTCORLibrary/Internal/GDTCORReachability.h; sourceTree = ""; }; - 56538AD6108FE3A9F438A1B9F8B4784B /* MyWebStorageManager.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = MyWebStorageManager.swift; path = "../../../../../../../../../.pub-cache/hosted/pub.dev/flutter_inappwebview-5.8.0/ios/Classes/MyWebStorageManager.swift"; sourceTree = ""; }; - 5683C799BA015A7424D336071DD9AFF8 /* AppTrackingTransparencyPermissionStrategy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = AppTrackingTransparencyPermissionStrategy.m; path = "../../../../../../../../../../.pub-cache/hosted/pub.dev/permission_handler_apple-9.4.5/ios/Classes/strategies/AppTrackingTransparencyPermissionStrategy.m"; sourceTree = ""; }; + 565E46A026A7EE9F4A4FEC023193B7EA /* flutter_inappwebview.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = flutter_inappwebview.modulemap; sourceTree = ""; }; 56867300E59CF9049482A380553A2901 /* GDTCORTransformer_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORTransformer_Private.h; path = GoogleDataTransport/GDTCORLibrary/Private/GDTCORTransformer_Private.h; sourceTree = ""; }; 56A69A0A45EA53F12284538FDBBD233D /* SentryCrashReport.c */ = {isa = PBXFileReference; includeInIndex = 1; name = SentryCrashReport.c; path = Sources/SentryCrash/Recording/SentryCrashReport.c; sourceTree = ""; }; 56B7C98E2D341192D7009750117CB13E /* SentryFramesTracker.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SentryFramesTracker.m; path = Sources/Sentry/SentryFramesTracker.m; sourceTree = ""; }; - 56BF85BDECFE43E05FFEAD16C9E7AAF6 /* CallAsyncJavaScriptBelowIOS14WrapperJS.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CallAsyncJavaScriptBelowIOS14WrapperJS.swift; path = "../../../../../../../../../../.pub-cache/hosted/pub.dev/flutter_inappwebview-5.8.0/ios/Classes/PluginScriptsJS/CallAsyncJavaScriptBelowIOS14WrapperJS.swift"; sourceTree = ""; }; + 56DC8F7B532BD888B28A05F4378FFEAA /* SqfliteOperation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SqfliteOperation.h; path = "../../../../../../../../../../.pub-cache/hosted/pub.dev/sqflite-2.3.3+1/darwin/Classes/SqfliteOperation.h"; sourceTree = ""; }; 570758359ECA629D22B6A8420F28158A /* flutter_native_splash */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = flutter_native_splash; path = flutter_native_splash.framework; sourceTree = BUILT_PRODUCTS_DIR; }; - 5776D1A94BB0D848208043448BFE7DA0 /* local_auth_darwin.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = local_auth_darwin.debug.xcconfig; sourceTree = ""; }; 579D686E3FD0ECA4843AB85AFDC0D2B5 /* ResourceBundle-Sentry-Sentry-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "ResourceBundle-Sentry-Sentry-Info.plist"; sourceTree = ""; }; 57B84415D83500D8EDA8824C6E12DAD9 /* SentryVideoInfo.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SentryVideoInfo.swift; path = Sources/Swift/Integrations/SessionReplay/SentryVideoInfo.swift; sourceTree = ""; }; - 57CECFC214BEF5D0F81A16622EE9DE16 /* Size2D.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Size2D.swift; path = "../../../../../../../../../../.pub-cache/hosted/pub.dev/flutter_inappwebview-5.8.0/ios/Classes/Types/Size2D.swift"; sourceTree = ""; }; + 57D6AA21B16FC3FF93AD29A67F768BB2 /* flutter_native_splash.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = flutter_native_splash.release.xcconfig; sourceTree = ""; }; + 57E0D7BB32F269F5B9F67DB4E5F549A4 /* SqfliteDarwinDatabaseQueue.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SqfliteDarwinDatabaseQueue.m; path = "../../../../../../../../../../.pub-cache/hosted/pub.dev/sqflite-2.3.3+1/darwin/Classes/SqfliteDarwinDatabaseQueue.m"; sourceTree = ""; }; 581B489B850B7AAEE56065A620371878 /* SentryConcurrentRateLimitsDictionary.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SentryConcurrentRateLimitsDictionary.h; path = Sources/Sentry/include/SentryConcurrentRateLimitsDictionary.h; sourceTree = ""; }; 58497E6EB70BA49D9A885C22D09B7A7C /* sqflite-sqflite_darwin_privacy */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; name = "sqflite-sqflite_darwin_privacy"; path = sqflite_darwin_privacy.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; - 58D00FC7880D40B5F8C5E05D5972683E /* flutter_native_splash.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = flutter_native_splash.modulemap; sourceTree = ""; }; + 58A6B07C2849FF1DDEA7048BE6237F78 /* PrivacyInfo.xcprivacy */ = {isa = PBXFileReference; includeInIndex = 1; name = PrivacyInfo.xcprivacy; path = "../../../../../../../../../../../../../.pub-cache/hosted/pub.dev/shared_preferences_foundation-2.4.0/darwin/shared_preferences_foundation/Sources/shared_preferences_foundation/Resources/PrivacyInfo.xcprivacy"; sourceTree = ""; }; + 58DC35A7689D41ED4CDF022F1BB22361 /* IntegrationTestPlugin.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IntegrationTestPlugin.h; path = ../../../../../../../../../../../../../flutter/packages/integration_test/ios/integration_test/Sources/integration_test/include/IntegrationTestPlugin.h; sourceTree = ""; }; + 58E09E942E39929072D400EC167BF91C /* PermissionManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PermissionManager.h; path = "../../../../../../../../../../.pub-cache/hosted/pub.dev/permission_handler_apple-9.4.5/ios/Classes/PermissionManager.h"; sourceTree = ""; }; 591DC8FE50CC93749C6A81FDEA73C728 /* SentryLogOutput.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SentryLogOutput.h; path = Sources/Sentry/include/SentryLogOutput.h; sourceTree = ""; }; 59E43D860C80AD2CD2941759F9790A5C /* SentryCrashReportFilter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SentryCrashReportFilter.h; path = Sources/SentryCrash/Reporting/Filters/SentryCrashReportFilter.h; sourceTree = ""; }; + 59E64776226CA679807D58D84423DF5F /* flutter_email_sender.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = flutter_email_sender.release.xcconfig; sourceTree = ""; }; + 5A077EFE50B468BC7B1023D2C4AD997E /* InAppBrowserOptions.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = InAppBrowserOptions.swift; path = "../../../../../../../../../../../.pub-cache/hosted/pub.dev/flutter_inappwebview-5.8.0/ios/Classes/InAppBrowser/InAppBrowserOptions.swift"; sourceTree = ""; }; + 5A10D61781F68EF9B503F89DB5D8E569 /* local_auth_darwin.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = local_auth_darwin.modulemap; sourceTree = ""; }; 5A2B7648720FA0EB7F1ECBC027E35E34 /* SentryCrashCPU_arm64.c */ = {isa = PBXFileReference; includeInIndex = 1; name = SentryCrashCPU_arm64.c; path = Sources/SentryCrash/Recording/Tools/SentryCrashCPU_arm64.c; sourceTree = ""; }; - 5A4B7642BFE42B7B3971DC137604205F /* NotificationPermissionStrategy.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = NotificationPermissionStrategy.h; path = "../../../../../../../../../../.pub-cache/hosted/pub.dev/permission_handler_apple-9.4.5/ios/Classes/strategies/NotificationPermissionStrategy.h"; sourceTree = ""; }; - 5AD6A568D91726A600D976F468BB6640 /* SslCertificate.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SslCertificate.swift; path = "../../../../../../../../../../.pub-cache/hosted/pub.dev/flutter_inappwebview-5.8.0/ios/Classes/Types/SslCertificate.swift"; sourceTree = ""; }; + 5A3C8B83E4639DF8E3F0225082CB929E /* flutter_secure_storage.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = flutter_secure_storage.modulemap; sourceTree = ""; }; + 5A887D92CB0E550F051157CDAA550DB9 /* URLProtectionSpace.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = URLProtectionSpace.swift; path = "../../../../../../../../../../../.pub-cache/hosted/pub.dev/flutter_inappwebview-5.8.0/ios/Classes/Types/URLProtectionSpace.swift"; sourceTree = ""; }; + 5AAFCE5D453CBDFE560F41DEF7D746DD /* BackgroundRefreshStrategy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = BackgroundRefreshStrategy.m; path = "../../../../../../../../../../../.pub-cache/hosted/pub.dev/permission_handler_apple-9.4.5/ios/Classes/strategies/BackgroundRefreshStrategy.m"; sourceTree = ""; }; + 5AB81A750F4B3338FC4711F57CC1505E /* URLLaunchSession.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = URLLaunchSession.swift; path = "../../../../../../../../../../../../.pub-cache/hosted/pub.dev/url_launcher_ios-6.3.0/ios/url_launcher_ios/Sources/url_launcher_ios/URLLaunchSession.swift"; sourceTree = ""; }; + 5ACA34BFC6EAE3E5A15EE45A206A60FA /* integration_test.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = integration_test.release.xcconfig; sourceTree = ""; }; 5B05273205EA6ECCA9864157ED11CE74 /* SentryEnvelopeRateLimit.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SentryEnvelopeRateLimit.h; path = Sources/Sentry/include/SentryEnvelopeRateLimit.h; sourceTree = ""; }; - 5B0EFBE07BFA616A4F4C7EEECC387452 /* PermissionStrategy.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PermissionStrategy.h; path = "../../../../../../../../../../.pub-cache/hosted/pub.dev/permission_handler_apple-9.4.5/ios/Classes/strategies/PermissionStrategy.h"; sourceTree = ""; }; 5B1EDC10DD3A964E6BE6BEA5C2706513 /* SentrySpotlightTransport.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SentrySpotlightTransport.h; path = Sources/Sentry/include/SentrySpotlightTransport.h; sourceTree = ""; }; + 5B385CBA22624866DCD19C0B8CCF9C42 /* flutter_nekoton_bridge.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = flutter_nekoton_bridge.release.xcconfig; sourceTree = ""; }; 5B707EA37CBC3DFDABC9D9DFAD54F4BD /* integration_test */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = integration_test; path = integration_test.framework; sourceTree = BUILT_PRODUCTS_DIR; }; 5B7CCD939793E0483943A9DB6D6509A2 /* flutter_native_splash-flutter_native_splash_privacy */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; name = "flutter_native_splash-flutter_native_splash_privacy"; path = flutter_native_splash_privacy.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; 5B8EBBC1C874C9BB52674475C9614757 /* FBLPromise.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBLPromise.h; path = Sources/FBLPromises/include/FBLPromise.h; sourceTree = ""; }; 5BBEADE1085FF80C40FC43AC2CC1EFA8 /* SentryUIEventTrackerTransactionMode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SentryUIEventTrackerTransactionMode.h; path = Sources/Sentry/include/SentryUIEventTrackerTransactionMode.h; sourceTree = ""; }; 5BC0650D481B6EFD806654B3DB150F71 /* pb_decode.c */ = {isa = PBXFileReference; includeInIndex = 1; path = pb_decode.c; sourceTree = ""; }; - 5BF758C9ADCCF1C7EEA72EA32EE476FE /* SqfliteDarwinResultSet.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SqfliteDarwinResultSet.h; path = "../../../../../../../../../.pub-cache/hosted/pub.dev/sqflite-2.3.3+1/darwin/Classes/SqfliteDarwinResultSet.h"; sourceTree = ""; }; 5C14E1383414006C7CB65F7A866C8A96 /* PrivacyInfo.xcprivacy */ = {isa = PBXFileReference; includeInIndex = 1; name = PrivacyInfo.xcprivacy; path = GoogleDataTransport/Resources/PrivacyInfo.xcprivacy; sourceTree = ""; }; - 5C2AE7354707AE81A2F79D957A8212D5 /* MobileScannerPlugin.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MobileScannerPlugin.h; path = "../../../../../../../../../.pub-cache/hosted/pub.dev/mobile_scanner-3.4.1/ios/Classes/MobileScannerPlugin.h"; sourceTree = ""; }; 5C432F086D8174EA640A97AA8BF3E826 /* GTMLogger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GTMLogger.h; path = Foundation/GTMLogger.h; sourceTree = ""; }; - 5CE3A2EE3CB2E7F8919C1CBC5039AB44 /* ChromeSafariBrowserManager.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ChromeSafariBrowserManager.swift; path = "../../../../../../../../../../.pub-cache/hosted/pub.dev/flutter_inappwebview-5.8.0/ios/Classes/SafariViewController/ChromeSafariBrowserManager.swift"; sourceTree = ""; }; 5CF3FAEADD5184489635D4A78F8AA64A /* SentryCrashStackCursor_Backtrace.c */ = {isa = PBXFileReference; includeInIndex = 1; name = SentryCrashStackCursor_Backtrace.c; path = Sources/SentryCrash/Recording/Tools/SentryCrashStackCursor_Backtrace.c; sourceTree = ""; }; + 5D1DC509408A3AC2E1A90C74C1E3FC08 /* SpeechPermissionStrategy.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SpeechPermissionStrategy.h; path = "../../../../../../../../../../../.pub-cache/hosted/pub.dev/permission_handler_apple-9.4.5/ios/Classes/strategies/SpeechPermissionStrategy.h"; sourceTree = ""; }; 5D2B88AD25CD5EBE586D760474336767 /* MLKitBarcodeScanning.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = MLKitBarcodeScanning.release.xcconfig; sourceTree = ""; }; 5D2DA3CB411FF35D30470F3AEFA259CB /* Flutter.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = Flutter.release.xcconfig; sourceTree = ""; }; - 5DD69DB6B10A9A0CEB19E81324E7928D /* share_plus.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = share_plus.modulemap; sourceTree = ""; }; + 5D3DF78F3AB1A8212A48E1DA7888300A /* mobile_scanner-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "mobile_scanner-umbrella.h"; sourceTree = ""; }; 5DF5C54DF376EDC2740FDDA7822E9F98 /* SentryNoOpSpan.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SentryNoOpSpan.m; path = Sources/Sentry/SentryNoOpSpan.m; sourceTree = ""; }; 5E2B5B681A1B94B9A02516B52B9382BB /* SentryCrashDoctor.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SentryCrashDoctor.m; path = Sources/SentryCrash/Recording/SentryCrashDoctor.m; sourceTree = ""; }; 5E53C3D1835B1285E62CECB0D558A30B /* SentrySpanStatus.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SentrySpanStatus.m; path = Sources/Sentry/SentrySpanStatus.m; sourceTree = ""; }; + 5E5F60D34991F41C62378F0A631CA921 /* flutter_native_splash-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "flutter_native_splash-Info.plist"; sourceTree = ""; }; 5EADC9E9EA3DF5DF3AA6EA903D6E29CC /* Pods-Runner-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-Runner-dummy.m"; sourceTree = ""; }; + 5EF045136117B2771000DF5537101A6F /* InAppBrowserManager.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = InAppBrowserManager.swift; path = "../../../../../../../../../../../.pub-cache/hosted/pub.dev/flutter_inappwebview-5.8.0/ios/Classes/InAppBrowser/InAppBrowserManager.swift"; sourceTree = ""; }; + 5F23FC03974C64BA2BCCC5C23D1A74A2 /* FlutterWebViewFactory.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = FlutterWebViewFactory.swift; path = "../../../../../../../../../../../.pub-cache/hosted/pub.dev/flutter_inappwebview-5.8.0/ios/Classes/InAppWebView/FlutterWebViewFactory.swift"; sourceTree = ""; }; 5F279B792130F53EB9A0EB23219B8265 /* SentrySampling.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SentrySampling.h; path = Sources/Sentry/include/SentrySampling.h; sourceTree = ""; }; 5F6C337D3E25CADB50ECEC7217888E39 /* flutter_email_sender */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = flutter_email_sender; path = flutter_email_sender.framework; sourceTree = BUILT_PRODUCTS_DIR; }; - 5F6CDE1EE76A3B1438204E603889FD49 /* FLALocalAuthPlugin.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FLALocalAuthPlugin.h; path = "../../../../../../../../../../../../../.pub-cache/hosted/pub.dev/local_auth_darwin-1.3.1/darwin/local_auth_darwin/Sources/local_auth_darwin/include/local_auth_darwin/FLALocalAuthPlugin.h"; sourceTree = ""; }; - 5FEA14E968653FEC4B1559501F3C371E /* flutter_secure_storage-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "flutter_secure_storage-Info.plist"; sourceTree = ""; }; + 5F732997C856FFFBE03B3F9D18458E97 /* UIColor.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = UIColor.swift; path = "../../../../../../../../../../../.pub-cache/hosted/pub.dev/flutter_inappwebview-5.8.0/ios/Classes/Types/UIColor.swift"; sourceTree = ""; }; 60108ACFF8405483AD3F6D3D2ADBE3E1 /* SentryCrashString.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SentryCrashString.h; path = Sources/SentryCrash/Recording/Tools/SentryCrashString.h; sourceTree = ""; }; 6017CB85214038F38DA5C737650AC0BE /* SentryCrashMemory.c */ = {isa = PBXFileReference; includeInIndex = 1; name = SentryCrashMemory.c; path = Sources/SentryCrash/Recording/Tools/SentryCrashMemory.c; sourceTree = ""; }; + 60361473920F028EC7A43F40E889619E /* SqfliteOperation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SqfliteOperation.m; path = "../../../../../../../../../../.pub-cache/hosted/pub.dev/sqflite-2.3.3+1/darwin/Classes/SqfliteOperation.m"; sourceTree = ""; }; 604018C424B3CBE3A3A49D97BE79F259 /* local_auth_darwin */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = local_auth_darwin; path = local_auth_darwin.framework; sourceTree = BUILT_PRODUCTS_DIR; }; 604EEE74FCAD45C9D6CDD32802D5927B /* MetricsAggregator.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = MetricsAggregator.swift; path = Sources/Swift/Metrics/MetricsAggregator.swift; sourceTree = ""; }; 6050E13CCB8BA3F9A4998EB3FAC0945A /* SentrySession+Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "SentrySession+Private.h"; path = "Sources/Sentry/include/SentrySession+Private.h"; sourceTree = ""; }; + 606EE2344E4E1B60A9C6DFCBA7F21C85 /* local_auth_darwin-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "local_auth_darwin-umbrella.h"; sourceTree = ""; }; 6071F28FAC4B53E4A6B2FD5AAF68EE01 /* SentryProfiler.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = SentryProfiler.mm; path = Sources/Sentry/SentryProfiler.mm; sourceTree = ""; }; + 6091F2C543B2643DFF7BDD085FDDFF0E /* shared_preferences_foundation.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = shared_preferences_foundation.modulemap; sourceTree = ""; }; + 609A48A47FDE743A7EEB5DECF1A08A5E /* IntegrationTestIosTest.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = IntegrationTestIosTest.m; path = ../../../../../../../../../../../../flutter/packages/integration_test/ios/integration_test/Sources/integration_test/IntegrationTestIosTest.m; sourceTree = ""; }; + 60E7A887AD84EB0EB1139A01F9DF3F15 /* SentryFlutter.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SentryFlutter.swift; path = "../../../../../../../../../../.pub-cache/hosted/pub.dev/sentry_flutter-7.20.2/ios/Classes/SentryFlutter.swift"; sourceTree = ""; }; 60E8C9E19751405B57238651D372C6EE /* flutter_inappwebview */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = flutter_inappwebview; path = flutter_inappwebview.framework; sourceTree = BUILT_PRODUCTS_DIR; }; + 612B9727B9129F63754F26C7CE5D80AB /* SwiftFlutterSecureStoragePlugin.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SwiftFlutterSecureStoragePlugin.swift; path = "../../../../../../../../../../.pub-cache/hosted/pub.dev/flutter_secure_storage-9.2.2/ios/Classes/SwiftFlutterSecureStoragePlugin.swift"; sourceTree = ""; }; 61DAAD690E768959F7A59ED1E8B1AF11 /* GTMNSDictionary+URLArguments.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "GTMNSDictionary+URLArguments.m"; path = "Foundation/GTMNSDictionary+URLArguments.m"; sourceTree = ""; }; 61F0B6EE157F1CC1327907CC6043BB2E /* SentrySwizzle.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SentrySwizzle.h; path = Sources/Sentry/include/HybridPublic/SentrySwizzle.h; sourceTree = ""; }; + 6201BD6C84B86BD570988C7E3B8409CB /* package_info_plus.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = package_info_plus.release.xcconfig; sourceTree = ""; }; 62246A4F0A02545B4921EBB9BE09F33D /* GULKeychainStorage.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULKeychainStorage.m; path = GoogleUtilities/Environment/SecureStorage/GULKeychainStorage.m; sourceTree = ""; }; 622C0A33F8614FAD879EF5BBA864C00F /* GoogleUtilitiesComponents-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "GoogleUtilitiesComponents-umbrella.h"; sourceTree = ""; }; 623BEAB9D4BE90AD822FA77183977F26 /* GTMSessionFetcherService.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GTMSessionFetcherService.m; path = Sources/Core/GTMSessionFetcherService.m; sourceTree = ""; }; 624C3DB1D011D9C11284E8C28BB7936C /* ResourceBundle-GoogleDataTransport_Privacy-GoogleDataTransport-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "ResourceBundle-GoogleDataTransport_Privacy-GoogleDataTransport-Info.plist"; sourceTree = ""; }; 62E80E497DF6562F231EE162EAC0A0A4 /* SentryStatsdClient.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SentryStatsdClient.h; path = Sources/Sentry/include/SentryStatsdClient.h; sourceTree = ""; }; - 62F3A4FD7233DD7345513D93D1CAD1EA /* ConnectivityPlusPlugin.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ConnectivityPlusPlugin.h; path = "../../../../../../../../../.pub-cache/hosted/pub.dev/connectivity_plus-6.0.5/darwin/Classes/ConnectivityPlusPlugin.h"; sourceTree = ""; }; 635C0CF1AF8D62C8BE7306B19084A183 /* SentryEnvelope.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SentryEnvelope.m; path = Sources/Sentry/SentryEnvelope.m; sourceTree = ""; }; + 63CED364D9086C6A4A9C77EEEE389E79 /* url_launcher_ios-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "url_launcher_ios-prefix.pch"; sourceTree = ""; }; 63D826D31EDCEB80FAA88CC787159DD1 /* GULSecureCoding.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULSecureCoding.h; path = GoogleUtilities/Environment/Public/GoogleUtilities/GULSecureCoding.h; sourceTree = ""; }; 6438E341BFD31DB8F075D62CA7824163 /* SentryTraceOrigins.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SentryTraceOrigins.h; path = Sources/Sentry/include/SentryTraceOrigins.h; sourceTree = ""; }; + 64544785A7B215DCC22DE13B2D280280 /* FPPSharePlusPlugin.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FPPSharePlusPlugin.h; path = "../../../../../../../../../../.pub-cache/hosted/pub.dev/share_plus-9.0.0/ios/Classes/FPPSharePlusPlugin.h"; sourceTree = ""; }; 6473A85F3ACDACCD845F71132BBD297E /* SentryCrashThread.c */ = {isa = PBXFileReference; includeInIndex = 1; name = SentryCrashThread.c; path = Sources/SentryCrash/Recording/Tools/SentryCrashThread.c; sourceTree = ""; }; + 647AF74A660CD01F846A1543442C4B46 /* ContactPermissionStrategy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = ContactPermissionStrategy.m; path = "../../../../../../../../../../../.pub-cache/hosted/pub.dev/permission_handler_apple-9.4.5/ios/Classes/strategies/ContactPermissionStrategy.m"; sourceTree = ""; }; 64874E43B1DAE151A3B8322504F4530D /* SentryRedactOptions.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SentryRedactOptions.swift; path = Sources/Swift/Protocol/SentryRedactOptions.swift; sourceTree = ""; }; 64FB8D36F3D5FD1F4E08A8CB92BCD154 /* package_info_plus-package_info_plus_privacy */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; name = "package_info_plus-package_info_plus_privacy"; path = package_info_plus_privacy.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; - 651C318C5F53D668DFE20EB949F43E2E /* MobileScannerPlugin.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MobileScannerPlugin.m; path = "../../../../../../../../../.pub-cache/hosted/pub.dev/mobile_scanner-3.4.1/ios/Classes/MobileScannerPlugin.m"; sourceTree = ""; }; 654A4874CA897A7AC265EC6B88A8741F /* GDTCORTransport.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORTransport.h; path = GoogleDataTransport/GDTCORLibrary/Public/GoogleDataTransport/GDTCORTransport.h; sourceTree = ""; }; 65C9D39304783530FB1FE7D349E78FC1 /* GULAppEnvironmentUtil.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULAppEnvironmentUtil.m; path = GoogleUtilities/Environment/GULAppEnvironmentUtil.m; sourceTree = ""; }; 65D1104704ABEC085522C44DBBEC4995 /* GaugeMetric.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = GaugeMetric.swift; path = Sources/Swift/Metrics/GaugeMetric.swift; sourceTree = ""; }; - 65F7EFA91B766FF90C7630E9FE96EB58 /* flutter_keyboard_visibility.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = flutter_keyboard_visibility.modulemap; sourceTree = ""; }; + 65DF9762E599DE833A11517B62C9BA6D /* PrintJS.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = PrintJS.swift; path = "../../../../../../../../../../../.pub-cache/hosted/pub.dev/flutter_inappwebview-5.8.0/ios/Classes/PluginScriptsJS/PrintJS.swift"; sourceTree = ""; }; 6604CD48E585158CC87FE8AF25825A8D /* FBLPromise+Retry.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FBLPromise+Retry.m"; path = "Sources/FBLPromises/FBLPromise+Retry.m"; sourceTree = ""; }; 6629E038C18F2F8EC0B6C37710DCE54C /* SentryCrashMonitor_NSException.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SentryCrashMonitor_NSException.m; path = Sources/SentryCrash/Recording/Monitors/SentryCrashMonitor_NSException.m; sourceTree = ""; }; 665042E44851BCC2694B21D954BF8D5E /* SentryDelayedFrame.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SentryDelayedFrame.m; path = Sources/Sentry/SentryDelayedFrame.m; sourceTree = ""; }; + 665D58522994802C9F46348C975A8E0A /* flutter_native_splash.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = flutter_native_splash.debug.xcconfig; sourceTree = ""; }; 668614683AFFDC1D7E10F112C723EE3C /* SentryThreadMetadataCache.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = SentryThreadMetadataCache.cpp; path = Sources/Sentry/SentryThreadMetadataCache.cpp; sourceTree = ""; }; 669E8F25E1897672BDB80B7EB784DA24 /* Pods-Runner */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = "Pods-Runner"; path = Pods_Runner.framework; sourceTree = BUILT_PRODUCTS_DIR; }; 66AC354FC3F3C536D91A3A6FE49FD5EB /* SentrySystemWrapper.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = SentrySystemWrapper.mm; path = Sources/Sentry/SentrySystemWrapper.mm; sourceTree = ""; }; 66DAF6152733BC4ED1606C3983AE9890 /* Sentry.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = Sentry.modulemap; sourceTree = ""; }; + 66FD748DD8BE8D76D427D6B35DDEB846 /* shared_preferences_foundation-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "shared_preferences_foundation-umbrella.h"; sourceTree = ""; }; 670C8E8BC3F615901CAE735C0CBBE8CA /* share_plus */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = share_plus; path = share_plus.framework; sourceTree = BUILT_PRODUCTS_DIR; }; 67309C7A058D2A2B716028AF334D1E4C /* Pods-Runner-frameworks.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-Runner-frameworks.sh"; sourceTree = ""; }; - 67CA9A16B0C72D26B1972AE0917432CA /* HeadlessInAppWebView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = HeadlessInAppWebView.swift; path = "../../../../../../../../../../.pub-cache/hosted/pub.dev/flutter_inappwebview-5.8.0/ios/Classes/HeadlessInAppWebView/HeadlessInAppWebView.swift"; sourceTree = ""; }; + 68459B178188808C2EF712B931C7976A /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; name = LICENSE; path = "../../../../../../../../../.pub-cache/hosted/pub.dev/flutter_secure_storage-9.2.2/LICENSE"; sourceTree = ""; }; 684C475EEEC4740BF2506B973AC769EF /* SentrySystemWrapper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SentrySystemWrapper.h; path = Sources/Sentry/include/SentrySystemWrapper.h; sourceTree = ""; }; 68D66FC00323C25EE42BA98472BB46D1 /* GDTCORMetrics+GDTCCTSupport.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "GDTCORMetrics+GDTCCTSupport.h"; path = "GoogleDataTransport/GDTCCTLibrary/Private/GDTCORMetrics+GDTCCTSupport.h"; sourceTree = ""; }; 68F9FAA480BE82B6982334CCB752A1A7 /* SentryCoreDataTrackingIntegration.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SentryCoreDataTrackingIntegration.m; path = Sources/Sentry/SentryCoreDataTrackingIntegration.m; sourceTree = ""; }; - 690018F364FF671CA42A8ABB0B2C197C /* PhonePermissionStrategy.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PhonePermissionStrategy.h; path = "../../../../../../../../../../.pub-cache/hosted/pub.dev/permission_handler_apple-9.4.5/ios/Classes/strategies/PhonePermissionStrategy.h"; sourceTree = ""; }; - 6913A4BB34E3494F48F15ED2F302E8C6 /* integration_test-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "integration_test-Info.plist"; sourceTree = ""; }; - 692CE151EB259A1A320BC0593B8D2D93 /* image_picker_ios.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = image_picker_ios.debug.xcconfig; sourceTree = ""; }; 692F4BFE75D1792D2D8989315F1596B8 /* GDTCORDirectorySizeTracker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORDirectorySizeTracker.h; path = GoogleDataTransport/GDTCORLibrary/Internal/GDTCORDirectorySizeTracker.h; sourceTree = ""; }; - 693AFE2EF4356A24632C838F756F9056 /* AssistantPermissionStrategy.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AssistantPermissionStrategy.h; path = "../../../../../../../../../../.pub-cache/hosted/pub.dev/permission_handler_apple-9.4.5/ios/Classes/strategies/AssistantPermissionStrategy.h"; sourceTree = ""; }; + 693045B9D1D77942BB85962EF30FA0FF /* UnknownPermissionStrategy.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UnknownPermissionStrategy.h; path = "../../../../../../../../../../../.pub-cache/hosted/pub.dev/permission_handler_apple-9.4.5/ios/Classes/strategies/UnknownPermissionStrategy.h"; sourceTree = ""; }; 694A3ECD7709F9445D4ACFACD3DA5ED5 /* SentryMeasurementValue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SentryMeasurementValue.h; path = Sources/Sentry/include/SentryMeasurementValue.h; sourceTree = ""; }; + 6955668E3FB2C1A52FD85A1F004DA1B5 /* SqfliteDarwinImport.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SqfliteDarwinImport.h; path = "../../../../../../../../../../.pub-cache/hosted/pub.dev/sqflite-2.3.3+1/darwin/Classes/SqfliteDarwinImport.h"; sourceTree = ""; }; 697D50DD9B63104D7265EBE5DD7C3D22 /* ResourceBundle-GoogleUtilities_Privacy-GoogleUtilities-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "ResourceBundle-GoogleUtilities_Privacy-GoogleUtilities-Info.plist"; sourceTree = ""; }; 69D6BFC881DC87323E29E41288C3496B /* SentryTransport.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SentryTransport.h; path = Sources/Sentry/include/SentryTransport.h; sourceTree = ""; }; 69E79B6352F5EEE6319DD35575B44D3F /* sentry_flutter */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = sentry_flutter; path = sentry_flutter.framework; sourceTree = BUILT_PRODUCTS_DIR; }; - 6A13097C99ED99D800EFB8A72E7A69EE /* sqflite.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; name = sqflite.podspec; path = "../../../../../../../../.pub-cache/hosted/pub.dev/sqflite-2.3.3+1/darwin/sqflite.podspec"; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 6A3057AB7A63DB33FDEDBF7D67411785 /* FLTImagePickerImageUtil.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FLTImagePickerImageUtil.h; path = "../../../../../../../../../../../../../../.pub-cache/hosted/pub.dev/image_picker_ios-0.8.12/ios/image_picker_ios/Sources/image_picker_ios/include/image_picker_ios/FLTImagePickerImageUtil.h"; sourceTree = ""; }; 6A5E206E695612BD8E5D3A35280EA410 /* Pods-Runner.debug-development.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-Runner.debug-development.xcconfig"; sourceTree = ""; }; - 6AAFB65C4BA5A2F7AF16F48ED6216196 /* url_launcher_ios-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "url_launcher_ios-dummy.m"; sourceTree = ""; }; - 6AC2CDBDA2C84742D8442B75D06690C1 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; name = LICENSE; path = "../../../../../../../../.pub-cache/hosted/pub.dev/sqflite-2.3.3+1/LICENSE"; sourceTree = ""; }; - 6B1F58ED911279AB864FCDECE7DCFE2F /* path_provider_foundation.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; name = path_provider_foundation.podspec; path = "../../../../../../../../.pub-cache/hosted/pub.dev/path_provider_foundation-2.4.0/darwin/path_provider_foundation.podspec"; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; 6B3D7A6B96ED24026FAE078C4945C9B9 /* SentryDiscardReasonMapper.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SentryDiscardReasonMapper.m; path = Sources/Sentry/SentryDiscardReasonMapper.m; sourceTree = ""; }; - 6B43A3D667231EA08168FA15C64549BC /* InAppBrowserNavigationController.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = InAppBrowserNavigationController.swift; path = "../../../../../../../../../../.pub-cache/hosted/pub.dev/flutter_inappwebview-5.8.0/ios/Classes/InAppBrowser/InAppBrowserNavigationController.swift"; sourceTree = ""; }; 6B7312DEB07AE1A4CDEA294112F4CB67 /* GoogleToolboxForMac-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "GoogleToolboxForMac-Info.plist"; sourceTree = ""; }; 6B7A732473B9BB85D8E11B1181192D53 /* SentryLevelMapper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SentryLevelMapper.h; path = Sources/Sentry/include/SentryLevelMapper.h; sourceTree = ""; }; - 6BA092AC59C062C1185FE39A96FB0D4E /* PrivacyInfo.xcprivacy */ = {isa = PBXFileReference; includeInIndex = 1; name = PrivacyInfo.xcprivacy; path = "../../../../../../../../../../../../.pub-cache/hosted/pub.dev/shared_preferences_foundation-2.4.0/darwin/shared_preferences_foundation/Sources/shared_preferences_foundation/Resources/PrivacyInfo.xcprivacy"; sourceTree = ""; }; 6BA0C9B5233795A9BEB379FB5C600708 /* GDTCORClock.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTCORClock.m; path = GoogleDataTransport/GDTCORLibrary/GDTCORClock.m; sourceTree = ""; }; 6BA23F66424B62DD071F4C090C5F6364 /* FBLPromise+Then.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBLPromise+Then.h"; path = "Sources/FBLPromises/include/FBLPromise+Then.h"; sourceTree = ""; }; + 6C390E18D407C75134992C9623FB6D16 /* LastTouchedAnchorOrImageJS.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = LastTouchedAnchorOrImageJS.swift; path = "../../../../../../../../../../../.pub-cache/hosted/pub.dev/flutter_inappwebview-5.8.0/ios/Classes/PluginScriptsJS/LastTouchedAnchorOrImageJS.swift"; sourceTree = ""; }; 6C4809F1437A7F21FBBDB517AFFAE066 /* OrderedSet-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "OrderedSet-Info.plist"; sourceTree = ""; }; 6C7BD7ECD1749D1485B7EAFD1AE85595 /* cct.nanopb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = cct.nanopb.c; path = GoogleDataTransport/GDTCCTLibrary/Protogen/nanopb/cct.nanopb.c; sourceTree = ""; }; 6CB0A8EA063D106650DE5F999A8DCC5F /* GTMSessionFetcher.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GTMSessionFetcher.h; path = Sources/Core/Public/GTMSessionFetcher/GTMSessionFetcher.h; sourceTree = ""; }; 6CBA89D8561FB861551845FD5686506D /* SentryBacktrace.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = SentryBacktrace.hpp; path = Sources/Sentry/include/SentryBacktrace.hpp; sourceTree = ""; }; 6CCA9D05A7AEDA9760CD289350CF78F6 /* SentryDiscardedEvent.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SentryDiscardedEvent.m; path = Sources/Sentry/SentryDiscardedEvent.m; sourceTree = ""; }; - 6CF561F3B325D5AB022AE5DA4E78C443 /* flutter_secure_storage-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "flutter_secure_storage-dummy.m"; sourceTree = ""; }; 6CFEBF80C58F93061896191B13EA68AE /* SentryMessage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SentryMessage.h; path = Sources/Sentry/Public/SentryMessage.h; sourceTree = ""; }; - 6D3FC8F30A9759CEC467C9CBCFF1BDA6 /* mobile_scanner.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = mobile_scanner.release.xcconfig; sourceTree = ""; }; + 6D11B878F8E3EC57360BDCA5E111BA2F /* ConnectivityPlusPlugin.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ConnectivityPlusPlugin.h; path = "../../../../../../../../../../.pub-cache/hosted/pub.dev/connectivity_plus-6.0.5/darwin/Classes/ConnectivityPlusPlugin.h"; sourceTree = ""; }; 6D3FD4746C5C4B5292B7C4C862F01EF9 /* connectivity_plus */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = connectivity_plus; path = connectivity_plus.framework; sourceTree = BUILT_PRODUCTS_DIR; }; 6D543797953E07E2E2C9EA6371379391 /* SentryHttpStatusCodeRange.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SentryHttpStatusCodeRange.h; path = Sources/Sentry/Public/SentryHttpStatusCodeRange.h; sourceTree = ""; }; - 6D6077BCEAA98B23BF0FA1AAB28DDF92 /* LocationPermissionStrategy.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LocationPermissionStrategy.h; path = "../../../../../../../../../../.pub-cache/hosted/pub.dev/permission_handler_apple-9.4.5/ios/Classes/strategies/LocationPermissionStrategy.h"; sourceTree = ""; }; - 6DAB145DCC86BE217B8CA28E31296D28 /* permission_handler_apple-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "permission_handler_apple-dummy.m"; sourceTree = ""; }; 6DF6839989319A17E0304C0B91DF3B77 /* SentryCrashStackCursor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SentryCrashStackCursor.h; path = Sources/SentryCrash/Recording/Tools/SentryCrashStackCursor.h; sourceTree = ""; }; 6E03A906B8325263E1051AF672C50AB9 /* SentryAsyncSafeLogging.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SentryAsyncSafeLogging.h; path = Sources/Sentry/include/SentryAsyncSafeLogging.h; sourceTree = ""; }; - 6E50B0B1BAC52DB51E5638C5C23ECFAA /* flutter_nekoton_bridge-xcframeworks.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "flutter_nekoton_bridge-xcframeworks.sh"; sourceTree = ""; }; + 6E4F25CCB88A77087DC89A1A52759024 /* ResourceBundle-url_launcher_ios_privacy-url_launcher_ios-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "ResourceBundle-url_launcher_ios_privacy-url_launcher_ios-Info.plist"; sourceTree = ""; }; 6E7BD82EA8128B9741DA5CD53B5F7211 /* GTMNSData+zlib.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "GTMNSData+zlib.m"; path = "Foundation/GTMNSData+zlib.m"; sourceTree = ""; }; 6EA5C374EE6EAA132A09D9DACFDA6118 /* FBLPromise+Race.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBLPromise+Race.h"; path = "Sources/FBLPromises/include/FBLPromise+Race.h"; sourceTree = ""; }; + 6EA8998AF7961DF6CDFB98E50DC6D3C6 /* PrivacyInfo.xcprivacy */ = {isa = PBXFileReference; includeInIndex = 1; name = PrivacyInfo.xcprivacy; path = "../../../../../../../../../.pub-cache/hosted/pub.dev/share_plus-9.0.0/ios/PrivacyInfo.xcprivacy"; sourceTree = ""; }; 6EBF652D2972BFE2EF13050E16FDD19C /* SentrySerializable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SentrySerializable.h; path = Sources/Sentry/Public/SentrySerializable.h; sourceTree = ""; }; 6F1934F60BF07A8AB7C46FDD16517DAA /* SentryFramesTrackingIntegration.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SentryFramesTrackingIntegration.h; path = Sources/Sentry/include/SentryFramesTrackingIntegration.h; sourceTree = ""; }; + 6F1ABA9F5D09ED0D561D477370ED0794 /* FLALocalAuthPlugin.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FLALocalAuthPlugin.m; path = "../../../../../../../../../../../../.pub-cache/hosted/pub.dev/local_auth_darwin-1.3.1/darwin/local_auth_darwin/Sources/local_auth_darwin/FLALocalAuthPlugin.m"; sourceTree = ""; }; 6F4B1DA7D8F4EE7984CB784CE11D028C /* GULCCComponentContainerInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULCCComponentContainerInternal.h; path = GoogleUtilitiesComponents/Sources/Private/GULCCComponentContainerInternal.h; sourceTree = ""; }; 6FDEE359EE01891A3BD55BE7BF1116CF /* Security.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Security.framework; path = Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS14.0.sdk/System/Library/Frameworks/Security.framework; sourceTree = DEVELOPER_DIR; }; - 702958125820710BD7C662F41F230AC3 /* NotificationPermissionStrategy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = NotificationPermissionStrategy.m; path = "../../../../../../../../../../.pub-cache/hosted/pub.dev/permission_handler_apple-9.4.5/ios/Classes/strategies/NotificationPermissionStrategy.m"; sourceTree = ""; }; 7046C45DDED919DE570D73C202E9F002 /* SentrySamplingContext.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SentrySamplingContext.m; path = Sources/Sentry/SentrySamplingContext.m; sourceTree = ""; }; 70A07789AE7D9B3D1767FFDE222B478C /* SentryNSDictionarySanitize.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SentryNSDictionarySanitize.h; path = Sources/Sentry/include/SentryNSDictionarySanitize.h; sourceTree = ""; }; + 70C07DE4A1760889FC2156DACBF6F5E9 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; name = LICENSE; path = "../../../../../../../../../.pub-cache/hosted/pub.dev/permission_handler_apple-9.4.5/LICENSE"; sourceTree = ""; }; 70FF7DF0C0BE63A1F51F61ABDDDC8DDB /* SentryCrashObjC.c */ = {isa = PBXFileReference; includeInIndex = 1; name = SentryCrashObjC.c; path = Sources/SentryCrash/Recording/Tools/SentryCrashObjC.c; sourceTree = ""; }; 71103611B115123AF9F71FA4D7967A30 /* SentryCrashReportStore.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SentryCrashReportStore.h; path = Sources/SentryCrash/Recording/SentryCrashReportStore.h; sourceTree = ""; }; 712E2FA08D4EE03186E2A92F616C9527 /* GDTCORTransport_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORTransport_Private.h; path = GoogleDataTransport/GDTCORLibrary/Private/GDTCORTransport_Private.h; sourceTree = ""; }; 714B4EA1A7762E2409B73BC76EF83933 /* SentryMessage.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SentryMessage.m; path = Sources/Sentry/SentryMessage.m; sourceTree = ""; }; 7163C6F79E22E7B7538BDD1E7E7CACC5 /* SentryBaseIntegration.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SentryBaseIntegration.h; path = Sources/Sentry/include/SentryBaseIntegration.h; sourceTree = ""; }; 71AAFEE5A6C434754DF178E428EC4AD5 /* GULHeartbeatDateStorageUserDefaults.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULHeartbeatDateStorageUserDefaults.m; path = GoogleUtilities/Environment/GULHeartbeatDateStorageUserDefaults.m; sourceTree = ""; }; - 72000CB6F8BFD93FC6D29936D791F10D /* share_plus-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "share_plus-Info.plist"; sourceTree = ""; }; + 71BD6A002FADC2715665B373D33DAC46 /* mobile_scanner-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "mobile_scanner-dummy.m"; sourceTree = ""; }; 7246D6DE594B2308AA230961D858E204 /* PrivacyInfo.xcprivacy */ = {isa = PBXFileReference; includeInIndex = 1; name = PrivacyInfo.xcprivacy; path = Sources/FBLPromises/Resources/PrivacyInfo.xcprivacy; sourceTree = ""; }; 724CD0BD18284B13F9F88228B7839E18 /* SentryDispatchFactory.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SentryDispatchFactory.m; path = Sources/Sentry/SentryDispatchFactory.m; sourceTree = ""; }; - 7272F005E477C3FBAD9DE3EC07911A47 /* SqflitePlugin.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SqflitePlugin.h; path = "../../../../../../../../../.pub-cache/hosted/pub.dev/sqflite-2.3.3+1/darwin/Classes/SqflitePlugin.h"; sourceTree = ""; }; - 72D0DCE781E7E4A6C99D317490B954BB /* MediaLibraryPermissionStrategy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MediaLibraryPermissionStrategy.m; path = "../../../../../../../../../../.pub-cache/hosted/pub.dev/permission_handler_apple-9.4.5/ios/Classes/strategies/MediaLibraryPermissionStrategy.m"; sourceTree = ""; }; - 72D935EEE6C23CB8210B9965DA50E920 /* local_auth_darwin-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "local_auth_darwin-Info.plist"; sourceTree = ""; }; + 7264D7569CC3D2B28F655CF348CDFCAB /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; name = LICENSE; path = "../../../../../../../../../.pub-cache/hosted/pub.dev/share_plus-9.0.0/LICENSE"; sourceTree = ""; }; 736EC9AFFA55CA17F583B7FDFA6CC28C /* Pods-Runner.debug-staging.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-Runner.debug-staging.xcconfig"; sourceTree = ""; }; + 7380A80DD59DD117058A2FA104D28D3D /* MobileScannerError.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = MobileScannerError.swift; path = "../../../../../../../../../../.pub-cache/hosted/pub.dev/mobile_scanner-3.4.1/ios/Classes/MobileScannerError.swift"; sourceTree = ""; }; 73881566268BC5B9957F3B60B806739F /* GTMNSString+URLArguments.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "GTMNSString+URLArguments.m"; path = "Foundation/GTMNSString+URLArguments.m"; sourceTree = ""; }; 73D5D36DAA98076C1BD2768BE0EA13F0 /* GDTCORMetricsMetadata.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORMetricsMetadata.h; path = GoogleDataTransport/GDTCORLibrary/Private/GDTCORMetricsMetadata.h; sourceTree = ""; }; 73D89C94CFD6B64639D3C4946A7F2F37 /* Pods-Runner.release-production.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-Runner.release-production.xcconfig"; sourceTree = ""; }; - 73DB9045D22A4FBE50F8FACF34C6F052 /* url_launcher_ios.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = url_launcher_ios.release.xcconfig; sourceTree = ""; }; 73E5CD4B2CAAF403BBF71C28B4E84F8B /* SentrySpanOperations.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SentrySpanOperations.h; path = Sources/Sentry/include/SentrySpanOperations.h; sourceTree = ""; }; + 73F7D2C98CEEAF905F9784C9CA48A4CF /* local_auth_darwin-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "local_auth_darwin-dummy.m"; sourceTree = ""; }; 73F87F63ACCA120DFE3EBD3848C5E818 /* SentryLaunchProfiling.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SentryLaunchProfiling.h; path = Sources/Sentry/include/SentryLaunchProfiling.h; sourceTree = ""; }; - 73FB64E4F71FF6480A0D9C1E23FFCD6B /* InAppWebViewStatic.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = InAppWebViewStatic.swift; path = "../../../../../../../../../.pub-cache/hosted/pub.dev/flutter_inappwebview-5.8.0/ios/Classes/InAppWebViewStatic.swift"; sourceTree = ""; }; 741C2B766EAD0364F242A58DD501C71F /* SentrySession.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SentrySession.h; path = Sources/Sentry/include/SentrySession.h; sourceTree = ""; }; 74372D0DD7FD0D18E6E5233A94D5038F /* SentryHttpTransport.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SentryHttpTransport.m; path = Sources/Sentry/SentryHttpTransport.m; sourceTree = ""; }; - 7440E30860AFFF5E3D2141CA647B9114 /* ContactPermissionStrategy.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ContactPermissionStrategy.h; path = "../../../../../../../../../../.pub-cache/hosted/pub.dev/permission_handler_apple-9.4.5/ios/Classes/strategies/ContactPermissionStrategy.h"; sourceTree = ""; }; 749F913FFC366232574EB5716AE6B321 /* SentryCrashIntegration.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SentryCrashIntegration.m; path = Sources/Sentry/SentryCrashIntegration.m; sourceTree = ""; }; 74ACB60BE28E5E51B3C2249ABA2DA5E0 /* SentryCrashSysCtl.c */ = {isa = PBXFileReference; includeInIndex = 1; name = SentryCrashSysCtl.c; path = Sources/SentryCrash/Recording/Tools/SentryCrashSysCtl.c; sourceTree = ""; }; - 7546D07E10913A6EEE0D2CA7DEC2CC3D /* PhonePermissionStrategy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = PhonePermissionStrategy.m; path = "../../../../../../../../../../.pub-cache/hosted/pub.dev/permission_handler_apple-9.4.5/ios/Classes/strategies/PhonePermissionStrategy.m"; sourceTree = ""; }; - 7547A673514D00A1DF31BFC582223160 /* flutter_inappwebview-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "flutter_inappwebview-Info.plist"; sourceTree = ""; }; + 74D765590E44B3B9A6E079FB1E1DFE4D /* URLAuthenticationChallenge.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = URLAuthenticationChallenge.swift; path = "../../../../../../../../../../../.pub-cache/hosted/pub.dev/flutter_inappwebview-5.8.0/ios/Classes/Types/URLAuthenticationChallenge.swift"; sourceTree = ""; }; 75513E76FA87E9FC96A5DA275B9947B0 /* SentryDependencyContainer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SentryDependencyContainer.m; path = Sources/Sentry/SentryDependencyContainer.m; sourceTree = ""; }; - 7576A20F6C9C3DA6352A66CD83EACFF3 /* sqflite-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "sqflite-Info.plist"; sourceTree = ""; }; 757B02BCD712116282DBABF6B0A28406 /* GTMSessionFetcher.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = GTMSessionFetcher.debug.xcconfig; sourceTree = ""; }; 75951C52A9D7C240706899E552C0BA3D /* GDTCORStorageEventSelector.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTCORStorageEventSelector.m; path = GoogleDataTransport/GDTCORLibrary/GDTCORStorageEventSelector.m; sourceTree = ""; }; - 759BB05602B1633C8A1E5DA452EAB098 /* flutter_nekoton_bridge.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; name = flutter_nekoton_bridge.podspec; path = "../../../../../../../../.pub-cache/git/nekoton_bridge-39a53e71ffec0668e4384a61c3fc5a9695b7687c/packages/flutter_nekoton_bridge/ios/flutter_nekoton_bridge.podspec"; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 75BC381227D06F73EAAF05EC5509B228 /* shared_preferences_foundation.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = shared_preferences_foundation.debug.xcconfig; sourceTree = ""; }; + 75BBB29726254FDE5B68C8558DF83EC2 /* share_plus-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "share_plus-Info.plist"; sourceTree = ""; }; 75CB6A5E3FD06F14E3640B10DEB2E52E /* SentryStackFrame.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = SentryStackFrame.hpp; path = Sources/Sentry/include/SentryStackFrame.hpp; sourceTree = ""; }; - 75EAA2DB58396DE3BE2549843DB864AE /* AudioVideoPermissionStrategy.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AudioVideoPermissionStrategy.h; path = "../../../../../../../../../../.pub-cache/hosted/pub.dev/permission_handler_apple-9.4.5/ios/Classes/strategies/AudioVideoPermissionStrategy.h"; sourceTree = ""; }; 75ED4861D4CFEBD588E86BFFA43F9BDC /* SentryStacktrace.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SentryStacktrace.h; path = Sources/Sentry/Public/SentryStacktrace.h; sourceTree = ""; }; 7632DAE259426E8E1C0B3128C5975B16 /* SentryCrashString.c */ = {isa = PBXFileReference; includeInIndex = 1; name = SentryCrashString.c; path = Sources/SentryCrash/Recording/Tools/SentryCrashString.c; sourceTree = ""; }; 76479A32EBF62002DC4D798261D2AECD /* FBLPromise+Async.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FBLPromise+Async.m"; path = "Sources/FBLPromises/FBLPromise+Async.m"; sourceTree = ""; }; 768975E636D1D2FB85622FB67DB04E5A /* image_picker_ios */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = image_picker_ios; path = image_picker_ios.framework; sourceTree = BUILT_PRODUCTS_DIR; }; - 76C3328FA19FFA338580DD8B4D39E1DE /* SqfliteDarwinImport.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SqfliteDarwinImport.h; path = "../../../../../../../../../.pub-cache/hosted/pub.dev/sqflite-2.3.3+1/darwin/Classes/SqfliteDarwinImport.h"; sourceTree = ""; }; + 76C8BAB2063A8189C614816BF11C99DE /* flutter_inappwebview-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "flutter_inappwebview-dummy.m"; sourceTree = ""; }; + 76DF1E74961355D91ADBCD218AA47591 /* InterceptAjaxRequestJS.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = InterceptAjaxRequestJS.swift; path = "../../../../../../../../../../../.pub-cache/hosted/pub.dev/flutter_inappwebview-5.8.0/ios/Classes/PluginScriptsJS/InterceptAjaxRequestJS.swift"; sourceTree = ""; }; 772503DD4BB5FCC9ABCCD8D5EFEDA011 /* SentryMechanismMeta.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SentryMechanismMeta.h; path = Sources/Sentry/Public/SentryMechanismMeta.h; sourceTree = ""; }; - 773207E5819D7EC9B0520FE245E463CB /* CriticalAlertsPermissionStrategy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = CriticalAlertsPermissionStrategy.m; path = "../../../../../../../../../../.pub-cache/hosted/pub.dev/permission_handler_apple-9.4.5/ios/Classes/strategies/CriticalAlertsPermissionStrategy.m"; sourceTree = ""; }; - 7770656C5DBF2562F60F0C1946154607 /* image_picker_ios-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "image_picker_ios-Info.plist"; sourceTree = ""; }; 779158EF03CD77FF4728738F664869F5 /* SentryScope.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SentryScope.m; path = Sources/Sentry/SentryScope.m; sourceTree = ""; }; 77CE53E39698E956A2500A6631C467F7 /* SentryCrashDebug.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SentryCrashDebug.h; path = Sources/SentryCrash/Recording/Tools/SentryCrashDebug.h; sourceTree = ""; }; + 77D7B9F87BB7EE7C3042365E2BC6569F /* share_plus.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; name = share_plus.podspec; path = "../../../../../../../../../.pub-cache/hosted/pub.dev/share_plus-9.0.0/ios/share_plus.podspec"; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; 77F56505A48A3265FD5063C8671491A8 /* SentryProfileTimeseries.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SentryProfileTimeseries.h; path = Sources/Sentry/include/SentryProfileTimeseries.h; sourceTree = ""; }; + 789C0D2A051AE488F42B2FD4CBF41247 /* sqflite.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = sqflite.modulemap; sourceTree = ""; }; 78B272E58EE03E6DDC470FEC773AE7DF /* GTMSessionFetcher-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "GTMSessionFetcher-dummy.m"; sourceTree = ""; }; 78BD36AEBA3A750EE317E8EF0E8518E2 /* SentryUser+Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "SentryUser+Private.h"; path = "Sources/Sentry/include/HybridPublic/SentryUser+Private.h"; sourceTree = ""; }; + 78C5CE67517A32D94B574C0EF923EC4A /* FlutterSecureStoragePlugin.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FlutterSecureStoragePlugin.h; path = "../../../../../../../../../../.pub-cache/hosted/pub.dev/flutter_secure_storage-9.2.2/ios/Classes/FlutterSecureStoragePlugin.h"; sourceTree = ""; }; 78F78EC88B8BF0A8B1B90B0087E6E034 /* SentryUIApplication.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SentryUIApplication.h; path = Sources/Sentry/include/SentryUIApplication.h; sourceTree = ""; }; - 79066AF4601F7FFEE6681FB7DA45FA72 /* flutter_keyboard_visibility.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = flutter_keyboard_visibility.release.xcconfig; sourceTree = ""; }; - 7920792C7A4BB2A08AFE666FEDC9D04F /* flutter_native_splash-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "flutter_native_splash-dummy.m"; sourceTree = ""; }; 79591BBB6B096549BCE6A53E42EDF31E /* SentryCrashMonitor_AppState.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SentryCrashMonitor_AppState.h; path = Sources/SentryCrash/Recording/Monitors/SentryCrashMonitor_AppState.h; sourceTree = ""; }; + 79A14164DD8D174653AA89AFD915C64C /* messages.g.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = messages.g.swift; path = "../../../../../../../../../../../../.pub-cache/hosted/pub.dev/shared_preferences_foundation-2.4.0/darwin/shared_preferences_foundation/Sources/shared_preferences_foundation/messages.g.swift"; sourceTree = ""; }; 79AFEA1877F0BE13E9A791B047A601D2 /* SentryEvent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SentryEvent.h; path = Sources/Sentry/Public/SentryEvent.h; sourceTree = ""; }; - 79B3CD392E19F24D8240A1AB67E0B175 /* image_picker_ios-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "image_picker_ios-prefix.pch"; sourceTree = ""; }; 7A1CDB5DB93EC9E8FF8F6507FEFF7CE7 /* SentryScreenshotIntegration.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SentryScreenshotIntegration.m; path = Sources/Sentry/SentryScreenshotIntegration.m; sourceTree = ""; }; 7A292022678D9261E12B712A676024E9 /* Sentry.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = Sentry.debug.xcconfig; sourceTree = ""; }; 7A2BEBDF9E9A0AE8FB2A5F0F2797E9E5 /* SentryTime.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SentryTime.h; path = Sources/Sentry/include/SentryTime.h; sourceTree = ""; }; 7A477D4470E8CB44CD671F077D8C9D15 /* flutter_email_sender-flutter_email_sender */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; name = "flutter_email_sender-flutter_email_sender"; path = flutter_email_sender.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; 7A59AD68C79E11BAF9ACF23E4E6D925E /* SentryMeasurementUnit.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SentryMeasurementUnit.m; path = Sources/Sentry/SentryMeasurementUnit.m; sourceTree = ""; }; - 7A64A8A7DFBF51924FE6734E85933D45 /* PermissionManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PermissionManager.h; path = "../../../../../../../../../.pub-cache/hosted/pub.dev/permission_handler_apple-9.4.5/ios/Classes/PermissionManager.h"; sourceTree = ""; }; + 7A63ACD82EEA7EE321CBFC137CCE5FB0 /* shared_preferences_foundation.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; name = shared_preferences_foundation.podspec; path = "../../../../../../../../../.pub-cache/hosted/pub.dev/shared_preferences_foundation-2.4.0/darwin/shared_preferences_foundation.podspec"; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 7A855B6017454D4B2847A227EA32615D /* FlutterEmailSenderPlugin.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FlutterEmailSenderPlugin.m; path = "../../../../../../../../../../.pub-cache/hosted/pub.dev/flutter_email_sender-6.0.3/ios/Classes/FlutterEmailSenderPlugin.m"; sourceTree = ""; }; 7A91D0FBA24BE0193B9241F00FE0B143 /* client_metrics.nanopb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = client_metrics.nanopb.c; path = GoogleDataTransport/GDTCCTLibrary/Protogen/nanopb/client_metrics.nanopb.c; sourceTree = ""; }; - 7B1D0AE473EC130A82CAAA514BDF47DF /* SqfliteDatabase.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SqfliteDatabase.h; path = "../../../../../../../../../.pub-cache/hosted/pub.dev/sqflite-2.3.3+1/darwin/Classes/SqfliteDatabase.h"; sourceTree = ""; }; - 7B2F4BE2D901E9309159228CD856EBAF /* flutter_secure_storage.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = flutter_secure_storage.release.xcconfig; sourceTree = ""; }; - 7B35B9163141D4D5A48B93618D537C3D /* CustomeSchemeHandler.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CustomeSchemeHandler.swift; path = "../../../../../../../../../.pub-cache/hosted/pub.dev/flutter_inappwebview-5.8.0/ios/Classes/CustomeSchemeHandler.swift"; sourceTree = ""; }; 7B3ACB572F94421E5D69196B761AC1B1 /* Sentry-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Sentry-dummy.m"; sourceTree = ""; }; 7B4E31DD252E96F0D79569A6516C52A0 /* compliance.nanopb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = compliance.nanopb.h; path = GoogleDataTransport/GDTCCTLibrary/Protogen/nanopb/compliance.nanopb.h; sourceTree = ""; }; 7B7C06D35B3BC2BD649AAA1A489E49DA /* url_launcher_ios */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = url_launcher_ios; path = url_launcher_ios.framework; sourceTree = BUILT_PRODUCTS_DIR; }; @@ -2470,103 +2472,93 @@ 7BBC54695C99C2B14E25AEFD9F48CF32 /* GTMSessionFetcher.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = GTMSessionFetcher.release.xcconfig; sourceTree = ""; }; 7BC4796FC7196EE66E52F29902B61F4D /* SentryCrashDebug.c */ = {isa = PBXFileReference; includeInIndex = 1; name = SentryCrashDebug.c; path = Sources/SentryCrash/Recording/Tools/SentryCrashDebug.c; sourceTree = ""; }; 7BCCC183DE33AF859F065C1FECCF7963 /* SentryCoreGraphicsHelper.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SentryCoreGraphicsHelper.m; path = Sources/Sentry/SentryCoreGraphicsHelper.m; sourceTree = ""; }; - 7C39106E6BECC1CB5505D8777836B0A3 /* FLTImagePickerImageUtil.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FLTImagePickerImageUtil.m; path = "../../../../../../../../../../../.pub-cache/hosted/pub.dev/image_picker_ios-0.8.12/ios/image_picker_ios/Sources/image_picker_ios/FLTImagePickerImageUtil.m"; sourceTree = ""; }; + 7C00FDD761D4591E383A71B8F1FEF54F /* flutter_inappwebview.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; name = flutter_inappwebview.podspec; path = "../../../../../../../../../.pub-cache/hosted/pub.dev/flutter_inappwebview-5.8.0/ios/flutter_inappwebview.podspec"; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 7CB6787DD891687CF7284FA3F50CB92E /* flutter_secure_storage-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "flutter_secure_storage-Info.plist"; sourceTree = ""; }; 7CE7B8378FCC6544556C22CCD9F64BBD /* GDTCOREvent.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTCOREvent.m; path = GoogleDataTransport/GDTCORLibrary/GDTCOREvent.m; sourceTree = ""; }; 7D3B993666EC1DC66A9816A4A9B5C91E /* SentryExtraContextProvider.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SentryExtraContextProvider.m; path = Sources/Sentry/SentryExtraContextProvider.m; sourceTree = ""; }; 7D51D126C1E1EF685FB9B1A9CF359532 /* SentryHub+Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "SentryHub+Private.h"; path = "Sources/Sentry/include/SentryHub+Private.h"; sourceTree = ""; }; - 7DB7BB1F0CA758B53DC7D3D90B226F73 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; name = LICENSE; path = "../../../../../../../../.pub-cache/hosted/pub.dev/share_plus-9.0.0/LICENSE"; sourceTree = ""; }; 7DE71B4E7768535A29481EA371243D14 /* GDTCORUploader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORUploader.h; path = GoogleDataTransport/GDTCORLibrary/Internal/GDTCORUploader.h; sourceTree = ""; }; 7DF9EDBE75999D19282F27C122D71132 /* SentryNetworkTracker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SentryNetworkTracker.h; path = Sources/Sentry/include/SentryNetworkTracker.h; sourceTree = ""; }; 7E65C40F2BC417B8762FE2729FAEDCCA /* SentryDispatchQueueWrapper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SentryDispatchQueueWrapper.h; path = Sources/Sentry/include/SentryDispatchQueueWrapper.h; sourceTree = ""; }; - 7EB14EECD4BAEF7CD98F5611C103ADFC /* URLResponse.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = URLResponse.swift; path = "../../../../../../../../../../.pub-cache/hosted/pub.dev/flutter_inappwebview-5.8.0/ios/Classes/Types/URLResponse.swift"; sourceTree = ""; }; - 7EBEDD46265454463E525770FEA4E99B /* share_plus.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; name = share_plus.podspec; path = "../../../../../../../../.pub-cache/hosted/pub.dev/share_plus-9.0.0/ios/share_plus.podspec"; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; 7ECCDE4187703D9DEFFA4D732F618A8F /* SentrySampleDecision+Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "SentrySampleDecision+Private.h"; path = "Sources/Sentry/include/SentrySampleDecision+Private.h"; sourceTree = ""; }; 7EEC9AD6B31F7D2B8E4CCE831381BA2D /* SentryClient+Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "SentryClient+Private.h"; path = "Sources/Sentry/include/SentryClient+Private.h"; sourceTree = ""; }; 7EF35FE526759CA0FEF02E044FA66D40 /* SentryProfiler+Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "SentryProfiler+Private.h"; path = "Sources/Sentry/include/SentryProfiler+Private.h"; sourceTree = ""; }; - 7F75CBE92AF640BE986D69A06BADCE09 /* MobileScannerUtilities.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = MobileScannerUtilities.swift; path = "../../../../../../../../../.pub-cache/hosted/pub.dev/mobile_scanner-3.4.1/ios/Classes/MobileScannerUtilities.swift"; sourceTree = ""; }; + 7F124D58CD0CF6F8C7FDDFD49E2321F0 /* flutter_secure_storage.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; name = flutter_secure_storage.podspec; path = "../../../../../../../../../.pub-cache/hosted/pub.dev/flutter_secure_storage-9.2.2/ios/flutter_secure_storage.podspec"; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; 7F99A84EA6DD42C8C55DA1F447A9E488 /* UIViewController+Sentry.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIViewController+Sentry.m"; path = "Sources/Sentry/UIViewController+Sentry.m"; sourceTree = ""; }; + 7FB3E79A608C15B86EC670162E505CA5 /* SensorPermissionStrategy.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SensorPermissionStrategy.h; path = "../../../../../../../../../../../.pub-cache/hosted/pub.dev/permission_handler_apple-9.4.5/ios/Classes/strategies/SensorPermissionStrategy.h"; sourceTree = ""; }; 7FE916F5C23E226CE433EDDD26B772CB /* NSMutableDictionary+Sentry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSMutableDictionary+Sentry.h"; path = "Sources/Sentry/include/NSMutableDictionary+Sentry.h"; sourceTree = ""; }; - 801C21EA40A96BE87EAE3CFF08C608FA /* mobile_scanner-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "mobile_scanner-prefix.pch"; sourceTree = ""; }; + 800D25E6937FB53826A08DC35B0DA086 /* WebView.storyboard */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = file.storyboard; name = WebView.storyboard; path = "../../../../../../../../../../.pub-cache/hosted/pub.dev/flutter_inappwebview-5.8.0/ios/Storyboards/WebView.storyboard"; sourceTree = ""; }; 802447014EE6E0C4BD02181E61CA12E9 /* SentryLog.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SentryLog.m; path = Sources/Sentry/SentryLog.m; sourceTree = ""; }; - 8051B5ECBE878BC68F1CD7537D3C18A0 /* URLCredential.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = URLCredential.swift; path = "../../../../../../../../../../.pub-cache/hosted/pub.dev/flutter_inappwebview-5.8.0/ios/Classes/Types/URLCredential.swift"; sourceTree = ""; }; 80760ECAC32713E337C424D7299253E4 /* SentryMXManager.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SentryMXManager.swift; path = Sources/Swift/MetricKit/SentryMXManager.swift; sourceTree = ""; }; 809C56CC73F77477A5DA91429B4D1993 /* SentryCrashJSONCodec.c */ = {isa = PBXFileReference; includeInIndex = 1; name = SentryCrashJSONCodec.c; path = Sources/SentryCrash/Recording/Tools/SentryCrashJSONCodec.c; sourceTree = ""; }; 81A0C604033A299FD6BE3DB77845742D /* SentryStatsdClient.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SentryStatsdClient.m; path = Sources/Sentry/SentryStatsdClient.m; sourceTree = ""; }; + 81DCA56217E2AE8869DC409CC3E479DD /* connectivity_plus-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "connectivity_plus-dummy.m"; sourceTree = ""; }; 81DD44B695F99DBE9DCBEFC87D4DC82D /* SentrySDK.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SentrySDK.h; path = Sources/Sentry/Public/SentrySDK.h; sourceTree = ""; }; + 821470D1B6770146D8BBE717A950515A /* InterceptFetchRequestJS.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = InterceptFetchRequestJS.swift; path = "../../../../../../../../../../../.pub-cache/hosted/pub.dev/flutter_inappwebview-5.8.0/ios/Classes/PluginScriptsJS/InterceptFetchRequestJS.swift"; sourceTree = ""; }; + 8245B503917DB437609D1F307FE126A4 /* share_plus.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = share_plus.debug.xcconfig; sourceTree = ""; }; 8286B8A0F0BF6C2C83170D0E827292EA /* SentrySpanId.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SentrySpanId.m; path = Sources/Sentry/SentrySpanId.m; sourceTree = ""; }; 828EF845B30DA41FC30AC1081072932D /* SentrySwiftAsyncIntegration.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SentrySwiftAsyncIntegration.h; path = Sources/Sentry/include/SentrySwiftAsyncIntegration.h; sourceTree = ""; }; 82C7E289530A6FD5DD8E9FEF3DF2069F /* SentryUIViewControllerPerformanceTracker.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SentryUIViewControllerPerformanceTracker.m; path = Sources/Sentry/SentryUIViewControllerPerformanceTracker.m; sourceTree = ""; }; 839EB90613A6D1979156144D88E6A6DD /* SentryCrashDefaultMachineContextWrapper.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SentryCrashDefaultMachineContextWrapper.m; path = Sources/Sentry/SentryCrashDefaultMachineContextWrapper.m; sourceTree = ""; }; 83F8095483CB984D9EF94D69C1044086 /* OrderedSet-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "OrderedSet-prefix.pch"; sourceTree = ""; }; - 8496C60AE2BDC145A9D7FE0460C9D0E6 /* flutter_secure_storage.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; name = flutter_secure_storage.podspec; path = "../../../../../../../../.pub-cache/hosted/pub.dev/flutter_secure_storage-9.2.2/ios/flutter_secure_storage.podspec"; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 8403A161DC36FB78F9C7019365EE785C /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; name = LICENSE; path = "../../../../../../../../../.pub-cache/hosted/pub.dev/shared_preferences_foundation-2.4.0/LICENSE"; sourceTree = ""; }; + 8407D0A790FECC03544933235DD51A49 /* flutter_nekoton_bridge-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "flutter_nekoton_bridge-prefix.pch"; sourceTree = ""; }; 84CFE9B7D9D055209BEB6245A5ABE35D /* GTMSessionFetcherLogging.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GTMSessionFetcherLogging.h; path = Sources/Core/Public/GTMSessionFetcher/GTMSessionFetcherLogging.h; sourceTree = ""; }; 84D4B8240CAF093EF7F28CA0C56005D0 /* SentryCrashReport.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SentryCrashReport.h; path = Sources/SentryCrash/Recording/SentryCrashReport.h; sourceTree = ""; }; + 84D9A4B372B0BD1673B974A717BD2B75 /* url_launcher_ios-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "url_launcher_ios-Info.plist"; sourceTree = ""; }; 853282C483C54D8A6AD7E5A0E7E373DC /* GDTCORAssert.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTCORAssert.m; path = GoogleDataTransport/GDTCORLibrary/GDTCORAssert.m; sourceTree = ""; }; 8545A5DF9D9ECB8DFE7E3CC7A607B22A /* SentryCrashInstallationReporter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SentryCrashInstallationReporter.h; path = Sources/Sentry/include/SentryCrashInstallationReporter.h; sourceTree = ""; }; - 8549B08EA8C5372D1637A142DB166036 /* InAppBrowserOptions.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = InAppBrowserOptions.swift; path = "../../../../../../../../../../.pub-cache/hosted/pub.dev/flutter_inappwebview-5.8.0/ios/Classes/InAppBrowser/InAppBrowserOptions.swift"; sourceTree = ""; }; 8558EEA3118A5F259B3883150988C422 /* SentryCrashMonitor_System.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SentryCrashMonitor_System.m; path = Sources/SentryCrash/Recording/Monitors/SentryCrashMonitor_System.m; sourceTree = ""; }; 856B5CD56F194FAD26EA91620B66D614 /* GoogleDataTransport */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = GoogleDataTransport; path = GoogleDataTransport.framework; sourceTree = BUILT_PRODUCTS_DIR; }; + 8575209B08D439F88660245A7596554A /* WebMessage.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = WebMessage.swift; path = "../../../../../../../../../../../.pub-cache/hosted/pub.dev/flutter_inappwebview-5.8.0/ios/Classes/Types/WebMessage.swift"; sourceTree = ""; }; 85827626B8B710424A6D716B49210F32 /* SentryClientReport.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SentryClientReport.h; path = Sources/Sentry/include/SentryClientReport.h; sourceTree = ""; }; 8590156944706A59850868ABE4B496FD /* PrivateSentrySDKOnly.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = PrivateSentrySDKOnly.mm; path = Sources/Sentry/PrivateSentrySDKOnly.mm; sourceTree = ""; }; 8597015626F1920EB116375530506FB9 /* FBLPromise+Validate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBLPromise+Validate.h"; path = "Sources/FBLPromises/include/FBLPromise+Validate.h"; sourceTree = ""; }; 85B4BDF9AB8C66219F7484780917AE8B /* nanopb-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "nanopb-umbrella.h"; sourceTree = ""; }; + 85B682CD2A2B0AD0D8066B55A5F615C0 /* connectivity_plus-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "connectivity_plus-umbrella.h"; sourceTree = ""; }; + 85D9E65CB912A77F7601101C780C7D80 /* FlutterSecureStorage.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = FlutterSecureStorage.swift; path = "../../../../../../../../../../.pub-cache/hosted/pub.dev/flutter_secure_storage-9.2.2/ios/Classes/FlutterSecureStorage.swift"; sourceTree = ""; }; + 85E0ACDC2C40D9337B657062ED6035D8 /* MediaLibraryPermissionStrategy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MediaLibraryPermissionStrategy.m; path = "../../../../../../../../../../../.pub-cache/hosted/pub.dev/permission_handler_apple-9.4.5/ios/Classes/strategies/MediaLibraryPermissionStrategy.m"; sourceTree = ""; }; + 85EDB1E5E5253B58C2A79A95B03BC8C2 /* frb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = frb.h; path = "../../../../../../../../../../.pub-cache/hosted/pub.dev/flutter_nekoton_bridge-2.0.0/ios/Classes/frb.h"; sourceTree = ""; }; 85EF9BEBA8B20A13BA96488C86CD663A /* MLKitCommon.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = MLKitCommon.release.xcconfig; sourceTree = ""; }; 863A400712523C9092F0B85A86ACB1C2 /* SentryNSNotificationCenterWrapper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SentryNSNotificationCenterWrapper.h; path = Sources/Sentry/include/SentryNSNotificationCenterWrapper.h; sourceTree = ""; }; 86456016D222B3EB90501F5B08C123DD /* SentrySessionCrashedHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SentrySessionCrashedHandler.h; path = Sources/Sentry/include/SentrySessionCrashedHandler.h; sourceTree = ""; }; - 864B42FF4B3C923B3279FE220874C9B6 /* sentry_flutter.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; name = sentry_flutter.podspec; path = "../../../../../../../../.pub-cache/hosted/pub.dev/sentry_flutter-7.20.2/ios/sentry_flutter.podspec"; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 8684EAFD4AE4887DE04C59B5F234F68B /* permission_handler_apple-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "permission_handler_apple-umbrella.h"; sourceTree = ""; }; - 869E5D3B5708F94FBC923E7B50C1DD07 /* flutter_nekoton_bridge.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = flutter_nekoton_bridge.release.xcconfig; sourceTree = ""; }; + 867F12A40FD0044E8FBC8D180626CAC9 /* local_auth_darwin.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; name = local_auth_darwin.podspec; path = "../../../../../../../../../.pub-cache/hosted/pub.dev/local_auth_darwin-1.3.1/darwin/local_auth_darwin.podspec"; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; 86B1B427BF5A39816DC86C7815148F95 /* SentryCrashReportConverter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SentryCrashReportConverter.h; path = Sources/Sentry/include/SentryCrashReportConverter.h; sourceTree = ""; }; 86C207587182DA40797ECA6F8C5C6063 /* SentryNSDataUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SentryNSDataUtils.m; path = Sources/Sentry/SentryNSDataUtils.m; sourceTree = ""; }; - 86E540DA830E020FCC7DEA27000E1A98 /* shared_preferences_foundation.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = shared_preferences_foundation.release.xcconfig; sourceTree = ""; }; + 86EC6DD73822E686A767E6331858E1B7 /* OnWindowFocusEventJS.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = OnWindowFocusEventJS.swift; path = "../../../../../../../../../../../.pub-cache/hosted/pub.dev/flutter_inappwebview-5.8.0/ios/Classes/PluginScriptsJS/OnWindowFocusEventJS.swift"; sourceTree = ""; }; 8701D2CFBEDCD81DB54810AA78A0ADE5 /* CounterMetric.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CounterMetric.swift; path = Sources/Swift/Metrics/CounterMetric.swift; sourceTree = ""; }; 871215DE494534EE3B912798534F2CEE /* SentryUIDeviceWrapper.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SentryUIDeviceWrapper.m; path = Sources/Sentry/SentryUIDeviceWrapper.m; sourceTree = ""; }; + 87368E38B16007D0D4856E8724406AF0 /* PathProviderPlugin.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = PathProviderPlugin.swift; path = "../../../../../../../../../../../../.pub-cache/hosted/pub.dev/path_provider_foundation-2.4.0/darwin/path_provider_foundation/Sources/path_provider_foundation/PathProviderPlugin.swift"; sourceTree = ""; }; + 8765FD80FACD308D8334EC555CCFE96A /* permission_handler_apple.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = permission_handler_apple.modulemap; sourceTree = ""; }; 877D3A3234B2164914134CC7D96B1B33 /* SentryRateLimitParser.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SentryRateLimitParser.m; path = Sources/Sentry/SentryRateLimitParser.m; sourceTree = ""; }; 87A8255876DEB4D31DC62E9DFF0FEE28 /* SentryCrashMonitor_CPPException.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = SentryCrashMonitor_CPPException.cpp; path = Sources/SentryCrash/Recording/Monitors/SentryCrashMonitor_CPPException.cpp; sourceTree = ""; }; - 87EE9D69FF8F370B86357844D3EC8FEC /* IntegrationTestIosTest.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IntegrationTestIosTest.h; path = ../../../../../../../../../../../../flutter/packages/integration_test/ios/integration_test/Sources/integration_test/include/IntegrationTestIosTest.h; sourceTree = ""; }; - 87F5985BD343669F99FBF721C4264C71 /* connectivity_plus-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "connectivity_plus-Info.plist"; sourceTree = ""; }; - 8825BDE7EA2DCCC41D9E4C7DFB66B4CF /* StoragePermissionStrategy.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = StoragePermissionStrategy.h; path = "../../../../../../../../../../.pub-cache/hosted/pub.dev/permission_handler_apple-9.4.5/ios/Classes/strategies/StoragePermissionStrategy.h"; sourceTree = ""; }; + 8828EAA8DFFF7D81443F07F6A05D1E68 /* Codec.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = Codec.m; path = "../../../../../../../../../../../.pub-cache/hosted/pub.dev/permission_handler_apple-9.4.5/ios/Classes/util/Codec.m"; sourceTree = ""; }; 882EA29C4B15D2A5091AF04A1358C670 /* SentryMeta.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SentryMeta.h; path = Sources/Sentry/include/SentryMeta.h; sourceTree = ""; }; - 8850F4B4134E77FECDF2BFB97B71493C /* ResourceBundle-url_launcher_ios_privacy-url_launcher_ios-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "ResourceBundle-url_launcher_ios_privacy-url_launcher_ios-Info.plist"; sourceTree = ""; }; + 8847FDC08DBF05A1A662DC9F0969746E /* AppTrackingTransparencyPermissionStrategy.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AppTrackingTransparencyPermissionStrategy.h; path = "../../../../../../../../../../../.pub-cache/hosted/pub.dev/permission_handler_apple-9.4.5/ios/Classes/strategies/AppTrackingTransparencyPermissionStrategy.h"; sourceTree = ""; }; + 8894B25C5C321FC1966624898D804ADD /* SwiftFlutterPlugin.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SwiftFlutterPlugin.swift; path = "../../../../../../../../../../.pub-cache/hosted/pub.dev/flutter_inappwebview-5.8.0/ios/Classes/SwiftFlutterPlugin.swift"; sourceTree = ""; }; 88AE6EE2ED1036E8A093715F5C0DFAC7 /* SentryEnvelopeItemType.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SentryEnvelopeItemType.h; path = Sources/Sentry/include/HybridPublic/SentryEnvelopeItemType.h; sourceTree = ""; }; 88B73C31C801AE75820A454A309150EA /* FBLPromise+Race.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FBLPromise+Race.m"; path = "Sources/FBLPromises/FBLPromise+Race.m"; sourceTree = ""; }; 89277C77EFBCCB090EBA3F6089BD4E7D /* PromisesObjC-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "PromisesObjC-Info.plist"; sourceTree = ""; }; - 899B1E2C807041A74C7BEF4D1045ADCD /* permission_handler_apple-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "permission_handler_apple-Info.plist"; sourceTree = ""; }; - 8A18B24DB7C4332121DE9235A9AB8A4B /* mobile_scanner-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "mobile_scanner-umbrella.h"; sourceTree = ""; }; 8A1FA04201D3F5B8B3023ED17C38F601 /* MLImage.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = MLImage.debug.xcconfig; sourceTree = ""; }; 8A2E3AA6410E9F2FCEC9760E2C610803 /* SentryCrash.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SentryCrash.h; path = Sources/SentryCrash/Recording/SentryCrash.h; sourceTree = ""; }; - 8A4B01529FEBBCD8879D5DC3910BEB6E /* LocationPermissionStrategy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = LocationPermissionStrategy.m; path = "../../../../../../../../../../.pub-cache/hosted/pub.dev/permission_handler_apple-9.4.5/ios/Classes/strategies/LocationPermissionStrategy.m"; sourceTree = ""; }; - 8A6447C25B2E6E801F15037F78F1673F /* AudioVideoPermissionStrategy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = AudioVideoPermissionStrategy.m; path = "../../../../../../../../../../.pub-cache/hosted/pub.dev/permission_handler_apple-9.4.5/ios/Classes/strategies/AudioVideoPermissionStrategy.m"; sourceTree = ""; }; 8A9F75595D30332F5F830289CF6B0C73 /* PrivacyInfo.xcprivacy */ = {isa = PBXFileReference; includeInIndex = 1; name = PrivacyInfo.xcprivacy; path = spm_resources/PrivacyInfo.xcprivacy; sourceTree = ""; }; 8ABCAE069412CFA453F913E4A7E0184B /* GoogleUtilities.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = GoogleUtilities.release.xcconfig; sourceTree = ""; }; - 8AC7B3F81B45D5D6EBB4D5D685D05722 /* Codec.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = Codec.m; path = "../../../../../../../../../../.pub-cache/hosted/pub.dev/permission_handler_apple-9.4.5/ios/Classes/util/Codec.m"; sourceTree = ""; }; 8AD8D46F45F767AF14F9282C1CDB559D /* SentryDataCategoryMapper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SentryDataCategoryMapper.h; path = Sources/Sentry/include/SentryDataCategoryMapper.h; sourceTree = ""; }; + 8AF2955064CB8D9DAF5C49AC114BC355 /* FPPSharePlusPlugin.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FPPSharePlusPlugin.m; path = "../../../../../../../../../../.pub-cache/hosted/pub.dev/share_plus-9.0.0/ios/Classes/FPPSharePlusPlugin.m"; sourceTree = ""; }; 8AF7AF14BE464D8B82B95C5713D7FE45 /* SentryCrashMachineContext_Apple.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SentryCrashMachineContext_Apple.h; path = Sources/SentryCrash/Recording/Tools/SentryCrashMachineContext_Apple.h; sourceTree = ""; }; - 8B36BED62D36722B0023AEAE05390960 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; name = LICENSE; path = "../../../../../../../../.pub-cache/hosted/pub.dev/image_picker_ios-0.8.12/LICENSE"; sourceTree = ""; }; 8B81891C7059849E5DD8E5CD2D8B8C39 /* SentryCrashMonitor.c */ = {isa = PBXFileReference; includeInIndex = 1; name = SentryCrashMonitor.c; path = Sources/SentryCrash/Recording/Monitors/SentryCrashMonitor.c; sourceTree = ""; }; + 8B97888FCCA82E6FA5A8454261EC5130 /* image_picker_ios.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; name = image_picker_ios.podspec; path = "../../../../../../../../../.pub-cache/hosted/pub.dev/image_picker_ios-0.8.12/ios/image_picker_ios.podspec"; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; 8BB529F8D13BC23CADD1104745355724 /* SentryProfilerState+ObjCpp.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "SentryProfilerState+ObjCpp.h"; path = "Sources/Sentry/include/SentryProfilerState+ObjCpp.h"; sourceTree = ""; }; - 8C0579FC7A2A3467BD6A6FF0726E8F11 /* EnableViewportScaleJS.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = EnableViewportScaleJS.swift; path = "../../../../../../../../../../.pub-cache/hosted/pub.dev/flutter_inappwebview-5.8.0/ios/Classes/PluginScriptsJS/EnableViewportScaleJS.swift"; sourceTree = ""; }; - 8C5404D827B852FF23326E64299A010C /* SqfliteOperation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SqfliteOperation.m; path = "../../../../../../../../../.pub-cache/hosted/pub.dev/sqflite-2.3.3+1/darwin/Classes/SqfliteOperation.m"; sourceTree = ""; }; 8C6BE037662FE7B91E2244DB5CAE39F6 /* SentryUserFeedback.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SentryUserFeedback.h; path = Sources/Sentry/Public/SentryUserFeedback.h; sourceTree = ""; }; 8C8ED330A828CCFC3C9ECAABDC232F6C /* SentrySpanContext.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SentrySpanContext.h; path = Sources/Sentry/Public/SentrySpanContext.h; sourceTree = ""; }; - 8CA925AA351548EBB9321E1FDE94F18A /* path_provider_foundation-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "path_provider_foundation-dummy.m"; sourceTree = ""; }; - 8CC6AB7D8831589F1EDDAB1106270367 /* PullToRefreshDelegate.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = PullToRefreshDelegate.swift; path = "../../../../../../../../../../.pub-cache/hosted/pub.dev/flutter_inappwebview-5.8.0/ios/Classes/PullToRefresh/PullToRefreshDelegate.swift"; sourceTree = ""; }; 8CEBA848D5FD59C2B864100589872D08 /* SentryHttpTransport.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SentryHttpTransport.h; path = Sources/Sentry/include/SentryHttpTransport.h; sourceTree = ""; }; 8CEC699F673BB5D86F5AB6A0F4539E52 /* SentryFileIOTrackingIntegration.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SentryFileIOTrackingIntegration.m; path = Sources/Sentry/SentryFileIOTrackingIntegration.m; sourceTree = ""; }; - 8D44F3928271477F2E7EEB1CAFA940F5 /* path_provider_foundation-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "path_provider_foundation-Info.plist"; sourceTree = ""; }; - 8D9CE7555B698593037949399D5F76E9 /* flutter_email_sender-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "flutter_email_sender-dummy.m"; sourceTree = ""; }; + 8D9AF5D5743BDE9F45CA5E3010022DD8 /* permission_handler_apple.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = permission_handler_apple.debug.xcconfig; sourceTree = ""; }; 8DB05E326D91BD79897CB4B871B6C411 /* MLKitCommon.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = MLKitCommon.framework; path = Frameworks/MLKitCommon.framework; sourceTree = ""; }; 8DBD9841718ED3ACEF396147768066CB /* SentryRateLimits.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SentryRateLimits.h; path = Sources/Sentry/include/SentryRateLimits.h; sourceTree = ""; }; - 8DE16E3EC19334A8C02D5E3986679478 /* FLTPHPickerSaveImageToPathOperation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FLTPHPickerSaveImageToPathOperation.m; path = "../../../../../../../../../../../.pub-cache/hosted/pub.dev/image_picker_ios-0.8.12/ios/image_picker_ios/Sources/image_picker_ios/FLTPHPickerSaveImageToPathOperation.m"; sourceTree = ""; }; 8DF9ACA1110033A13C74768574783033 /* SentrySpanStatus.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SentrySpanStatus.h; path = Sources/Sentry/Public/SentrySpanStatus.h; sourceTree = ""; }; - 8E22760BDE6AC84F410C3E92DE2FAB81 /* connectivity_plus-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "connectivity_plus-dummy.m"; sourceTree = ""; }; - 8E6AE6A180B98FF12FB98F33213A25DC /* SqfliteCursor.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SqfliteCursor.m; path = "../../../../../../../../../.pub-cache/hosted/pub.dev/sqflite-2.3.3+1/darwin/Classes/SqfliteCursor.m"; sourceTree = ""; }; 8F46858641530EE8AEDD243AA4AEA943 /* SentryRetryAfterHeaderParser.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SentryRetryAfterHeaderParser.m; path = Sources/Sentry/SentryRetryAfterHeaderParser.m; sourceTree = ""; }; - 902744467056368FAE68E9A0E928ADAF /* PullToRefreshOptions.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = PullToRefreshOptions.swift; path = "../../../../../../../../../../.pub-cache/hosted/pub.dev/flutter_inappwebview-5.8.0/ios/Classes/PullToRefresh/PullToRefreshOptions.swift"; sourceTree = ""; }; 903460DF5E8DAF47D7882BFA4292F639 /* SentryCrashDoctor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SentryCrashDoctor.h; path = Sources/SentryCrash/Recording/SentryCrashDoctor.h; sourceTree = ""; }; - 90660A0512DF3868EAE54D0970E43E41 /* WebMessage.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = WebMessage.swift; path = "../../../../../../../../../../.pub-cache/hosted/pub.dev/flutter_inappwebview-5.8.0/ios/Classes/Types/WebMessage.swift"; sourceTree = ""; }; - 90BEC67F3A9C7DFD5F68892422349552 /* EventPermissionStrategy.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EventPermissionStrategy.h; path = "../../../../../../../../../../.pub-cache/hosted/pub.dev/permission_handler_apple-9.4.5/ios/Classes/strategies/EventPermissionStrategy.h"; sourceTree = ""; }; - 90C21B016CC22ED733735905CCF87B26 /* FlutterSecureStoragePlugin.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FlutterSecureStoragePlugin.m; path = "../../../../../../../../../.pub-cache/hosted/pub.dev/flutter_secure_storage-9.2.2/ios/Classes/FlutterSecureStoragePlugin.m"; sourceTree = ""; }; 91005689751B2FBB8790949A05177126 /* SentryMetricsAPI.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SentryMetricsAPI.swift; path = Sources/Swift/Metrics/SentryMetricsAPI.swift; sourceTree = ""; }; 91018E65A91578BE53624520A9CAA172 /* GULCCLibrary.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULCCLibrary.h; path = GoogleUtilitiesComponents/Sources/Public/GULCCLibrary.h; sourceTree = ""; }; 9160C063D7324C6F18694EDCBE602BD0 /* SentryUIEventTracker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SentryUIEventTracker.h; path = Sources/Sentry/include/SentryUIEventTracker.h; sourceTree = ""; }; @@ -2574,88 +2566,75 @@ 91B9AF85D2860B5F37F488F0B3B1ABE1 /* SentryLaunchProfiling.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SentryLaunchProfiling.m; path = Sources/Sentry/Profiling/SentryLaunchProfiling.m; sourceTree = ""; }; 91C57452DAD54145EE375009A0EF6919 /* SentryMXCallStackTree.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SentryMXCallStackTree.swift; path = Sources/Swift/MetricKit/SentryMXCallStackTree.swift; sourceTree = ""; }; 91E5668D07F0CFFB4B5210A952A0818F /* GDTCORStorageMetadata.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORStorageMetadata.h; path = GoogleDataTransport/GDTCORLibrary/Private/GDTCORStorageMetadata.h; sourceTree = ""; }; - 91FBC775010073FBCF517D6A5113149F /* permission_handler_apple-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "permission_handler_apple-prefix.pch"; sourceTree = ""; }; 9236ADD0C764444C8636FB04D84F82ED /* SentryProfilerTestHelpers.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SentryProfilerTestHelpers.m; path = Sources/Sentry/Profiling/SentryProfilerTestHelpers.m; sourceTree = ""; }; - 9281357EC3038ADC39C884ED1A1D94E1 /* flutter_inappwebview.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = flutter_inappwebview.release.xcconfig; sourceTree = ""; }; - 9311A895A54ADD4AFDA779D440EBED1A /* messages.g.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = messages.g.m; path = "../../../../../../../../../../../.pub-cache/hosted/pub.dev/image_picker_ios-0.8.12/ios/image_picker_ios/Sources/image_picker_ios/messages.g.m"; sourceTree = ""; }; - 9311BBA346794A168AC09B1625AB1683 /* path_provider_foundation.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = path_provider_foundation.release.xcconfig; sourceTree = ""; }; + 92529E3AE4C4D2CD8D0B5A86B25DF790 /* integration_test-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "integration_test-umbrella.h"; sourceTree = ""; }; + 92C20030DBD8769092782F8CC1241A8F /* PermissionStrategy.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PermissionStrategy.h; path = "../../../../../../../../../../../.pub-cache/hosted/pub.dev/permission_handler_apple-9.4.5/ios/Classes/strategies/PermissionStrategy.h"; sourceTree = ""; }; + 92C7C23BC1C3040B50AA2F569370E66B /* PathMonitorConnectivityProvider.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = PathMonitorConnectivityProvider.swift; path = "../../../../../../../../../../.pub-cache/hosted/pub.dev/connectivity_plus-6.0.5/darwin/Classes/PathMonitorConnectivityProvider.swift"; sourceTree = ""; }; 931E3AB5EEB6CFAB588D6EDC9F12753F /* SentryThreadWrapper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SentryThreadWrapper.h; path = Sources/Sentry/include/SentryThreadWrapper.h; sourceTree = ""; }; - 934D91CFC9F62D462E93B51685A8F25F /* local_auth_darwin-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "local_auth_darwin-prefix.pch"; sourceTree = ""; }; - 9368641DE87B7952BCFBF657CBDDC1D5 /* FLTImagePickerMetaDataUtil.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FLTImagePickerMetaDataUtil.m; path = "../../../../../../../../../../../.pub-cache/hosted/pub.dev/image_picker_ios-0.8.12/ios/image_picker_ios/Sources/image_picker_ios/FLTImagePickerMetaDataUtil.m"; sourceTree = ""; }; 93C6A45C6E4792269BE9BE0073839BF0 /* shared_preferences_foundation */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = shared_preferences_foundation; path = shared_preferences_foundation.framework; sourceTree = BUILT_PRODUCTS_DIR; }; - 93ED895BAA7B25FE5FEDDE50EA545D2F /* ResourceBundle-flutter_secure_storage-flutter_secure_storage-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "ResourceBundle-flutter_secure_storage-flutter_secure_storage-Info.plist"; sourceTree = ""; }; + 93D2570F2E82CB2840CC01D9E3987CBC /* mobile_scanner-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "mobile_scanner-Info.plist"; sourceTree = ""; }; 94529427FAB14A8D94A0940BE01C7A6C /* SentryNSProcessInfoWrapper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SentryNSProcessInfoWrapper.h; path = Sources/Sentry/include/SentryNSProcessInfoWrapper.h; sourceTree = ""; }; - 946308AD47F839A7BE2BE98133317720 /* ConnectivityPlusPlugin.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = ConnectivityPlusPlugin.m; path = "../../../../../../../../../.pub-cache/hosted/pub.dev/connectivity_plus-6.0.5/darwin/Classes/ConnectivityPlusPlugin.m"; sourceTree = ""; }; - 9466FA3A7D2B21D701338A05C9C1E9D7 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; name = LICENSE; path = "../../../../../../../../.pub-cache/hosted/pub.dev/flutter_keyboard_visibility-5.4.1/LICENSE"; sourceTree = ""; }; 9475D70B0E0A8A621E78E6630CF813EE /* SentryNSProcessInfoWrapper.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = SentryNSProcessInfoWrapper.mm; path = Sources/Sentry/SentryNSProcessInfoWrapper.mm; sourceTree = ""; }; 94AE20587232E7DF56F7EA6449283F31 /* SentryHub.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SentryHub.m; path = Sources/Sentry/SentryHub.m; sourceTree = ""; }; + 94BCAC6C7500E45D9D4F67E9AB3C7636 /* SqfliteDarwinDatabase.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SqfliteDarwinDatabase.h; path = "../../../../../../../../../../.pub-cache/hosted/pub.dev/sqflite-2.3.3+1/darwin/Classes/SqfliteDarwinDatabase.h"; sourceTree = ""; }; 95036DB1EC3E583B37C102FC74B5A753 /* GDTCCTNanopbHelpers.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTCCTNanopbHelpers.m; path = GoogleDataTransport/GDTCCTLibrary/GDTCCTNanopbHelpers.m; sourceTree = ""; }; - 95096F2A51B1C43F29AC91622F9A2B55 /* IntegrationTestIosTest.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = IntegrationTestIosTest.m; path = ../../../../../../../../../../../flutter/packages/integration_test/ios/integration_test/Sources/integration_test/IntegrationTestIosTest.m; sourceTree = ""; }; 951E0989539E7A1E2469E3D2C425D6E7 /* SentryTimeToDisplayTracker.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SentryTimeToDisplayTracker.m; path = Sources/Sentry/SentryTimeToDisplayTracker.m; sourceTree = ""; }; 953AF46BE564465CCD20326806FE7956 /* SentryCrashPlatformSpecificDefines.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SentryCrashPlatformSpecificDefines.h; path = Sources/SentryCrash/Recording/Tools/SentryCrashPlatformSpecificDefines.h; sourceTree = ""; }; 954C894E89567E2C36BCE6C0CE3C1188 /* SentrySample.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SentrySample.m; path = Sources/Sentry/Profiling/SentrySample.m; sourceTree = ""; }; 959ECEB76C92817E4D0DE69F1C181E87 /* SentryFormatter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SentryFormatter.h; path = Sources/Sentry/include/HybridPublic/SentryFormatter.h; sourceTree = ""; }; 95AEC45023DC633BFEBFE200DD4C81FC /* flutter_keyboard_visibility */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = flutter_keyboard_visibility; path = flutter_keyboard_visibility.framework; sourceTree = BUILT_PRODUCTS_DIR; }; + 95B947BC8B83F62A5989B560EB54C722 /* SentryFlutterPlugin.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SentryFlutterPlugin.h; path = "../../../../../../../../../../.pub-cache/hosted/pub.dev/sentry_flutter-7.20.2/ios/Classes/SentryFlutterPlugin.h"; sourceTree = ""; }; 95E399FADF1663593526BF9866D9974E /* SentryAttachment+Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "SentryAttachment+Private.h"; path = "Sources/Sentry/include/SentryAttachment+Private.h"; sourceTree = ""; }; - 95E6F1C458A71568294E3E340915CA8C /* WebMessageChannelJS.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = WebMessageChannelJS.swift; path = "../../../../../../../../../../.pub-cache/hosted/pub.dev/flutter_inappwebview-5.8.0/ios/Classes/PluginScriptsJS/WebMessageChannelJS.swift"; sourceTree = ""; }; 95F971FA2B1F03FA711EFB7840C0F9C4 /* MLKitVision.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = MLKitVision.framework; path = Frameworks/MLKitVision.framework; sourceTree = ""; }; 96032D57D2E112ABF8EF589DE1640244 /* PromisesObjC.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = PromisesObjC.debug.xcconfig; sourceTree = ""; }; 96213C2E18D4026F1099B0F345766FD3 /* SentryConcurrentRateLimitsDictionary.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SentryConcurrentRateLimitsDictionary.m; path = Sources/Sentry/SentryConcurrentRateLimitsDictionary.m; sourceTree = ""; }; 966660B21CA2BE92ABB7DD8953A35021 /* SentryMetricKitIntegration.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SentryMetricKitIntegration.h; path = Sources/Sentry/include/SentryMetricKitIntegration.h; sourceTree = ""; }; 9669BDF29FA62C4E07DF3AC118F5A7B5 /* NSLocale+Sentry.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSLocale+Sentry.m"; path = "Sources/Sentry/NSLocale+Sentry.m"; sourceTree = ""; }; - 96D9F9CCB4C43D99159BB0CBB903AA10 /* SentryFlutterPlugin.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SentryFlutterPlugin.m; path = "../../../../../../../../../.pub-cache/hosted/pub.dev/sentry_flutter-7.20.2/ios/Classes/SentryFlutterPlugin.m"; sourceTree = ""; }; + 966B465EFF00778A175B9B6FEEF25657 /* flutter_nekoton_bridge.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = flutter_nekoton_bridge.modulemap; sourceTree = ""; }; + 9673048CC002D7FE6B86E428E06C1C2E /* SentryFlutterPluginApple.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SentryFlutterPluginApple.swift; path = "../../../../../../../../../../.pub-cache/hosted/pub.dev/sentry_flutter-7.20.2/ios/Classes/SentryFlutterPluginApple.swift"; sourceTree = ""; }; 97258F00349115F081B0970F460599CF /* OrderedSet-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "OrderedSet-umbrella.h"; sourceTree = ""; }; 972E29E0AAD2500F03BCEACFF9D822BA /* GoogleToolboxForMac-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "GoogleToolboxForMac-dummy.m"; sourceTree = ""; }; + 97362DAF7874FD92F260621B9A447890 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; name = LICENSE; path = "../../../../../../../../../.pub-cache/hosted/pub.dev/flutter_email_sender-6.0.3/LICENSE"; sourceTree = ""; }; 97A27A29F505EECE8BCCCF1A2B96FEAD /* SentryUIApplication.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SentryUIApplication.m; path = Sources/Sentry/SentryUIApplication.m; sourceTree = ""; }; - 98BC5D5B321F1AE8872FED843DDC76E6 /* FlutterEmailSenderPlugin.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FlutterEmailSenderPlugin.m; path = "../../../../../../../../../.pub-cache/hosted/pub.dev/flutter_email_sender-6.0.3/ios/Classes/FlutterEmailSenderPlugin.m"; sourceTree = ""; }; - 9903FFB3F9A7BB77DB973E1E1DD5FBBD /* local_auth_darwin.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; name = local_auth_darwin.podspec; path = "../../../../../../../../.pub-cache/hosted/pub.dev/local_auth_darwin-1.3.1/darwin/local_auth_darwin.podspec"; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 98A2B070D911E544EA806C7D88C580B0 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; name = README.md; path = "../../../../../../../../../.pub-cache/hosted/pub.dev/sqflite-2.3.3+1/darwin/README.md"; sourceTree = ""; }; + 98AE98BF8E201BFC344D7356F2883701 /* image_picker_ios.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = image_picker_ios.release.xcconfig; sourceTree = ""; }; + 993FE713FF1946854C1C32793C1D9F9F /* sqflite.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; name = sqflite.podspec; path = "../../../../../../../../../.pub-cache/hosted/pub.dev/sqflite-2.3.3+1/darwin/sqflite.podspec"; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; 9973FEEA6E4920F8A5B260B9ED8BC598 /* SentryScopeSyncC.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SentryScopeSyncC.h; path = Sources/Sentry/include/SentryScopeSyncC.h; sourceTree = ""; }; - 998A5E0CFA86F842EAA62915D285A688 /* shared_preferences_foundation-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "shared_preferences_foundation-umbrella.h"; sourceTree = ""; }; - 99A57E3C9CD0190D5FFF90392A894D72 /* OnWindowFocusEventJS.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = OnWindowFocusEventJS.swift; path = "../../../../../../../../../../.pub-cache/hosted/pub.dev/flutter_inappwebview-5.8.0/ios/Classes/PluginScriptsJS/OnWindowFocusEventJS.swift"; sourceTree = ""; }; 99A71985FDD261B9B6A1A4F8AB5FEE0A /* SentryCrashWrapper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SentryCrashWrapper.h; path = Sources/Sentry/include/SentryCrashWrapper.h; sourceTree = ""; }; 99AE3A978D24F6AB77E4A4B84CE5B33C /* GDTCORFlatFileStorage+Promises.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "GDTCORFlatFileStorage+Promises.m"; path = "GoogleDataTransport/GDTCORLibrary/GDTCORFlatFileStorage+Promises.m"; sourceTree = ""; }; - 99C2BA5E4FA579A33BEEA93A0F309205 /* FLTImagePickerImageUtil.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FLTImagePickerImageUtil.h; path = "../../../../../../../../../../../../../.pub-cache/hosted/pub.dev/image_picker_ios-0.8.12/ios/image_picker_ios/Sources/image_picker_ios/include/image_picker_ios/FLTImagePickerImageUtil.h"; sourceTree = ""; }; - 99C8C4CCFC25379F6DB567D12FD279FF /* PrivacyInfo.xcprivacy */ = {isa = PBXFileReference; includeInIndex = 1; name = PrivacyInfo.xcprivacy; path = "../../../../../../../../../../../../.pub-cache/hosted/pub.dev/local_auth_darwin-1.3.1/darwin/local_auth_darwin/Sources/local_auth_darwin/Resources/PrivacyInfo.xcprivacy"; sourceTree = ""; }; - 99CF0EBD4A7377A9C5F8A3F74A514AB7 /* InterceptFetchRequestJS.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = InterceptFetchRequestJS.swift; path = "../../../../../../../../../../.pub-cache/hosted/pub.dev/flutter_inappwebview-5.8.0/ios/Classes/PluginScriptsJS/InterceptFetchRequestJS.swift"; sourceTree = ""; }; - 99E468BFBE752B6CB1D6A88E1627789D /* WindowIdJS.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = WindowIdJS.swift; path = "../../../../../../../../../../.pub-cache/hosted/pub.dev/flutter_inappwebview-5.8.0/ios/Classes/PluginScriptsJS/WindowIdJS.swift"; sourceTree = ""; }; - 9A38D14397A37F7C4079202D77A7F84D /* flutter_inappwebview-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "flutter_inappwebview-dummy.m"; sourceTree = ""; }; 9A7F5A88F466DB4311130968B794E9A0 /* SentryReplayType.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SentryReplayType.m; path = Sources/Sentry/SentryReplayType.m; sourceTree = ""; }; - 9A90EA1C1A9C162CB5C6CC29C38969E1 /* shared_preferences_foundation-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "shared_preferences_foundation-dummy.m"; sourceTree = ""; }; - 9A9DB310251035E404BD8190BD3A156A /* flutter_keyboard_visibility-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "flutter_keyboard_visibility-Info.plist"; sourceTree = ""; }; - 9AA91A07D6742747C7B580226E9AAA9B /* flutter_inappwebview.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = flutter_inappwebview.debug.xcconfig; sourceTree = ""; }; 9AAC132AB6F76EDCF91B11B8757DCEFC /* SentryContinuousProfiler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SentryContinuousProfiler.m; path = Sources/Sentry/Profiling/SentryContinuousProfiler.m; sourceTree = ""; }; 9AACC913DAB2A6A22EC97AB1F8DAD63A /* SentrySerialization.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SentrySerialization.h; path = Sources/Sentry/include/SentrySerialization.h; sourceTree = ""; }; 9AC4DED97E5FC69B5B3DA32CAA3CE70E /* SentryHub.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SentryHub.h; path = Sources/Sentry/Public/SentryHub.h; sourceTree = ""; }; + 9AE0B2EFC5754E0C98E28F32A35425D7 /* MediaLibraryPermissionStrategy.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MediaLibraryPermissionStrategy.h; path = "../../../../../../../../../../../.pub-cache/hosted/pub.dev/permission_handler_apple-9.4.5/ios/Classes/strategies/MediaLibraryPermissionStrategy.h"; sourceTree = ""; }; 9B006744471F610C0956DF5D831B4BE7 /* SentryViewHierarchyIntegration.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SentryViewHierarchyIntegration.m; path = Sources/Sentry/SentryViewHierarchyIntegration.m; sourceTree = ""; }; - 9B03DFD4B4F4CE2D1C60A9B06CE536EC /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; name = LICENSE; path = "../../../../../../../../.pub-cache/hosted/pub.dev/path_provider_foundation-2.4.0/LICENSE"; sourceTree = ""; }; + 9B05DC9BC0848E482E4A3574EC43EB7A /* messages.g.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = messages.g.h; path = "../../../../../../../../../../../../../../.pub-cache/hosted/pub.dev/local_auth_darwin-1.3.1/darwin/local_auth_darwin/Sources/local_auth_darwin/include/local_auth_darwin/messages.g.h"; sourceTree = ""; }; 9B14867CC9E159E74BEB194C5EC2D1A4 /* GULCCComponentContainer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULCCComponentContainer.m; path = GoogleUtilitiesComponents/Sources/GULCCComponentContainer.m; sourceTree = ""; }; 9B439CA32CF823E9EEAC56C9870FDDF8 /* GULNetworkInfo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULNetworkInfo.m; path = GoogleUtilities/Environment/NetworkInfo/GULNetworkInfo.m; sourceTree = ""; }; - 9B4B121F38A77C97F9D95DD2C1DCCAB8 /* ServerTrustChallenge.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ServerTrustChallenge.swift; path = "../../../../../../../../../../.pub-cache/hosted/pub.dev/flutter_inappwebview-5.8.0/ios/Classes/Types/ServerTrustChallenge.swift"; sourceTree = ""; }; 9B5354AB23E962C7916DC424613FAC4C /* SentryCrashCString.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SentryCrashCString.h; path = Sources/SentryCrash/Reporting/Tools/SentryCrashCString.h; sourceTree = ""; }; 9B7C6EF4384260989B00FD6BA16F3CBD /* SentryAppStateManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SentryAppStateManager.h; path = Sources/Sentry/include/SentryAppStateManager.h; sourceTree = ""; }; 9B98B55518609CA813E3EA4692FDE254 /* SentryTracerConfiguration.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SentryTracerConfiguration.h; path = Sources/Sentry/include/SentryTracerConfiguration.h; sourceTree = ""; }; + 9BBFB97F9DC774EFA2763A2F737A27FE /* sentry_flutter.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; name = sentry_flutter.podspec; path = "../../../../../../../../../.pub-cache/hosted/pub.dev/sentry_flutter-7.20.2/ios/sentry_flutter.podspec"; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; 9C3043C5A2F888947EF1F69B00DD7E9A /* FBLPromise+Recover.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FBLPromise+Recover.m"; path = "Sources/FBLPromises/FBLPromise+Recover.m"; sourceTree = ""; }; 9C7F97E5DE29B1E19CF78425D6430BEC /* SentryCrashReportSink.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SentryCrashReportSink.h; path = Sources/Sentry/include/SentryCrashReportSink.h; sourceTree = ""; }; 9CA60F36C0B2AB3142AE3C2FB7B639E4 /* SentryDependencyContainer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SentryDependencyContainer.h; path = Sources/Sentry/include/HybridPublic/SentryDependencyContainer.h; sourceTree = ""; }; 9CB6AB7832B9DA2628F2A5F2E692460F /* SentrySpanId.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SentrySpanId.h; path = Sources/Sentry/Public/SentrySpanId.h; sourceTree = ""; }; 9D29D3324EC24B0EC8C81E92412B3D8C /* Pods-Runner.release-development.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-Runner.release-development.xcconfig"; sourceTree = ""; }; - 9D2BDC333B532CE6F60286D40B054802 /* shared_preferences_foundation.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = shared_preferences_foundation.modulemap; sourceTree = ""; }; - 9D69F5F0798882A34E95D912A7DDF7B1 /* sentry_flutter.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = sentry_flutter.release.xcconfig; sourceTree = ""; }; 9D8ABD31EB61204CADF2FEAFAD188549 /* GULCCComponent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULCCComponent.h; path = GoogleUtilitiesComponents/Sources/Public/GULCCComponent.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; }; 9D9F196ACE1A8F3F3D86D0E211B942D6 /* SentryUIEventTrackerTransactionMode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SentryUIEventTrackerTransactionMode.m; path = Sources/Sentry/SentryUIEventTrackerTransactionMode.m; sourceTree = ""; }; 9DAA7B5E5871B37317E0633BE9DB4156 /* OrderedSet.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = OrderedSet.release.xcconfig; sourceTree = ""; }; 9DBD2255B090E24AD6FEDA3C7636C530 /* SentryCrashMonitorType.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SentryCrashMonitorType.h; path = Sources/SentryCrash/Recording/Monitors/SentryCrashMonitorType.h; sourceTree = ""; }; - 9DC45C3C969EEFF5793F781E06C2A034 /* package_info_plus.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = package_info_plus.debug.xcconfig; sourceTree = ""; }; 9DC57098DA3F5764C882A19480B82E12 /* SentryOptions+HybridSDKs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "SentryOptions+HybridSDKs.h"; path = "Sources/Sentry/include/HybridPublic/SentryOptions+HybridSDKs.h"; sourceTree = ""; }; 9DCC5248BB914DA7AA231930E4521D01 /* SentryFrame.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SentryFrame.m; path = Sources/Sentry/SentryFrame.m; sourceTree = ""; }; 9DD34018FB006D47A745D61EE14BAF84 /* GDTCORUploadBatch.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORUploadBatch.h; path = GoogleDataTransport/GDTCORLibrary/Private/GDTCORUploadBatch.h; sourceTree = ""; }; - 9E44521577C540A3E9039681DA7CFB83 /* WKSecurityOrigin.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = WKSecurityOrigin.swift; path = "../../../../../../../../../../.pub-cache/hosted/pub.dev/flutter_inappwebview-5.8.0/ios/Classes/Types/WKSecurityOrigin.swift"; sourceTree = ""; }; - 9E4E9B138AD3A7B83BB97A5DD80597A1 /* PromisePolyfillJS.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = PromisePolyfillJS.swift; path = "../../../../../../../../../../.pub-cache/hosted/pub.dev/flutter_inappwebview-5.8.0/ios/Classes/PluginScriptsJS/PromisePolyfillJS.swift"; sourceTree = ""; }; 9E7B7C8773A0F8C48BEF1A8D045DFB88 /* SentryCrashDefaultBinaryImageProvider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SentryCrashDefaultBinaryImageProvider.h; path = Sources/Sentry/include/SentryCrashDefaultBinaryImageProvider.h; sourceTree = ""; }; 9EAAAD78DEA77B690B4E84D9496A6953 /* GDTCORProductData.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORProductData.h; path = GoogleDataTransport/GDTCORLibrary/Public/GoogleDataTransport/GDTCORProductData.h; sourceTree = ""; }; + 9EC90CC0D11D7BD33BBCF9587F1DF72A /* SwiftConnectivityPlusPlugin.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SwiftConnectivityPlusPlugin.swift; path = "../../../../../../../../../../.pub-cache/hosted/pub.dev/connectivity_plus-6.0.5/darwin/Classes/SwiftConnectivityPlusPlugin.swift"; sourceTree = ""; }; + 9ECF4B2E725AF88A4D8BD77668F776C4 /* local_auth_darwin.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = local_auth_darwin.release.xcconfig; sourceTree = ""; }; 9EE7EAB7E643E2F4E22437DDE2ABC192 /* SentryEnvelopeAttachmentHeader.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SentryEnvelopeAttachmentHeader.m; path = Sources/Sentry/SentryEnvelopeAttachmentHeader.m; sourceTree = ""; }; 9F0FD844438A1848473CDBF0F90785FA /* CoreTelephony.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreTelephony.framework; path = Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS14.0.sdk/System/Library/Frameworks/CoreTelephony.framework; sourceTree = DEVELOPER_DIR; }; + 9F116BCA4D417E4EB826B96627A0202B /* NotificationPermissionStrategy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = NotificationPermissionStrategy.m; path = "../../../../../../../../../../../.pub-cache/hosted/pub.dev/permission_handler_apple-9.4.5/ios/Classes/strategies/NotificationPermissionStrategy.m"; sourceTree = ""; }; 9F77F090AF60912EA9612155EB9BB1CB /* SentryHttpStatusCodeRange+Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "SentryHttpStatusCodeRange+Private.h"; path = "Sources/Sentry/include/SentryHttpStatusCodeRange+Private.h"; sourceTree = ""; }; 9F835E2974112E45DD95F8D44D589D0C /* SentryCrashMonitorType.c */ = {isa = PBXFileReference; includeInIndex = 1; name = SentryCrashMonitorType.c; path = Sources/SentryCrash/Recording/Monitors/SentryCrashMonitorType.c; sourceTree = ""; }; 9F950BC68E9D6AC4139D764BEE5BD0D4 /* OrderedSet.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = OrderedSet.modulemap; sourceTree = ""; }; @@ -2664,10 +2643,10 @@ 9FD62F8CECF9D424207BE277E969AC18 /* SentryMigrateSessionInit.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SentryMigrateSessionInit.h; path = Sources/Sentry/include/SentryMigrateSessionInit.h; sourceTree = ""; }; A00A129AB455076F30A95F2EEC2B3797 /* SentryInstallation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SentryInstallation.h; path = Sources/Sentry/include/SentryInstallation.h; sourceTree = ""; }; A00EFA30CB2E9AF709910D0589129EC8 /* FBLPromise+Await.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FBLPromise+Await.m"; path = "Sources/FBLPromises/FBLPromise+Await.m"; sourceTree = ""; }; + A0583590F67DD5FBC5DDD1B23E2EA954 /* FLTIntegrationTestRunner.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FLTIntegrationTestRunner.m; path = ../../../../../../../../../../../../flutter/packages/integration_test/ios/integration_test/Sources/integration_test/FLTIntegrationTestRunner.m; sourceTree = ""; }; A0983EEA57A6A1DBD974457F9FADCE1C /* SentryLogOutput.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SentryLogOutput.m; path = Sources/Sentry/SentryLogOutput.m; sourceTree = ""; }; - A0AC36F487E710806861799FE49A1DF6 /* package_info_plus.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; name = package_info_plus.podspec; path = "../../../../../../../../.pub-cache/hosted/pub.dev/package_info_plus-8.0.0/ios/package_info_plus.podspec"; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + A0E07105D46C98227F9CF101D83E460C /* flutter_keyboard_visibility.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = flutter_keyboard_visibility.release.xcconfig; sourceTree = ""; }; A11197FF8B0DDE4285721F1F9FC805A7 /* SentryWatchdogTerminationLogic.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SentryWatchdogTerminationLogic.m; path = Sources/Sentry/SentryWatchdogTerminationLogic.m; sourceTree = ""; }; - A11FDB2BA7D2D12BDD8D969E4CC4BCA0 /* PluginScriptsUtil.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = PluginScriptsUtil.swift; path = "../../../../../../../../../../.pub-cache/hosted/pub.dev/flutter_inappwebview-5.8.0/ios/Classes/PluginScriptsJS/PluginScriptsUtil.swift"; sourceTree = ""; }; A121452D123B1617B06C15FD591EE4A9 /* GDTCOREvent+GDTCCTSupport.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "GDTCOREvent+GDTCCTSupport.m"; path = "GoogleDataTransport/GDTCCTLibrary/GDTCOREvent+GDTCCTSupport.m"; sourceTree = ""; }; A12478584CFA748D49222BCE241EE51E /* NSMutableDictionary+Sentry.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSMutableDictionary+Sentry.m"; path = "Sources/Sentry/NSMutableDictionary+Sentry.m"; sourceTree = ""; }; A14491B7478AE78F37278BE558DD57F6 /* SentrySerialization.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SentrySerialization.m; path = Sources/Sentry/SentrySerialization.m; sourceTree = ""; }; @@ -2678,75 +2657,77 @@ A22AFF7E1BFFA2CC0268DF4A9DE4EC64 /* SentryInAppLogic.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SentryInAppLogic.h; path = Sources/Sentry/include/SentryInAppLogic.h; sourceTree = ""; }; A2375818A84EE7B6BEB57F2D66586850 /* PromisesObjC.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = PromisesObjC.modulemap; sourceTree = ""; }; A27E1F94393EF29136475E0D8D092BFA /* SentryPerformanceTracker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SentryPerformanceTracker.h; path = Sources/Sentry/include/SentryPerformanceTracker.h; sourceTree = ""; }; + A2FC3F8189391939C417366E38B826E3 /* InAppWebView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = InAppWebView.swift; path = "../../../../../../../../../../../.pub-cache/hosted/pub.dev/flutter_inappwebview-5.8.0/ios/Classes/InAppWebView/InAppWebView.swift"; sourceTree = ""; }; + A304FAD7D7CD9CD11A567518E3FC788F /* PullToRefreshOptions.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = PullToRefreshOptions.swift; path = "../../../../../../../../../../../.pub-cache/hosted/pub.dev/flutter_inappwebview-5.8.0/ios/Classes/PullToRefresh/PullToRefreshOptions.swift"; sourceTree = ""; }; + A33940A1129837B2BDBD980A38F7F8A5 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; name = LICENSE; path = "../../../../../../../../../.pub-cache/hosted/pub.dev/local_auth_darwin-1.3.1/LICENSE"; sourceTree = ""; }; A33F15E13B173DFE53C05EAEC14ECE77 /* OrderedSet-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "OrderedSet-dummy.m"; sourceTree = ""; }; - A34E483078DFC384027B34F3D6115197 /* ResourceBundle-sqflite_darwin_privacy-sqflite-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "ResourceBundle-sqflite_darwin_privacy-sqflite-Info.plist"; sourceTree = ""; }; - A34F8113D9F17018AB345ABDAF1E5C6F /* AssistantPermissionStrategy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = AssistantPermissionStrategy.m; path = "../../../../../../../../../../.pub-cache/hosted/pub.dev/permission_handler_apple-9.4.5/ios/Classes/strategies/AssistantPermissionStrategy.m"; sourceTree = ""; }; - A39F67D29C8FDC76E1F5C5300DE3CAD5 /* mobile_scanner.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = mobile_scanner.debug.xcconfig; sourceTree = ""; }; - A3E1A80C2D687BC494970260F0A04BD2 /* ContextMenuOptions.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ContextMenuOptions.swift; path = "../../../../../../../../../.pub-cache/hosted/pub.dev/flutter_inappwebview-5.8.0/ios/Classes/ContextMenuOptions.swift"; sourceTree = ""; }; A3F2280B0CF4E8161AA883E7BE0A738D /* GDTCORRegistrar_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORRegistrar_Private.h; path = GoogleDataTransport/GDTCORLibrary/Private/GDTCORRegistrar_Private.h; sourceTree = ""; }; - A3F75FB80E0230F75AAADD648B5458A5 /* UserScript.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = UserScript.swift; path = "../../../../../../../../../../.pub-cache/hosted/pub.dev/flutter_inappwebview-5.8.0/ios/Classes/Types/UserScript.swift"; sourceTree = ""; }; - A45D02CD5019498F49E9584C13317982 /* flutter_keyboard_visibility.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; name = flutter_keyboard_visibility.podspec; path = "../../../../../../../../.pub-cache/hosted/pub.dev/flutter_keyboard_visibility-5.4.1/ios/flutter_keyboard_visibility.podspec"; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + A48B975CF0B99B14E04EEB88D4814BE7 /* HitTestResult.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = HitTestResult.swift; path = "../../../../../../../../../../../.pub-cache/hosted/pub.dev/flutter_inappwebview-5.8.0/ios/Classes/Types/HitTestResult.swift"; sourceTree = ""; }; A4A7A8E537B0B6CF0C592EB05F60D141 /* SentryBacktrace.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = SentryBacktrace.cpp; path = Sources/Sentry/SentryBacktrace.cpp; sourceTree = ""; }; A4C3538AB734BE0A6C8917BFF82E0EC6 /* GULHeartbeatDateStorage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULHeartbeatDateStorage.h; path = GoogleUtilities/Environment/Public/GoogleUtilities/GULHeartbeatDateStorage.h; sourceTree = ""; }; - A4E3259CE433DE924BD4DF713EFF498D /* FPPPackageInfoPlusPlugin.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FPPPackageInfoPlusPlugin.m; path = "../../../../../../../../../.pub-cache/hosted/pub.dev/package_info_plus-8.0.0/ios/Classes/FPPPackageInfoPlusPlugin.m"; sourceTree = ""; }; A4F1D9286B7E8373289B0F03E2563A35 /* SentryCrashObjC.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SentryCrashObjC.h; path = Sources/SentryCrash/Recording/Tools/SentryCrashObjC.h; sourceTree = ""; }; - A4F4C450535A5C9367D63B8C4834A43E /* flutter_keyboard_visibility-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "flutter_keyboard_visibility-dummy.m"; sourceTree = ""; }; A4FE9F493AF14D50D16776AD1FB8F116 /* SentryNSURLRequestBuilder.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SentryNSURLRequestBuilder.m; path = Sources/Sentry/SentryNSURLRequestBuilder.m; sourceTree = ""; }; A5061BC7516357BD1DAF782E77B0CD94 /* nanopb-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "nanopb-Info.plist"; sourceTree = ""; }; + A51DD6F63808C764349D8755A2D2C86A /* flutter_secure_storage-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "flutter_secure_storage-prefix.pch"; sourceTree = ""; }; A554C0918D398E7121A1684254F012C2 /* SentryCoreDataTrackingIntegration.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SentryCoreDataTrackingIntegration.h; path = Sources/Sentry/include/SentryCoreDataTrackingIntegration.h; sourceTree = ""; }; + A5632ED708300AA1363BFCF6B010FBBD /* HeadlessInAppWebView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = HeadlessInAppWebView.swift; path = "../../../../../../../../../../../.pub-cache/hosted/pub.dev/flutter_inappwebview-5.8.0/ios/Classes/HeadlessInAppWebView/HeadlessInAppWebView.swift"; sourceTree = ""; }; A572ED2C4CC94BD627D639A2CFD81E9E /* SentryCrashFileUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SentryCrashFileUtils.h; path = Sources/SentryCrash/Recording/Tools/SentryCrashFileUtils.h; sourceTree = ""; }; - A574953E2B2D586D0DECAB6F76B78E3B /* JavaScriptBridgeJS.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = JavaScriptBridgeJS.swift; path = "../../../../../../../../../../.pub-cache/hosted/pub.dev/flutter_inappwebview-5.8.0/ios/Classes/PluginScriptsJS/JavaScriptBridgeJS.swift"; sourceTree = ""; }; A58BC5D2E2359E3DE3F5CF846088940C /* SentryStacktraceBuilder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SentryStacktraceBuilder.h; path = Sources/Sentry/include/SentryStacktraceBuilder.h; sourceTree = ""; }; A5A3F95B091448EA63DB56CB79830B82 /* SentryViewPhotographer.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SentryViewPhotographer.swift; path = Sources/Swift/Tools/SentryViewPhotographer.swift; sourceTree = ""; }; A5B64D272F92F18314DC0BBEF0CF7EC7 /* SentryCrashMonitor_Signal.c */ = {isa = PBXFileReference; includeInIndex = 1; name = SentryCrashMonitor_Signal.c; path = Sources/SentryCrash/Recording/Monitors/SentryCrashMonitor_Signal.c; sourceTree = ""; }; A5F14BC9C0171DC67930C430B8DEE8CF /* SentryCrashSignalInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SentryCrashSignalInfo.h; path = Sources/SentryCrash/Recording/Tools/SentryCrashSignalInfo.h; sourceTree = ""; }; A68A7937250C5E9D87D14D4CD1BFF77A /* SentryPropagationContext.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SentryPropagationContext.m; path = Sources/Sentry/SentryPropagationContext.m; sourceTree = ""; }; - A6B541FFC9B4F7B26CA596C21FFF42C6 /* flutter_native_splash-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "flutter_native_splash-Info.plist"; sourceTree = ""; }; A6BE617569D952D77DD8AA5AEB913687 /* SentryCrashBinaryImageCache.c */ = {isa = PBXFileReference; includeInIndex = 1; name = SentryCrashBinaryImageCache.c; path = Sources/SentryCrash/Recording/SentryCrashBinaryImageCache.c; sourceTree = ""; }; - A70878D2522891715E023ACF1FCB585E /* share_plus-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "share_plus-prefix.pch"; sourceTree = ""; }; + A6FD0C345CFFCF988C441B03259DD290 /* ResourceBundle-flutter_native_splash_privacy-flutter_native_splash-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "ResourceBundle-flutter_native_splash_privacy-flutter_native_splash-Info.plist"; sourceTree = ""; }; A71B8E7DBCF821ED078FD0224E690E7F /* Sentry-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Sentry-Info.plist"; sourceTree = ""; }; A73DA79B51ED4622C02C0BBAFE7AE9C0 /* SentryANRTracker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SentryANRTracker.h; path = Sources/Sentry/include/SentryANRTracker.h; sourceTree = ""; }; A7570EB118A5328797AAA226B673FE8C /* SentryCrashScopeObserver.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SentryCrashScopeObserver.m; path = Sources/Sentry/SentryCrashScopeObserver.m; sourceTree = ""; }; - A784F4C298C9A54D0DC680688A3DA89B /* sentry_flutter.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = sentry_flutter.modulemap; sourceTree = ""; }; A7C64ED9D6E4A5AA296AF1BE32FD41BB /* SentryTracer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SentryTracer.h; path = Sources/Sentry/include/SentryTracer.h; sourceTree = ""; }; - A7D0232BFA7DB2BABBC206DCBF4E211C /* flutter_email_sender.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = flutter_email_sender.release.xcconfig; sourceTree = ""; }; A7FA95DB3ACE101008C0518C2D324A55 /* FBLPromise+Testing.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBLPromise+Testing.h"; path = "Sources/FBLPromises/include/FBLPromise+Testing.h"; sourceTree = ""; }; A82F7BC945C3A7E06B39ED6320BF3B75 /* SentryTransactionContext+Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "SentryTransactionContext+Private.h"; path = "Sources/Sentry/include/SentryTransactionContext+Private.h"; sourceTree = ""; }; - A83F60B7CB5990F0F443C1536CC9BAB5 /* flutter_email_sender-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "flutter_email_sender-prefix.pch"; sourceTree = ""; }; A8A1FB3C0A3B9ACDA74DEF8E62740D4B /* SentryProfiledTracerConcurrency.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = SentryProfiledTracerConcurrency.mm; path = Sources/Sentry/Profiling/SentryProfiledTracerConcurrency.mm; sourceTree = ""; }; A91DB26010FE2EC7D32C3BB4438E0799 /* SentryDateUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SentryDateUtils.m; path = Sources/Sentry/SentryDateUtils.m; sourceTree = ""; }; + A922DBFD2E2C91DE130E353E002139D9 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; name = LICENSE; path = "../../../../../../../../../.pub-cache/hosted/pub.dev/sqflite-2.3.3+1/LICENSE"; sourceTree = ""; }; + A9835ED544D242FE135FE9D989ACE1B0 /* SqfliteDarwinDatabaseQueue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SqfliteDarwinDatabaseQueue.h; path = "../../../../../../../../../../.pub-cache/hosted/pub.dev/sqflite-2.3.3+1/darwin/Classes/SqfliteDarwinDatabaseQueue.h"; sourceTree = ""; }; + A9A56A0A8929E98EA42DEAAE4601D50B /* flutter_nekoton_bridge.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; name = flutter_nekoton_bridge.podspec; path = "../../../../../../../../../.pub-cache/hosted/pub.dev/flutter_nekoton_bridge-2.0.0/ios/flutter_nekoton_bridge.podspec"; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; A9BB17A80E057DEBDA1DFA4DD272F206 /* SentryCrashReportConverter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SentryCrashReportConverter.m; path = Sources/Sentry/SentryCrashReportConverter.m; sourceTree = ""; }; AA42AE12DE0972FE8D9C314CA6AE6E4A /* SentryOptions+Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "SentryOptions+Private.h"; path = "Sources/Sentry/include/SentryOptions+Private.h"; sourceTree = ""; }; AA4305BAF35486F4CD99515D4CBF2826 /* SentryCrashLogger.c */ = {isa = PBXFileReference; includeInIndex = 1; name = SentryCrashLogger.c; path = Sources/SentryCrash/Recording/Tools/SentryCrashLogger.c; sourceTree = ""; }; AA5651B737ECC89731E27D280E249403 /* SentryFramesTrackingIntegration.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SentryFramesTrackingIntegration.m; path = Sources/Sentry/SentryFramesTrackingIntegration.m; sourceTree = ""; }; - AA898B8FF9EAEBC866C7A5809AF52FBA /* flutter_nekoton_bridge.c */ = {isa = PBXFileReference; includeInIndex = 1; name = flutter_nekoton_bridge.c; path = "../../../../../../../../../.pub-cache/git/nekoton_bridge-39a53e71ffec0668e4384a61c3fc5a9695b7687c/packages/flutter_nekoton_bridge/ios/Classes/flutter_nekoton_bridge.c"; sourceTree = ""; }; AAB9A991483AEA4F2332477EE062750F /* GULURLSessionDataResponse.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULURLSessionDataResponse.h; path = GoogleUtilities/Environment/Public/GoogleUtilities/GULURLSessionDataResponse.h; sourceTree = ""; }; + AACA2A0A183B02C1F08F864B2AC7D674 /* flutter_inappwebview.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = flutter_inappwebview.debug.xcconfig; sourceTree = ""; }; AADA1436364B1066F2A66C28DCF5F77F /* SentryProfilingConditionals.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SentryProfilingConditionals.h; path = Sources/Sentry/Public/SentryProfilingConditionals.h; sourceTree = ""; }; AB2008F2A74F483F40CE85E2886633A1 /* SentryByteCountFormatter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SentryByteCountFormatter.m; path = Sources/Sentry/SentryByteCountFormatter.m; sourceTree = ""; }; + AB40EA8C7339437233C6A9E594323AFE /* FLTImagePickerPhotoAssetUtil.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FLTImagePickerPhotoAssetUtil.h; path = "../../../../../../../../../../../../../../.pub-cache/hosted/pub.dev/image_picker_ios-0.8.12/ios/image_picker_ios/Sources/image_picker_ios/include/image_picker_ios/FLTImagePickerPhotoAssetUtil.h"; sourceTree = ""; }; + AB785BB71CA813A29443733250CCCE9F /* WebMessageListener.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = WebMessageListener.swift; path = "../../../../../../../../../../../.pub-cache/hosted/pub.dev/flutter_inappwebview-5.8.0/ios/Classes/Types/WebMessageListener.swift"; sourceTree = ""; }; + AB8278C5DB9AC95D8633734C4A489C67 /* path_provider_foundation.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = path_provider_foundation.modulemap; sourceTree = ""; }; AB84582693D0F85350B1545EC02FBCC8 /* SentrySessionReplay.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SentrySessionReplay.h; path = Sources/Sentry/include/SentrySessionReplay.h; sourceTree = ""; }; - AB8C406A113767C6EE6216EF1592793C /* image_picker_ios.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = image_picker_ios.modulemap; sourceTree = ""; }; - AB91734617255D1B2F5596C095DBBFC9 /* FLTImagePickerMetaDataUtil.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FLTImagePickerMetaDataUtil.h; path = "../../../../../../../../../../../../../.pub-cache/hosted/pub.dev/image_picker_ios-0.8.12/ios/image_picker_ios/Sources/image_picker_ios/include/image_picker_ios/FLTImagePickerMetaDataUtil.h"; sourceTree = ""; }; + AB9CCB6E2B6AE39C86053769F4D6190C /* PhonePermissionStrategy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = PhonePermissionStrategy.m; path = "../../../../../../../../../../../.pub-cache/hosted/pub.dev/permission_handler_apple-9.4.5/ios/Classes/strategies/PhonePermissionStrategy.m"; sourceTree = ""; }; ABAC480D11D3134ADBBE98A3C7F0CEE3 /* GTMSessionUploadFetcher.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GTMSessionUploadFetcher.h; path = Sources/Core/Public/GTMSessionFetcher/GTMSessionUploadFetcher.h; sourceTree = ""; }; + ABB5C16C612BB704BA7E586B7051B005 /* permission_handler_apple-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "permission_handler_apple-dummy.m"; sourceTree = ""; }; + ABCF247BEE2B624CB2BDDAF5B8CF1A35 /* PullToRefreshControl.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = PullToRefreshControl.swift; path = "../../../../../../../../../../../.pub-cache/hosted/pub.dev/flutter_inappwebview-5.8.0/ios/Classes/PullToRefresh/PullToRefreshControl.swift"; sourceTree = ""; }; + AC01FA9D77CC8D999FF4AD7FF8C54E18 /* SqflitePlugin.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SqflitePlugin.m; path = "../../../../../../../../../../.pub-cache/hosted/pub.dev/sqflite-2.3.3+1/darwin/Classes/SqflitePlugin.m"; sourceTree = ""; }; + AC0F441B360786B7CF53EDF77AF08FC5 /* FlutterKeyboardVisibilityPlugin.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FlutterKeyboardVisibilityPlugin.m; path = "../../../../../../../../../../.pub-cache/hosted/pub.dev/flutter_keyboard_visibility-5.4.1/ios/Classes/FlutterKeyboardVisibilityPlugin.m"; sourceTree = ""; }; + AC1F8DCF13E111C292E5B4DE99767634 /* PrivacyInfo.xcprivacy */ = {isa = PBXFileReference; includeInIndex = 1; name = PrivacyInfo.xcprivacy; path = "../../../../../../../../../../.pub-cache/hosted/pub.dev/sqflite-2.3.3+1/darwin/Resources/PrivacyInfo.xcprivacy"; sourceTree = ""; }; AC4DF084A53A51D8F8E15E25F86E2625 /* GDTCORStorageEventSelector.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORStorageEventSelector.h; path = GoogleDataTransport/GDTCORLibrary/Internal/GDTCORStorageEventSelector.h; sourceTree = ""; }; AC6428EC2662B57C0D3B53BF15EB0FC4 /* SentrySamplerDecision.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SentrySamplerDecision.h; path = Sources/Sentry/include/SentrySamplerDecision.h; sourceTree = ""; }; + AC8BED4A6B4F1FF2D1A6838EB37CF177 /* InAppWebViewFlutterPlugin.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = InAppWebViewFlutterPlugin.m; path = "../../../../../../../../../../.pub-cache/hosted/pub.dev/flutter_inappwebview-5.8.0/ios/Classes/InAppWebViewFlutterPlugin.m"; sourceTree = ""; }; ACB8F2379DAAAB0BDB22E111998D1346 /* MLImage.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = MLImage.framework; path = Frameworks/MLImage.framework; sourceTree = ""; }; - ACD6155C7CB3E227EEF3EC84F925870A /* SharedPreferencesPlugin.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SharedPreferencesPlugin.swift; path = "../../../../../../../../../../../.pub-cache/hosted/pub.dev/shared_preferences_foundation-2.4.0/darwin/shared_preferences_foundation/Sources/shared_preferences_foundation/SharedPreferencesPlugin.swift"; sourceTree = ""; }; ACD62FB3907FB80AC71C927F9BF7024F /* SentrySpotlightTransport.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SentrySpotlightTransport.m; path = Sources/Sentry/SentrySpotlightTransport.m; sourceTree = ""; }; AD6A7649C35F1066FA4AF5FC94C516DC /* SentryFileIOTrackingIntegration.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SentryFileIOTrackingIntegration.h; path = Sources/Sentry/include/SentryFileIOTrackingIntegration.h; sourceTree = ""; }; - ADC1C48865554BD13C9D90759923D77D /* OnLoadResourceJS.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = OnLoadResourceJS.swift; path = "../../../../../../../../../../.pub-cache/hosted/pub.dev/flutter_inappwebview-5.8.0/ios/Classes/PluginScriptsJS/OnLoadResourceJS.swift"; sourceTree = ""; }; + ADE80D35938A01D1B97F72775005E152 /* FLTImagePickerMetaDataUtil.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FLTImagePickerMetaDataUtil.h; path = "../../../../../../../../../../../../../../.pub-cache/hosted/pub.dev/image_picker_ios-0.8.12/ios/image_picker_ios/Sources/image_picker_ios/include/image_picker_ios/FLTImagePickerMetaDataUtil.h"; sourceTree = ""; }; ADE8F0CA16CC66EFF2546862020B6E85 /* SentryTransaction.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SentryTransaction.m; path = Sources/Sentry/SentryTransaction.m; sourceTree = ""; }; AE157A33FEF959A214796BFF348717F6 /* path_provider_foundation */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = path_provider_foundation; path = path_provider_foundation.framework; sourceTree = BUILT_PRODUCTS_DIR; }; AE5C12FCE170749F5546A59C4D5EE98B /* SentryTransportFactory.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SentryTransportFactory.m; path = Sources/Sentry/SentryTransportFactory.m; sourceTree = ""; }; - AE65CFEBF4875ADAEA3659209026499F /* package_info_plus.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = package_info_plus.modulemap; sourceTree = ""; }; AECAA2138374FB667539E31394BE9804 /* SentryBinaryImageCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SentryBinaryImageCache.h; path = Sources/Sentry/include/HybridPublic/SentryBinaryImageCache.h; sourceTree = ""; }; AEF0CAC7EEA5D21533C5E49E84B2994B /* GULUserDefaults.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULUserDefaults.h; path = GoogleUtilities/UserDefaults/Public/GoogleUtilities/GULUserDefaults.h; sourceTree = ""; }; AF314C9923A078097A2188994BFB70BF /* GDTCORTransport.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTCORTransport.m; path = GoogleDataTransport/GDTCORLibrary/GDTCORTransport.m; sourceTree = ""; }; B0060167B0CF1423DDC7E69F5FFBA264 /* SentryWatchdogTerminationTracker.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SentryWatchdogTerminationTracker.m; path = Sources/Sentry/SentryWatchdogTerminationTracker.m; sourceTree = ""; }; B0266170C0D4DBBF9F7BC95EE1E0DDC4 /* SentrySession.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SentrySession.m; path = Sources/Sentry/SentrySession.m; sourceTree = ""; }; - B0628838D1DA1A34D2D6142D6F4F1048 /* WebViewTransport.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = WebViewTransport.swift; path = "../../../../../../../../../../.pub-cache/hosted/pub.dev/flutter_inappwebview-5.8.0/ios/Classes/Types/WebViewTransport.swift"; sourceTree = ""; }; - B07C8B8EB2D6CD7E0AB13253E213A449 /* AppTrackingTransparencyPermissionStrategy.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AppTrackingTransparencyPermissionStrategy.h; path = "../../../../../../../../../../.pub-cache/hosted/pub.dev/permission_handler_apple-9.4.5/ios/Classes/strategies/AppTrackingTransparencyPermissionStrategy.h"; sourceTree = ""; }; + B0C6FA547CC0B715794EBE135341240D /* PhotoPermissionStrategy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = PhotoPermissionStrategy.m; path = "../../../../../../../../../../../.pub-cache/hosted/pub.dev/permission_handler_apple-9.4.5/ios/Classes/strategies/PhotoPermissionStrategy.m"; sourceTree = ""; }; B0D560056E3EE951B9A9C2B883031B8F /* NSArray+SentrySanitize.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSArray+SentrySanitize.h"; path = "Sources/Sentry/include/NSArray+SentrySanitize.h"; sourceTree = ""; }; B0F6B2F55CC2D09BC98FD7D9D2E89F1D /* SentryCompiler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SentryCompiler.h; path = Sources/Sentry/include/SentryCompiler.h; sourceTree = ""; }; + B12DDCBBA5FEACF93EA66DFF72014F2C /* integration_test-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "integration_test-Info.plist"; sourceTree = ""; }; B14C8ED26A88C3A4DD8FED061EA673E5 /* SentryCrashCPU.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SentryCrashCPU.h; path = Sources/SentryCrash/Recording/Tools/SentryCrashCPU.h; sourceTree = ""; }; B18730B0F1AC94B13E74F27BE7E721CF /* FBLPromise+Catch.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FBLPromise+Catch.m"; path = "Sources/FBLPromises/FBLPromise+Catch.m"; sourceTree = ""; }; B1D644B5EA7FF2D9E8CA2A228775D62A /* SentryProfilerState.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = SentryProfilerState.mm; path = Sources/Sentry/Profiling/SentryProfilerState.mm; sourceTree = ""; }; @@ -2754,105 +2735,95 @@ B20BC1C62703EE7086A1E97BFA07547A /* GoogleToolboxForMac.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = GoogleToolboxForMac.debug.xcconfig; sourceTree = ""; }; B250CAB6B7A17DE0AAE587DD2A2AAF9D /* SentryNSURLRequest.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SentryNSURLRequest.m; path = Sources/Sentry/SentryNSURLRequest.m; sourceTree = ""; }; B2FD0867F93A192FBE155AE32D104D85 /* GDTCOREventTransformer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCOREventTransformer.h; path = GoogleDataTransport/GDTCORLibrary/Public/GoogleDataTransport/GDTCOREventTransformer.h; sourceTree = ""; }; + B36DC51F9448548C7D98D5C6350F9825 /* URLCredential.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = URLCredential.swift; path = "../../../../../../../../../../../.pub-cache/hosted/pub.dev/flutter_inappwebview-5.8.0/ios/Classes/Types/URLCredential.swift"; sourceTree = ""; }; B392E10C773DEF5C13213DF8B25E50B1 /* SentryAppState.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SentryAppState.m; path = Sources/Sentry/SentryAppState.m; sourceTree = ""; }; B395317EFA76C37BF34006AA345C5BF1 /* SentryUIViewControllerSwizzling.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SentryUIViewControllerSwizzling.m; path = Sources/Sentry/SentryUIViewControllerSwizzling.m; sourceTree = ""; }; B3DF80C5A6B5128A4B3D18A4496FE5A9 /* SentryNSDictionarySanitize.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SentryNSDictionarySanitize.m; path = Sources/Sentry/SentryNSDictionarySanitize.m; sourceTree = ""; }; + B3F81CBF23C2B71680A734B4B74EA6EF /* sqflite.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = sqflite.release.xcconfig; sourceTree = ""; }; B42290B5FE5AE8B96C2C98CA43E7D907 /* SentryTracerConfiguration.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SentryTracerConfiguration.m; path = Sources/Sentry/SentryTracerConfiguration.m; sourceTree = ""; }; B43874C6CBB50E7134FBEC24BABFE14F /* GoogleUtilities */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = GoogleUtilities; path = GoogleUtilities.framework; sourceTree = BUILT_PRODUCTS_DIR; }; B4638B91CF1CFB619E9A0308C8EBB430 /* Flutter.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = Flutter.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - B48BA4B213D2794D0F502805396E77EE /* mobile_scanner-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "mobile_scanner-Info.plist"; sourceTree = ""; }; + B470E6A40DBE8968A48497CB9FCCB1AC /* FLALocalAuthPlugin_Test.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FLALocalAuthPlugin_Test.h; path = "../../../../../../../../../../../../../../.pub-cache/hosted/pub.dev/local_auth_darwin-1.3.1/darwin/local_auth_darwin/Sources/local_auth_darwin/include/local_auth_darwin/FLALocalAuthPlugin_Test.h"; sourceTree = ""; }; + B4A26C540B5560BCBD136D125899F5F7 /* PrivacyInfo.xcprivacy */ = {isa = PBXFileReference; includeInIndex = 1; name = PrivacyInfo.xcprivacy; path = "../../../../../../../../../../../../../.pub-cache/hosted/pub.dev/image_picker_ios-0.8.12/ios/image_picker_ios/Sources/image_picker_ios/Resources/PrivacyInfo.xcprivacy"; sourceTree = ""; }; B4EE5E95ADC4216A00353C2C8ABB95F6 /* SentryTraceContext.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SentryTraceContext.m; path = Sources/Sentry/SentryTraceContext.m; sourceTree = ""; }; + B51AB66175F65EE203A9E32FC39C5F8A /* Options.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Options.swift; path = "../../../../../../../../../../.pub-cache/hosted/pub.dev/flutter_inappwebview-5.8.0/ios/Classes/Options.swift"; sourceTree = ""; }; B532950954DF4A88712A1FC5FF8512CD /* GULKeychainUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULKeychainUtils.h; path = GoogleUtilities/Environment/Public/GoogleUtilities/GULKeychainUtils.h; sourceTree = ""; }; - B5623F4B30FB287E825AE3CDACDF4B13 /* WKFrameInfo.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = WKFrameInfo.swift; path = "../../../../../../../../../../.pub-cache/hosted/pub.dev/flutter_inappwebview-5.8.0/ios/Classes/Types/WKFrameInfo.swift"; sourceTree = ""; }; + B5498AD13803D5AD01D0354F23BB3D29 /* shared_preferences_foundation-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "shared_preferences_foundation-Info.plist"; sourceTree = ""; }; B587A9A0D5365CAA9B8A2CC41EB17830 /* nanopb.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = nanopb.release.xcconfig; sourceTree = ""; }; - B58CC1F88925718FAE66E9D39ADB6D5A /* FLTImagePickerPhotoAssetUtil.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FLTImagePickerPhotoAssetUtil.h; path = "../../../../../../../../../../../../../.pub-cache/hosted/pub.dev/image_picker_ios-0.8.12/ios/image_picker_ios/Sources/image_picker_ios/include/image_picker_ios/FLTImagePickerPhotoAssetUtil.h"; sourceTree = ""; }; - B59ADB8C2815B9E5E692852E8B4EBECE /* flutter_nekoton_bridge-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "flutter_nekoton_bridge-umbrella.h"; sourceTree = ""; }; - B5C169824A04E889155592FCA3FBDE95 /* SqfliteDarwinDatabase.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SqfliteDarwinDatabase.m; path = "../../../../../../../../../.pub-cache/hosted/pub.dev/sqflite-2.3.3+1/darwin/Classes/SqfliteDarwinDatabase.m"; sourceTree = ""; }; B5C31D6B0507BE5AA16FA2ED0DB53676 /* SentryCrashSignalInfo.c */ = {isa = PBXFileReference; includeInIndex = 1; name = SentryCrashSignalInfo.c; path = Sources/SentryCrash/Recording/Tools/SentryCrashSignalInfo.c; sourceTree = ""; }; B5EDCA0312C3217F84009C863795BD2F /* Pods-Runner.profile-staging.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-Runner.profile-staging.xcconfig"; sourceTree = ""; }; B5F2F836EF4BCEF397FAC588BA9B1449 /* SentryCrashUUIDConversion.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SentryCrashUUIDConversion.h; path = Sources/SentryCrash/Recording/Tools/SentryCrashUUIDConversion.h; sourceTree = ""; }; - B60761FA10DAC783EF5D7E4C1574226A /* connectivity_plus.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = connectivity_plus.release.xcconfig; sourceTree = ""; }; B60CD43B5FE5A4B7AC28EA1C86635EF9 /* HTTPHeaderSanitizer.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = HTTPHeaderSanitizer.swift; path = Sources/Swift/Tools/HTTPHeaderSanitizer.swift; sourceTree = ""; }; B655059B97BB67E3B95C033A9B259E74 /* SentrySessionReplayIntegration.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SentrySessionReplayIntegration.m; path = Sources/Sentry/SentrySessionReplayIntegration.m; sourceTree = ""; }; B65BCE985B4216A2D0F68B41A9027B07 /* FBLPromise+Reduce.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBLPromise+Reduce.h"; path = "Sources/FBLPromises/include/FBLPromise+Reduce.h"; sourceTree = ""; }; - B65E4F1FB0BF2D382DE70AE3563B1B83 /* sentry_flutter-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "sentry_flutter-umbrella.h"; sourceTree = ""; }; B6630BC3C898BD9B3A1CE82074AD1B92 /* SentryDiscardedEvent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SentryDiscardedEvent.h; path = Sources/Sentry/include/SentryDiscardedEvent.h; sourceTree = ""; }; - B6BAF2C9630FC49E179BD424E68FCACA /* URLRequest.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = URLRequest.swift; path = "../../../../../../../../../../.pub-cache/hosted/pub.dev/flutter_inappwebview-5.8.0/ios/Classes/Types/URLRequest.swift"; sourceTree = ""; }; + B6B71759848E055EEF6E53036EA99CA6 /* BackgroundRefreshStrategy.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = BackgroundRefreshStrategy.h; path = "../../../../../../../../../../../.pub-cache/hosted/pub.dev/permission_handler_apple-9.4.5/ios/Classes/strategies/BackgroundRefreshStrategy.h"; sourceTree = ""; }; B6E28F6FF5B761C729893AEB166B5C3F /* GoogleUtilities-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "GoogleUtilities-umbrella.h"; sourceTree = ""; }; + B74CB10FC0A4B5D2DA61ACB0950E4B90 /* sqflite-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "sqflite-prefix.pch"; sourceTree = ""; }; B799BFFEC5B11F90F501202080A57F37 /* sqflite */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = sqflite; path = sqflite.framework; sourceTree = BUILT_PRODUCTS_DIR; }; + B7A5D8D0377A2F02CE05F88B11A2F267 /* WebViewTransport.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = WebViewTransport.swift; path = "../../../../../../../../../../../.pub-cache/hosted/pub.dev/flutter_inappwebview-5.8.0/ios/Classes/Types/WebViewTransport.swift"; sourceTree = ""; }; B7B52DAC8AB3FD8737E012F6A695C79C /* SentryMetricProfiler.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = SentryMetricProfiler.mm; path = Sources/Sentry/SentryMetricProfiler.mm; sourceTree = ""; }; B7D583253AB4E91BB858300D80EAC23A /* GTMSessionFetcher.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = GTMSessionFetcher.modulemap; sourceTree = ""; }; - B7D69E90B081D8BDA584F725ADB82F6D /* image_picker_ios.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; name = image_picker_ios.podspec; path = "../../../../../../../../.pub-cache/hosted/pub.dev/image_picker_ios-0.8.12/ios/image_picker_ios.podspec"; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - B7DDBF7E0A49385DDADAF9E67B9CF178 /* SqfliteDatabase.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SqfliteDatabase.m; path = "../../../../../../../../../.pub-cache/hosted/pub.dev/sqflite-2.3.3+1/darwin/Classes/SqfliteDatabase.m"; sourceTree = ""; }; B7ED59AA489AA03F8FFB687CE911985C /* GDTCOREndpoints_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCOREndpoints_Private.h; path = GoogleDataTransport/GDTCORLibrary/Private/GDTCOREndpoints_Private.h; sourceTree = ""; }; - B7F09492C1496142FAB315FCB3CD3D12 /* SentryFlutterPlugin.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SentryFlutterPlugin.h; path = "../../../../../../../../../.pub-cache/hosted/pub.dev/sentry_flutter-7.20.2/ios/Classes/SentryFlutterPlugin.h"; sourceTree = ""; }; B7FEDF2A24CF76BFB3ED477929453972 /* SentryThreadMetadataCache.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = SentryThreadMetadataCache.hpp; path = Sources/Sentry/include/SentryThreadMetadataCache.hpp; sourceTree = ""; }; B829578B6A0A247E070D52731A1267D0 /* SentryMechanism.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SentryMechanism.h; path = Sources/Sentry/Public/SentryMechanism.h; sourceTree = ""; }; B8B4EB41535ADBD05323EDE9564F6496 /* SentrySamplingProfiler.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = SentrySamplingProfiler.hpp; path = Sources/Sentry/include/SentrySamplingProfiler.hpp; sourceTree = ""; }; - B8DE548CAFA838CA823CC7535D08316C /* permission_handler_apple.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = permission_handler_apple.debug.xcconfig; sourceTree = ""; }; - B8DEAD210B70F433C63E76D22273541C /* integration_test-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "integration_test-dummy.m"; sourceTree = ""; }; - B91357BF97DBAECE656386331F10CCFD /* sqflite.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = sqflite.release.xcconfig; sourceTree = ""; }; B922F3B7F7432862B36DAFD629128BDA /* SentryEvent.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SentryEvent.m; path = Sources/Sentry/SentryEvent.m; sourceTree = ""; }; B9252B7224B8051CB8B2E880FAB708A3 /* SentryCrashDate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SentryCrashDate.h; path = Sources/SentryCrash/Recording/Tools/SentryCrashDate.h; sourceTree = ""; }; - B929DB78E295C94744A9135D17233628 /* WKNavigationAction.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = WKNavigationAction.swift; path = "../../../../../../../../../../.pub-cache/hosted/pub.dev/flutter_inappwebview-5.8.0/ios/Classes/Types/WKNavigationAction.swift"; sourceTree = ""; }; + B9777677AA99B4D6A35B0B528B638929 /* CriticalAlertsPermissionStrategy.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CriticalAlertsPermissionStrategy.h; path = "../../../../../../../../../../../.pub-cache/hosted/pub.dev/permission_handler_apple-9.4.5/ios/Classes/strategies/CriticalAlertsPermissionStrategy.h"; sourceTree = ""; }; + B9930922C1D6387FF165550732846EC0 /* WebMessageListenerJS.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = WebMessageListenerJS.swift; path = "../../../../../../../../../../../.pub-cache/hosted/pub.dev/flutter_inappwebview-5.8.0/ios/Classes/PluginScriptsJS/WebMessageListenerJS.swift"; sourceTree = ""; }; B99E1AA0F258BBC539FB92A3DF618780 /* SentryRateLimitParser.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SentryRateLimitParser.h; path = Sources/Sentry/include/SentryRateLimitParser.h; sourceTree = ""; }; - B9AEE5935E74684FC5EC812779D8BDB7 /* IntegrationTestPlugin.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = IntegrationTestPlugin.m; path = ../../../../../../../../../../../flutter/packages/integration_test/ios/integration_test/Sources/integration_test/IntegrationTestPlugin.m; sourceTree = ""; }; - BA2731342778DB8191617A33DD987D19 /* flutter_nekoton_bridge-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "flutter_nekoton_bridge-prefix.pch"; sourceTree = ""; }; + BA1E1503497901FA68405E3103199608 /* UnknownPermissionStrategy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = UnknownPermissionStrategy.m; path = "../../../../../../../../../../../.pub-cache/hosted/pub.dev/permission_handler_apple-9.4.5/ios/Classes/strategies/UnknownPermissionStrategy.m"; sourceTree = ""; }; BA5B8BFE879CE6EC23F3BE6B16312A8C /* GoogleDataTransport-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "GoogleDataTransport-Info.plist"; sourceTree = ""; }; + BA5D290335566CBC2DB4D4F0E89D2248 /* FPPPackageInfoPlusPlugin.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FPPPackageInfoPlusPlugin.m; path = "../../../../../../../../../../.pub-cache/hosted/pub.dev/package_info_plus-8.0.0/ios/Classes/FPPPackageInfoPlusPlugin.m"; sourceTree = ""; }; + BA69F6DB734565BF6FA3F84966FCF3A1 /* permission_handler_apple-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "permission_handler_apple-Info.plist"; sourceTree = ""; }; BABE2A1714FA4602058660DFB6493DB6 /* GDTCCTUploader.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTCCTUploader.m; path = GoogleDataTransport/GDTCCTLibrary/GDTCCTUploader.m; sourceTree = ""; }; + BAC2CA522DF953E8C8FDB70ECFAB8584 /* connectivity_plus.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = connectivity_plus.modulemap; sourceTree = ""; }; + BACE3B4661BD79A800FCE799ADECA430 /* BarcodeHandler.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = BarcodeHandler.swift; path = "../../../../../../../../../../.pub-cache/hosted/pub.dev/mobile_scanner-3.4.1/ios/Classes/BarcodeHandler.swift"; sourceTree = ""; }; BAE27CDB4E2E589B1AC89F06DE3D7D04 /* Foundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Foundation.framework; path = Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS14.0.sdk/System/Library/Frameworks/Foundation.framework; sourceTree = DEVELOPER_DIR; }; BB4C9A735A9294D2FE1B2B3A6526DA26 /* SentryNSDataTracker.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SentryNSDataTracker.m; path = Sources/Sentry/SentryNSDataTracker.m; sourceTree = ""; }; BB66BFCE83E0BB378CD1D02308CF565F /* SentryThread.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SentryThread.m; path = Sources/Sentry/SentryThread.m; sourceTree = ""; }; + BBA5802F64DFDE62B165E4CBB2D642A7 /* SqfliteDarwinDatabase.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SqfliteDarwinDatabase.m; path = "../../../../../../../../../../.pub-cache/hosted/pub.dev/sqflite-2.3.3+1/darwin/Classes/SqfliteDarwinDatabase.m"; sourceTree = ""; }; BBBE29948E8BB0B01041D722D9C20F77 /* SentryAppStartTrackingIntegration.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SentryAppStartTrackingIntegration.h; path = Sources/Sentry/include/SentryAppStartTrackingIntegration.h; sourceTree = ""; }; - BBC36077C3D8F7CAF48F2AA8EEEB9C50 /* connectivity_plus.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; name = connectivity_plus.podspec; path = "../../../../../../../../.pub-cache/hosted/pub.dev/connectivity_plus-6.0.5/darwin/connectivity_plus.podspec"; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - BBD453494BB2BAE0608686C9BB87C0BD /* PermissionHandlerPlugin.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PermissionHandlerPlugin.h; path = "../../../../../../../../../.pub-cache/hosted/pub.dev/permission_handler_apple-9.4.5/ios/Classes/PermissionHandlerPlugin.h"; sourceTree = ""; }; BBEB686703DCA2DA0492C398A35A2585 /* SentryAppStartMeasurement.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SentryAppStartMeasurement.m; path = Sources/Sentry/SentryAppStartMeasurement.m; sourceTree = ""; }; - BC1032B9ADB39C250938069D3FA1A3BE /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; name = README.md; path = "../../../../../../../../.pub-cache/hosted/pub.dev/sqflite-2.3.3+1/darwin/README.md"; sourceTree = ""; }; BC1EC0F26263E9682D55643B633E033E /* SentryStacktraceBuilder.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SentryStacktraceBuilder.m; path = Sources/Sentry/SentryStacktraceBuilder.m; sourceTree = ""; }; + BC4232616D0FB1BAB23449A8EA6ECA9A /* SslCertificate.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SslCertificate.swift; path = "../../../../../../../../../../../.pub-cache/hosted/pub.dev/flutter_inappwebview-5.8.0/ios/Classes/Types/SslCertificate.swift"; sourceTree = ""; }; BC593A21505A40362E212D9860A91EAD /* FBLPromise+Testing.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FBLPromise+Testing.m"; path = "Sources/FBLPromises/FBLPromise+Testing.m"; sourceTree = ""; }; BC658F4BCBDC9B0A80895594FE8F40DA /* SentryTransactionContext.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = SentryTransactionContext.mm; path = Sources/Sentry/SentryTransactionContext.mm; sourceTree = ""; }; - BCA097CF52649EC6F0954727758B3B55 /* BluetoothPermissionStrategy.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = BluetoothPermissionStrategy.h; path = "../../../../../../../../../../.pub-cache/hosted/pub.dev/permission_handler_apple-9.4.5/ios/Classes/strategies/BluetoothPermissionStrategy.h"; sourceTree = ""; }; BCC06D296A713154F2DB3F48C081739A /* SentryCrashMonitor_System.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SentryCrashMonitor_System.h; path = Sources/SentryCrash/Recording/Monitors/SentryCrashMonitor_System.h; sourceTree = ""; }; BCDE44E0E6ABDC87BDCB53E2F315E3A6 /* SentryCrashDefaultBinaryImageProvider.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SentryCrashDefaultBinaryImageProvider.m; path = Sources/Sentry/SentryCrashDefaultBinaryImageProvider.m; sourceTree = ""; }; BD1FBF67283A3F6982B3A18BCD23E1B0 /* SentryTransaction.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SentryTransaction.h; path = Sources/Sentry/include/SentryTransaction.h; sourceTree = ""; }; - BD3855EE456C6CA265D29A55B564D603 /* URLLauncherPlugin.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = URLLauncherPlugin.swift; path = "../../../../../../../../../../../.pub-cache/hosted/pub.dev/url_launcher_ios-6.3.0/ios/url_launcher_ios/Sources/url_launcher_ios/URLLauncherPlugin.swift"; sourceTree = ""; }; BD66A59719E544B5BF87611C75452236 /* SentryUIViewControllerPerformanceTracker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SentryUIViewControllerPerformanceTracker.h; path = Sources/Sentry/include/SentryUIViewControllerPerformanceTracker.h; sourceTree = ""; }; - BDA2A4A968C99D18DA8843ADD45A552C /* CriticalAlertsPermissionStrategy.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CriticalAlertsPermissionStrategy.h; path = "../../../../../../../../../../.pub-cache/hosted/pub.dev/permission_handler_apple-9.4.5/ios/Classes/strategies/CriticalAlertsPermissionStrategy.h"; sourceTree = ""; }; BDC849B9D86FAB784A47263200A44187 /* SentryDictionaryDeepSearch.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SentryDictionaryDeepSearch.h; path = Sources/SentryCrash/Reporting/Filters/Tools/SentryDictionaryDeepSearch.h; sourceTree = ""; }; BDEAB65AAEAF7968DAB7CF21C1226B20 /* SentryCrash.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SentryCrash.m; path = Sources/SentryCrash/Recording/SentryCrash.m; sourceTree = ""; }; BE095A72DA777C7A23DFD944161AF315 /* SentryNSTimerFactory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SentryNSTimerFactory.h; path = Sources/Sentry/include/SentryNSTimerFactory.h; sourceTree = ""; }; BE2D160E92B05CA6F5F9186CDD716C24 /* SentryObjCRuntimeWrapper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SentryObjCRuntimeWrapper.h; path = Sources/Sentry/include/SentryObjCRuntimeWrapper.h; sourceTree = ""; }; - BEEEEB6AB23D0D20DAD95CA5BC5D3C6F /* flutter_keyboard_visibility-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "flutter_keyboard_visibility-umbrella.h"; sourceTree = ""; }; - BF0E1C8D5647CF1E6CF843C8B0A62219 /* PathMonitorConnectivityProvider.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = PathMonitorConnectivityProvider.swift; path = "../../../../../../../../../.pub-cache/hosted/pub.dev/connectivity_plus-6.0.5/darwin/Classes/PathMonitorConnectivityProvider.swift"; sourceTree = ""; }; - BF73A1DD91E4C963ADC8287990D42690 /* SqfliteImport.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SqfliteImport.h; path = "../../../../../../../../../.pub-cache/hosted/pub.dev/sqflite-2.3.3+1/darwin/Classes/SqfliteImport.h"; sourceTree = ""; }; BFB741B1A06893994242E906776C525D /* FBLPromise+All.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FBLPromise+All.m"; path = "Sources/FBLPromises/FBLPromise+All.m"; sourceTree = ""; }; BFC2DD4525FBC224B6113DA0C6418E31 /* SentryCrashDefaultMachineContextWrapper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SentryCrashDefaultMachineContextWrapper.h; path = Sources/Sentry/include/SentryCrashDefaultMachineContextWrapper.h; sourceTree = ""; }; - C0139BE6201D69AA023560FFA46E773D /* ImagePickerPlugin.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; name = ImagePickerPlugin.modulemap; path = "../../../../../../../../.pub-cache/hosted/pub.dev/image_picker_ios-0.8.12/ios/image_picker_ios/Sources/image_picker_ios/include/ImagePickerPlugin.modulemap"; sourceTree = ""; }; - C016E5E6AA5CD61AA11A542E79B1EC4A /* SwiftConnectivityPlusPlugin.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SwiftConnectivityPlusPlugin.swift; path = "../../../../../../../../../.pub-cache/hosted/pub.dev/connectivity_plus-6.0.5/darwin/Classes/SwiftConnectivityPlusPlugin.swift"; sourceTree = ""; }; + C02601FB6638E1A3060C8A020F03271F /* FPPPackageInfoPlusPlugin.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FPPPackageInfoPlusPlugin.h; path = "../../../../../../../../../../.pub-cache/hosted/pub.dev/package_info_plus-8.0.0/ios/Classes/FPPPackageInfoPlusPlugin.h"; sourceTree = ""; }; C02704EE14E7DB496003BF4BD38138A8 /* SentryOnDemandReplay.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SentryOnDemandReplay.swift; path = Sources/Swift/Integrations/SessionReplay/SentryOnDemandReplay.swift; sourceTree = ""; }; C029EB6E01FDF6977F5AC6D8BFB09843 /* SentryFramesTracker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SentryFramesTracker.h; path = Sources/Sentry/include/HybridPublic/SentryFramesTracker.h; sourceTree = ""; }; + C03D230CB9956E831A2EFB279C7579CA /* URLResponse.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = URLResponse.swift; path = "../../../../../../../../../../../.pub-cache/hosted/pub.dev/flutter_inappwebview-5.8.0/ios/Classes/Types/URLResponse.swift"; sourceTree = ""; }; C056D8E82A3E70E3EFDFF9F69D332D85 /* pb_common.c */ = {isa = PBXFileReference; includeInIndex = 1; path = pb_common.c; sourceTree = ""; }; C05E6177A22C369CBB1285CB86BF091E /* SentryCrashReportSink.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SentryCrashReportSink.m; path = Sources/Sentry/SentryCrashReportSink.m; sourceTree = ""; }; - C09BE378968BE80A7F7D65595B9BA3F6 /* sqflite-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "sqflite-prefix.pch"; sourceTree = ""; }; C0BBDEFA26E2A7E0FF6D75F48E07CC92 /* SentryThread.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SentryThread.h; path = Sources/Sentry/Public/SentryThread.h; sourceTree = ""; }; - C0F1CB1E34E585EB73430270BF119BA0 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; name = LICENSE; path = "../../../../../../../../.pub-cache/git/nekoton_bridge-39a53e71ffec0668e4384a61c3fc5a9695b7687c/packages/flutter_nekoton_bridge/LICENSE"; sourceTree = ""; }; C1344ABEACA573AD653FC92D4631A01C /* SentryNSTimerFactory.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SentryNSTimerFactory.m; path = Sources/Sentry/SentryNSTimerFactory.m; sourceTree = ""; }; C1450CB270EA835C1768F8F717E89680 /* SentryNetworkTrackingIntegration.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SentryNetworkTrackingIntegration.m; path = Sources/Sentry/SentryNetworkTrackingIntegration.m; sourceTree = ""; }; - C147C26EE91FED520C3B9FF4E8C4CA77 /* WebView.storyboard */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = file.storyboard; name = WebView.storyboard; path = "../../../../../../../../../.pub-cache/hosted/pub.dev/flutter_inappwebview-5.8.0/ios/Storyboards/WebView.storyboard"; sourceTree = ""; }; - C1733D282476F619EFB1C22C09033426 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; name = LICENSE; path = "../../../../../../../../.pub-cache/hosted/pub.dev/package_info_plus-8.0.0/LICENSE"; sourceTree = ""; }; C1998E0D8085221AD87F89B614C10E52 /* GTMSessionFetcher */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = GTMSessionFetcher; path = GTMSessionFetcher.framework; sourceTree = BUILT_PRODUCTS_DIR; }; C1BB58F99D0618CB77F4A2B3986BC3F7 /* FBLPromise+Validate.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FBLPromise+Validate.m"; path = "Sources/FBLPromises/FBLPromise+Validate.m"; sourceTree = ""; }; C1C1AD8C20613ACC67F00155D7BB54AA /* flutter_secure_storage */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = flutter_secure_storage; path = flutter_secure_storage.framework; sourceTree = BUILT_PRODUCTS_DIR; }; + C1D6523B199579EEA23F1BF30B87D348 /* AudioVideoPermissionStrategy.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AudioVideoPermissionStrategy.h; path = "../../../../../../../../../../../.pub-cache/hosted/pub.dev/permission_handler_apple-9.4.5/ios/Classes/strategies/AudioVideoPermissionStrategy.h"; sourceTree = ""; }; C22F0409AB437A01840082104DF7C869 /* FBLPromise+Any.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBLPromise+Any.h"; path = "Sources/FBLPromises/include/FBLPromise+Any.h"; sourceTree = ""; }; C22F82F1D9DCA65791C12A6DF6BED849 /* GDTCORFlatFileStorage+Promises.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "GDTCORFlatFileStorage+Promises.h"; path = "GoogleDataTransport/GDTCORLibrary/Private/GDTCORFlatFileStorage+Promises.h"; sourceTree = ""; }; - C23538166A629A84EA60E4CF3F5C4C84 /* flutter_native_splash-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "flutter_native_splash-prefix.pch"; sourceTree = ""; }; C2BB8A07137E9EF57770E66673707081 /* SentryException.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SentryException.m; path = Sources/Sentry/SentryException.m; sourceTree = ""; }; C2F63EB24316CD8D60BEB6647C3993D7 /* SentrySamplerDecision.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SentrySamplerDecision.m; path = Sources/Sentry/SentrySamplerDecision.m; sourceTree = ""; }; C323FB9E92464B2FEB789C970F7764D6 /* PrivateSentrySDKOnly.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PrivateSentrySDKOnly.h; path = Sources/Sentry/include/HybridPublic/PrivateSentrySDKOnly.h; sourceTree = ""; }; + C34D4A2FCAD5B715BC9682100596DA59 /* ContactPermissionStrategy.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ContactPermissionStrategy.h; path = "../../../../../../../../../../../.pub-cache/hosted/pub.dev/permission_handler_apple-9.4.5/ios/Classes/strategies/ContactPermissionStrategy.h"; sourceTree = ""; }; C35A9E01E7425F22C0D9B37B35AC0F29 /* SentryCrashReportFilterBasic.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SentryCrashReportFilterBasic.m; path = Sources/SentryCrash/Reporting/Filters/SentryCrashReportFilterBasic.m; sourceTree = ""; }; C364039BB9D04F6AE21820706E3C2129 /* GDTCORLifecycle.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORLifecycle.h; path = GoogleDataTransport/GDTCORLibrary/Internal/GDTCORLifecycle.h; sourceTree = ""; }; C37136D6D808A12F1C178429ADC3A037 /* FBLPromise+Then.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FBLPromise+Then.m"; path = "Sources/FBLPromises/FBLPromise+Then.m"; sourceTree = ""; }; C37BD2DCBBEC7D2763E5D93035C4F698 /* SentryNSURLSessionTaskSearch.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SentryNSURLSessionTaskSearch.h; path = Sources/Sentry/include/SentryNSURLSessionTaskSearch.h; sourceTree = ""; }; + C382B3855032F0B79332CA6A9BCC2955 /* SwiftFlutterEmailSenderPlugin.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SwiftFlutterEmailSenderPlugin.swift; path = "../../../../../../../../../../.pub-cache/hosted/pub.dev/flutter_email_sender-6.0.3/ios/Classes/SwiftFlutterEmailSenderPlugin.swift"; sourceTree = ""; }; C3962D31E7C7002958B8791D527B7E82 /* MLKitBarcodeScanning.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = MLKitBarcodeScanning.framework; path = Frameworks/MLKitBarcodeScanning.framework; sourceTree = ""; }; C39BE06027F24EB0328A76E7507FA463 /* package_info_plus */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = package_info_plus; path = package_info_plus.framework; sourceTree = BUILT_PRODUCTS_DIR; }; C3A8E22467ADEB42B7D83259E1A6F078 /* Sentry.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = Sentry.release.xcconfig; sourceTree = ""; }; @@ -2865,237 +2836,255 @@ C55B6BBAB9EBB3B874D7454C3506114D /* GTMSessionFetcher-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "GTMSessionFetcher-Info.plist"; sourceTree = ""; }; C55C678B2D0A4C4A604DB66D1918C56F /* pb_decode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = pb_decode.h; sourceTree = ""; }; C573752329501BCF82975648F5D4C7D2 /* SentrySpanProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SentrySpanProtocol.h; path = Sources/Sentry/Public/SentrySpanProtocol.h; sourceTree = ""; }; + C5910F708535FBD5A239C1CBE9B28995 /* flutter_inappwebview-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "flutter_inappwebview-umbrella.h"; sourceTree = ""; }; C59FFA97AA19AA1BC712C53B3F8F378F /* pb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = pb.h; sourceTree = ""; }; C5B1132C4045EA44B51DAE2028693938 /* SentryCrashMemory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SentryCrashMemory.h; path = Sources/SentryCrash/Recording/Tools/SentryCrashMemory.h; sourceTree = ""; }; C5BE4D1032057B234625526E3CDE890F /* GDTCORMetricsController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORMetricsController.h; path = GoogleDataTransport/GDTCORLibrary/Private/GDTCORMetricsController.h; sourceTree = ""; }; C5F3A2EFD60AB32FE0BB2EAC15B9A73F /* Sentry-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Sentry-umbrella.h"; sourceTree = ""; }; C61514A118F13ED94F94DDCB13FBDAAF /* SentryCrashCPU_x86_64.c */ = {isa = PBXFileReference; includeInIndex = 1; name = SentryCrashCPU_x86_64.c; path = Sources/SentryCrash/Recording/Tools/SentryCrashCPU_x86_64.c; sourceTree = ""; }; - C630DC976CFC529906571DA851643B86 /* integration_test.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = integration_test.release.xcconfig; sourceTree = ""; }; + C640DF518285BB59B3AA47E3C826D3BB /* CustomeSchemeHandler.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CustomeSchemeHandler.swift; path = "../../../../../../../../../../.pub-cache/hosted/pub.dev/flutter_inappwebview-5.8.0/ios/Classes/CustomeSchemeHandler.swift"; sourceTree = ""; }; C661FA831581B5B838608D814CE3E414 /* OrderedSet.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = OrderedSet.debug.xcconfig; sourceTree = ""; }; - C6A847047D630B9186D3CEE39351C4F2 /* OnWindowBlurEventJS.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = OnWindowBlurEventJS.swift; path = "../../../../../../../../../../.pub-cache/hosted/pub.dev/flutter_inappwebview-5.8.0/ios/Classes/PluginScriptsJS/OnWindowBlurEventJS.swift"; sourceTree = ""; }; + C66BCB9A4609E95B4E614ACE31A5AE7A /* flutter_email_sender-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "flutter_email_sender-umbrella.h"; sourceTree = ""; }; + C6A016D8838E91F16E054389FD5C5045 /* flutter_email_sender.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; name = flutter_email_sender.podspec; path = "../../../../../../../../../.pub-cache/hosted/pub.dev/flutter_email_sender-6.0.3/ios/flutter_email_sender.podspec"; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; C6B0BA746A90DE423990F971309A7448 /* SentryRequestManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SentryRequestManager.h; path = Sources/Sentry/include/SentryRequestManager.h; sourceTree = ""; }; C6D96678FD089F20B3C53D72743D8D12 /* GDTCCTUploader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCCTUploader.h; path = GoogleDataTransport/GDTCCTLibrary/Private/GDTCCTUploader.h; sourceTree = ""; }; - C6F640B1444F63E9EB462C361D050CBD /* EventPermissionStrategy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EventPermissionStrategy.m; path = "../../../../../../../../../../.pub-cache/hosted/pub.dev/permission_handler_apple-9.4.5/ios/Classes/strategies/EventPermissionStrategy.m"; sourceTree = ""; }; C72AD5DD9EA78E2303BDA3D316DFE4A8 /* FBLPromises.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBLPromises.h; path = Sources/FBLPromises/include/FBLPromises.h; sourceTree = ""; }; - C768D27443CB5F659DDD1A6A90584D45 /* ResourceBundle-flutter_email_sender-flutter_email_sender-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "ResourceBundle-flutter_email_sender-flutter_email_sender-Info.plist"; sourceTree = ""; }; - C782F3D64A5DB279B07DD4535BD2F969 /* image_picker_ios.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = image_picker_ios.release.xcconfig; sourceTree = ""; }; + C75E0DA6F371494448BE56F7B11E78F1 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; name = LICENSE; path = "../../../../../../../../../.pub-cache/hosted/pub.dev/package_info_plus-8.0.0/LICENSE"; sourceTree = ""; }; + C76D16D4C1A75F1D2F6BE4210D843D7C /* FLTIntegrationTestRunner.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FLTIntegrationTestRunner.h; path = ../../../../../../../../../../../../../flutter/packages/integration_test/ios/integration_test/Sources/integration_test/include/FLTIntegrationTestRunner.h; sourceTree = ""; }; + C77CADCF64BAE15F4D49E9A9F3B23FF6 /* MobileScannerPlugin.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MobileScannerPlugin.m; path = "../../../../../../../../../../.pub-cache/hosted/pub.dev/mobile_scanner-3.4.1/ios/Classes/MobileScannerPlugin.m"; sourceTree = ""; }; C7AD28D5FB25A8DEDF61F78996932FA6 /* permission_handler_apple */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = permission_handler_apple; path = permission_handler_apple.framework; sourceTree = BUILT_PRODUCTS_DIR; }; + C7D75F7B89F963626F90754C93424F58 /* MobileScannerPlugin.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MobileScannerPlugin.h; path = "../../../../../../../../../../.pub-cache/hosted/pub.dev/mobile_scanner-3.4.1/ios/Classes/MobileScannerPlugin.h"; sourceTree = ""; }; C7E6691D10A8EA36D8A4E9CAA53C5677 /* GDTCORMetricsControllerProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORMetricsControllerProtocol.h; path = GoogleDataTransport/GDTCORLibrary/Internal/GDTCORMetricsControllerProtocol.h; sourceTree = ""; }; - C8009A9FB4A3A3657ADDCBB87B40FB78 /* InAppBrowserManager.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = InAppBrowserManager.swift; path = "../../../../../../../../../../.pub-cache/hosted/pub.dev/flutter_inappwebview-5.8.0/ios/Classes/InAppBrowser/InAppBrowserManager.swift"; sourceTree = ""; }; + C7EE5B37E4285A10B969AB7D05BC031F /* permission_handler_apple.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; name = permission_handler_apple.podspec; path = "../../../../../../../../../.pub-cache/hosted/pub.dev/permission_handler_apple-9.4.5/ios/permission_handler_apple.podspec"; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; C8195F39A41D01F8E5762CAE8089D601 /* SentryAutoSessionTrackingIntegration.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SentryAutoSessionTrackingIntegration.m; path = Sources/Sentry/SentryAutoSessionTrackingIntegration.m; sourceTree = ""; }; C839C9567748BADA576920A5CFC4D59E /* share_plus-share_plus_privacy */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; name = "share_plus-share_plus_privacy"; path = share_plus_privacy.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; - C85136AA40C1D3E5573AD93B18C30C7B /* WKProcessPoolManager.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = WKProcessPoolManager.swift; path = "../../../../../../../../../.pub-cache/hosted/pub.dev/flutter_inappwebview-5.8.0/ios/Classes/WKProcessPoolManager.swift"; sourceTree = ""; }; + C855B0903105AC46A0D025FA2287F884 /* shared_preferences_foundation.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = shared_preferences_foundation.debug.xcconfig; sourceTree = ""; }; C858EAE363FCFCB79E3C91A82B27D67D /* GDTCOREvent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCOREvent.h; path = GoogleDataTransport/GDTCORLibrary/Public/GoogleDataTransport/GDTCOREvent.h; sourceTree = ""; }; C85AE2873E79A0825E5B30A26984F552 /* FBLPromise+Wrap.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FBLPromise+Wrap.m"; path = "Sources/FBLPromises/FBLPromise+Wrap.m"; sourceTree = ""; }; - C93FD92E9ED30CF5A017229F700ECA1E /* FPPSharePlusPlugin.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FPPSharePlusPlugin.h; path = "../../../../../../../../../.pub-cache/hosted/pub.dev/share_plus-9.0.0/ios/Classes/FPPSharePlusPlugin.h"; sourceTree = ""; }; + C85EE2D2805C0213D502BEDC92E92549 /* WebMessagePort.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = WebMessagePort.swift; path = "../../../../../../../../../../../.pub-cache/hosted/pub.dev/flutter_inappwebview-5.8.0/ios/Classes/Types/WebMessagePort.swift"; sourceTree = ""; }; + C8603F5D45A3E590781BF59BE9C69D5C /* flutter_native_splash-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "flutter_native_splash-dummy.m"; sourceTree = ""; }; + C871E9A03CA17D37556E12D1023D5DBE /* PluginScript.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = PluginScript.swift; path = "../../../../../../../../../../../.pub-cache/hosted/pub.dev/flutter_inappwebview-5.8.0/ios/Classes/Types/PluginScript.swift"; sourceTree = ""; }; + C9322E1168A609698B674CB3C81AE007 /* flutter_keyboard_visibility-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "flutter_keyboard_visibility-umbrella.h"; sourceTree = ""; }; C953AAEE5CC55047CF529929945BA680 /* EncodeMetrics.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = EncodeMetrics.swift; path = Sources/Swift/Metrics/EncodeMetrics.swift; sourceTree = ""; }; C972A0894193430BBE377E22D4AF4B33 /* GDTCORLogSourceMetrics.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORLogSourceMetrics.h; path = GoogleDataTransport/GDTCORLibrary/Private/GDTCORLogSourceMetrics.h; sourceTree = ""; }; - C9B12CFA25E1E66E3312DC8E997F94CA /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; name = LICENSE; path = "../../../../../../../../.pub-cache/hosted/pub.dev/permission_handler_apple-9.4.5/LICENSE"; sourceTree = ""; }; + C9AD5773F309D37C952811FC3C17BBD8 /* local_auth_darwin-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "local_auth_darwin-prefix.pch"; sourceTree = ""; }; + C9BC3B8B5E02329527B5034A165214BF /* PermissionHandlerPlugin.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PermissionHandlerPlugin.h; path = "../../../../../../../../../../.pub-cache/hosted/pub.dev/permission_handler_apple-9.4.5/ios/Classes/PermissionHandlerPlugin.h"; sourceTree = ""; }; C9CADB5A9D249BFD7885AADEFBFFAF45 /* SentryPrivate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SentryPrivate.h; path = Sources/Sentry/include/SentryPrivate.h; sourceTree = ""; }; + C9F72EF56A02B79911A1752DC4DC3B92 /* shared_preferences_foundation-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "shared_preferences_foundation-dummy.m"; sourceTree = ""; }; CA5CADE0CE406B2552E6C6D83F55288A /* SentryCrashCachedData.c */ = {isa = PBXFileReference; includeInIndex = 1; name = SentryCrashCachedData.c; path = Sources/SentryCrash/Recording/SentryCrashCachedData.c; sourceTree = ""; }; - CA7F8503C36C7C34F17DC6899B8AD08E /* ResourceBundle-flutter_native_splash_privacy-flutter_native_splash-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "ResourceBundle-flutter_native_splash_privacy-flutter_native_splash-Info.plist"; sourceTree = ""; }; CA8F1A6CB77486547D683AE296298AE6 /* FBLPromise+Timeout.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBLPromise+Timeout.h"; path = "Sources/FBLPromises/include/FBLPromise+Timeout.h"; sourceTree = ""; }; CAA59E0A8A4220C0622428816BD2F712 /* Pods-Runner.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-Runner.debug.xcconfig"; sourceTree = ""; }; CB1E2AFEBDB108A057ABEE2088A7B7A3 /* SentryInternalSerializable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SentryInternalSerializable.h; path = Sources/Sentry/include/SentryInternalSerializable.h; sourceTree = ""; }; + CB23C5F8B0A4ABE574CFDEF363AE78A0 /* LeakAvoider.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = LeakAvoider.swift; path = "../../../../../../../../../../.pub-cache/hosted/pub.dev/flutter_inappwebview-5.8.0/ios/Classes/LeakAvoider.swift"; sourceTree = ""; }; CB280D9814B31387B82EA5BB8953B35E /* SentryCrashThread.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SentryCrashThread.h; path = Sources/SentryCrash/Recording/Tools/SentryCrashThread.h; sourceTree = ""; }; CB410E2C9DE6A74A91871B2A9FC5945F /* SentryCoreGraphicsHelper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SentryCoreGraphicsHelper.h; path = Sources/Sentry/include/SentryCoreGraphicsHelper.h; sourceTree = ""; }; CB500BB57007BDF074819355112F2080 /* FBLPromise+Delay.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FBLPromise+Delay.m"; path = "Sources/FBLPromises/FBLPromise+Delay.m"; sourceTree = ""; }; + CBC5A031E6729E06D57FE34564F75618 /* NotificationPermissionStrategy.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = NotificationPermissionStrategy.h; path = "../../../../../../../../../../../.pub-cache/hosted/pub.dev/permission_handler_apple-9.4.5/ios/Classes/strategies/NotificationPermissionStrategy.h"; sourceTree = ""; }; + CBCFB26D058A22312472A90F5C1E08D3 /* flutter_native_splash.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = flutter_native_splash.modulemap; sourceTree = ""; }; CBD1C2711DB710382BF2FC4E73063630 /* SentryTransactionContext.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SentryTransactionContext.h; path = Sources/Sentry/Public/SentryTransactionContext.h; sourceTree = ""; }; CC1801A607FC13C7FC0DAC1A19A6D051 /* SentryEnvelope.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SentryEnvelope.h; path = Sources/Sentry/include/HybridPublic/SentryEnvelope.h; sourceTree = ""; }; + CC66E79ED8448E0E578E3150D0D34DC5 /* integration_test.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = integration_test.debug.xcconfig; sourceTree = ""; }; CC6E6A849E8D9B748108F31A76C94231 /* FBLPromise.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBLPromise.m; path = Sources/FBLPromises/FBLPromise.m; sourceTree = ""; }; CC7B01FD4B2A4BAB09AED8BA95B92592 /* SentryDiscardReasonMapper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SentryDiscardReasonMapper.h; path = Sources/Sentry/include/SentryDiscardReasonMapper.h; sourceTree = ""; }; + CC8D7438357DE07DC1F4655480247566 /* sqflite-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "sqflite-umbrella.h"; sourceTree = ""; }; CC92FAF9FF266DF3085E44944825EF66 /* SentryProfilingLogging.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = SentryProfilingLogging.hpp; path = Sources/Sentry/include/SentryProfilingLogging.hpp; sourceTree = ""; }; - CD0ECCF6B6B330DF9DE2B7728F1CF90E /* PullToRefreshControl.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = PullToRefreshControl.swift; path = "../../../../../../../../../../.pub-cache/hosted/pub.dev/flutter_inappwebview-5.8.0/ios/Classes/PullToRefresh/PullToRefreshControl.swift"; sourceTree = ""; }; - CD2E0CA16CC75E0274DCBCBECFAC8B92 /* SupportZoomJS.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SupportZoomJS.swift; path = "../../../../../../../../../../.pub-cache/hosted/pub.dev/flutter_inappwebview-5.8.0/ios/Classes/PluginScriptsJS/SupportZoomJS.swift"; sourceTree = ""; }; CD3CCB426591FB68281C3CA4DC97EF39 /* SentryCrashC.c */ = {isa = PBXFileReference; includeInIndex = 1; name = SentryCrashC.c; path = Sources/SentryCrash/Recording/SentryCrashC.c; sourceTree = ""; }; - CD9CFB5C753ED0B7CCC721A5EEE1A6E7 /* flutter_inappwebview-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "flutter_inappwebview-prefix.pch"; sourceTree = ""; }; - CE0883872C207BC668EC8E1C4767C180 /* sentry_flutter-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "sentry_flutter-Info.plist"; sourceTree = ""; }; + CD581969E081A31FC373B1AFED9B9E54 /* SensorPermissionStrategy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SensorPermissionStrategy.m; path = "../../../../../../../../../../../.pub-cache/hosted/pub.dev/permission_handler_apple-9.4.5/ios/Classes/strategies/SensorPermissionStrategy.m"; sourceTree = ""; }; CE2BC3F2343C1BCE3FB627194196B058 /* SentryFrameRemover.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SentryFrameRemover.m; path = Sources/Sentry/SentryFrameRemover.m; sourceTree = ""; }; - CEB33BB0A1F7C0485BCB82F080A1277E /* ResourceBundle-path_provider_foundation_privacy-path_provider_foundation-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "ResourceBundle-path_provider_foundation_privacy-path_provider_foundation-Info.plist"; sourceTree = ""; }; - CF1E0666638FB449BBC958A528C36A77 /* FPPPackageInfoPlusPlugin.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FPPPackageInfoPlusPlugin.h; path = "../../../../../../../../../.pub-cache/hosted/pub.dev/package_info_plus-8.0.0/ios/Classes/FPPPackageInfoPlusPlugin.h"; sourceTree = ""; }; CF49679DCB6D9803ACD2F8C90106302C /* SentryCrashWrapper.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SentryCrashWrapper.m; path = Sources/Sentry/SentryCrashWrapper.m; sourceTree = ""; }; CF552DBF73EF5CDAE4CF9E4B93DA3686 /* SentryProfilerSerialization.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SentryProfilerSerialization.h; path = Sources/Sentry/include/SentryProfilerSerialization.h; sourceTree = ""; }; CF66E35C25190FB5EB314355A0F69684 /* SentryGlobalEventProcessor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SentryGlobalEventProcessor.h; path = Sources/Sentry/include/SentryGlobalEventProcessor.h; sourceTree = ""; }; - CF97BC9B0ABA98699EC71A9E74A56A18 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; name = LICENSE; path = "../../../../../../../../.pub-cache/hosted/pub.dev/flutter_native_splash-2.4.0/LICENSE"; sourceTree = ""; }; CFBB7BC896B6F802FB1A90412B62B429 /* SentryCrashSystemCapabilities.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SentryCrashSystemCapabilities.h; path = Sources/SentryCrash/Recording/SentryCrashSystemCapabilities.h; sourceTree = ""; }; CFCB36653BB0F12C8015257A8DBDF8B4 /* GTMMethodCheck.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GTMMethodCheck.h; path = DebugUtils/GTMMethodCheck.h; sourceTree = ""; }; + CFD58391053F6CE1A08C18BF0CCBC40F /* StoragePermissionStrategy.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = StoragePermissionStrategy.h; path = "../../../../../../../../../../../.pub-cache/hosted/pub.dev/permission_handler_apple-9.4.5/ios/Classes/strategies/StoragePermissionStrategy.h"; sourceTree = ""; }; + CFD5CF2FC99361D06BF98BFDE6B8C530 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; name = LICENSE; path = "../../../../../../../../../.pub-cache/hosted/pub.dev/connectivity_plus-6.0.5/LICENSE"; sourceTree = ""; }; D0229F11FB39C1A98B4CBDCE978F6990 /* UIKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = UIKit.framework; path = Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS14.0.sdk/System/Library/Frameworks/UIKit.framework; sourceTree = DEVELOPER_DIR; }; D03F3816E83144F5FB41ECDA4FC0736E /* GTMDebugSelectorValidation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GTMDebugSelectorValidation.h; path = DebugUtils/GTMDebugSelectorValidation.h; sourceTree = ""; }; D041C1FCF48C0415075F177590B9DF75 /* SentryAutoBreadcrumbTrackingIntegration.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SentryAutoBreadcrumbTrackingIntegration.m; path = Sources/Sentry/SentryAutoBreadcrumbTrackingIntegration.m; sourceTree = ""; }; D0997143DB9678D3A78894DF3A5CCD98 /* FBLPromise+All.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBLPromise+All.h"; path = "Sources/FBLPromises/include/FBLPromise+All.h"; sourceTree = ""; }; D0B44C2162379BA98ABCF1888039B69C /* GULCCDependency.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULCCDependency.h; path = GoogleUtilitiesComponents/Sources/Public/GULCCDependency.h; sourceTree = ""; }; D0ED60F3322BF929DF0C0A90A0F6D713 /* NSLock.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = NSLock.swift; path = Sources/Swift/Extensions/NSLock.swift; sourceTree = ""; }; - D17AD2224FC0C364BEAE0DF83E8812A4 /* InAppBrowserWebViewController.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = InAppBrowserWebViewController.swift; path = "../../../../../../../../../../.pub-cache/hosted/pub.dev/flutter_inappwebview-5.8.0/ios/Classes/InAppBrowser/InAppBrowserWebViewController.swift"; sourceTree = ""; }; + D15068D62834A8135FFFE94294CB22C7 /* mobile_scanner-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "mobile_scanner-prefix.pch"; sourceTree = ""; }; D1C7EEFE1089D4748208931AB74C173B /* SystemConfiguration.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = SystemConfiguration.framework; path = Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS14.0.sdk/System/Library/Frameworks/SystemConfiguration.framework; sourceTree = DEVELOPER_DIR; }; + D1CC40F26088789262C95A43E6AE34D0 /* flutter_nekoton_bridge-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "flutter_nekoton_bridge-Info.plist"; sourceTree = ""; }; + D1CCD0C16DFF0194B0A936A205ED4ED0 /* shared_preferences_foundation.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = shared_preferences_foundation.release.xcconfig; sourceTree = ""; }; D1CD0217CCADBF8E3B273CE9C59FB16B /* SentryTraceContext.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SentryTraceContext.h; path = Sources/Sentry/include/SentryTraceContext.h; sourceTree = ""; }; D1CDCCA29C7D2DDA3EF46D3E989372C4 /* GoogleUtilitiesComponents-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "GoogleUtilitiesComponents-Info.plist"; sourceTree = ""; }; D205274B60EB19D552BF0B1969FC035E /* GDTCORTransformer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTCORTransformer.m; path = GoogleDataTransport/GDTCORLibrary/GDTCORTransformer.m; sourceTree = ""; }; - D2218A6EC0D27E04360FF7B5CD567548 /* path_provider_foundation.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = path_provider_foundation.debug.xcconfig; sourceTree = ""; }; + D21ED2F3A0000D9727C96CDD5D2E964B /* NSAttributedString.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = NSAttributedString.swift; path = "../../../../../../../../../../../.pub-cache/hosted/pub.dev/flutter_inappwebview-5.8.0/ios/Classes/Types/NSAttributedString.swift"; sourceTree = ""; }; D23A243C911223EF116A0B8C350069D0 /* SentryNSDataUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SentryNSDataUtils.h; path = Sources/Sentry/include/SentryNSDataUtils.h; sourceTree = ""; }; - D24409DB08C6311931F069ED453F2513 /* ResourceBundle-package_info_plus_privacy-package_info_plus-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "ResourceBundle-package_info_plus_privacy-package_info_plus-Info.plist"; sourceTree = ""; }; + D24CC816BD3154712F334C3C6C6C8320 /* SqfliteCursor.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SqfliteCursor.m; path = "../../../../../../../../../../.pub-cache/hosted/pub.dev/sqflite-2.3.3+1/darwin/Classes/SqfliteCursor.m"; sourceTree = ""; }; D269A430FB7F37066D3E201A43B8C1FC /* GoogleToolboxForMac-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "GoogleToolboxForMac-prefix.pch"; sourceTree = ""; }; - D2F66E9E24FCE57EE5C8254610AB1402 /* SafariViewController.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SafariViewController.swift; path = "../../../../../../../../../../.pub-cache/hosted/pub.dev/flutter_inappwebview-5.8.0/ios/Classes/SafariViewController/SafariViewController.swift"; sourceTree = ""; }; D3341E0DEF430E03EE4C6DE3B8FE9892 /* SentryAsynchronousOperation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SentryAsynchronousOperation.m; path = Sources/Sentry/SentryAsynchronousOperation.m; sourceTree = ""; }; + D34A317FB0989C265BB98D135AA19D4C /* AssistantPermissionStrategy.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AssistantPermissionStrategy.h; path = "../../../../../../../../../../../.pub-cache/hosted/pub.dev/permission_handler_apple-9.4.5/ios/Classes/strategies/AssistantPermissionStrategy.h"; sourceTree = ""; }; D352538B076766FECA69521414D37B6C /* SentrySDK+Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "SentrySDK+Private.h"; path = "Sources/Sentry/include/SentrySDK+Private.h"; sourceTree = ""; }; D358B082989F3D532C4D7A2B17F14A7A /* nanopb.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = nanopb.modulemap; sourceTree = ""; }; D36D7EC36FFDED950BE9C557D6060530 /* GoogleToolboxForMac.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = GoogleToolboxForMac.modulemap; sourceTree = ""; }; D3A186E1865AA978EEC3EDFC27AB643C /* ResourceBundle-FBLPromises_Privacy-PromisesObjC-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "ResourceBundle-FBLPromises_Privacy-PromisesObjC-Info.plist"; sourceTree = ""; }; D3E9B58B1F5EC491D2307F71D8DCC1D7 /* SentryAppStartMeasurement.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SentryAppStartMeasurement.h; path = Sources/Sentry/include/HybridPublic/SentryAppStartMeasurement.h; sourceTree = ""; }; - D41102F713F218B3893FF145EBA97E38 /* FlutterKeyboardVisibilityPlugin.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FlutterKeyboardVisibilityPlugin.h; path = "../../../../../../../../../.pub-cache/hosted/pub.dev/flutter_keyboard_visibility-5.4.1/ios/Classes/FlutterKeyboardVisibilityPlugin.h"; sourceTree = ""; }; - D4493C528FD69CCD2BF6CCD59E68EC22 /* InAppWebViewMethodHandler.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = InAppWebViewMethodHandler.swift; path = "../../../../../../../../../.pub-cache/hosted/pub.dev/flutter_inappwebview-5.8.0/ios/Classes/InAppWebViewMethodHandler.swift"; sourceTree = ""; }; + D3EC8541E824C5181E16C20E6491F74F /* flutter_native_splash.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; name = flutter_native_splash.podspec; path = "../../../../../../../../../.pub-cache/hosted/pub.dev/flutter_native_splash-2.4.0/ios/flutter_native_splash.podspec"; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + D3F2E6FCCF8DC053D6E26F8400CF7EAF /* WKSecurityOrigin.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = WKSecurityOrigin.swift; path = "../../../../../../../../../../../.pub-cache/hosted/pub.dev/flutter_inappwebview-5.8.0/ios/Classes/Types/WKSecurityOrigin.swift"; sourceTree = ""; }; D4ABC224BAE872950D0B62BD86DE37FB /* GoogleDataTransport-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "GoogleDataTransport-umbrella.h"; sourceTree = ""; }; - D4CBAAA489729E21117B24FFAF1AFF19 /* URLLaunchSession.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = URLLaunchSession.swift; path = "../../../../../../../../../../../.pub-cache/hosted/pub.dev/url_launcher_ios-6.3.0/ios/url_launcher_ios/Sources/url_launcher_ios/URLLaunchSession.swift"; sourceTree = ""; }; - D4D17F1547F4C3E41CD1904D07CBEEBA /* image_picker_ios-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "image_picker_ios-dummy.m"; sourceTree = ""; }; D4F18F4F6B39AC1431EB143FE2915402 /* GoogleUtilitiesComponents.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = GoogleUtilitiesComponents.release.xcconfig; sourceTree = ""; }; + D50DDE6BCB10AAC26EC304A8E285253F /* FlutterNativeSplashPlugin.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FlutterNativeSplashPlugin.m; path = "../../../../../../../../../../.pub-cache/hosted/pub.dev/flutter_native_splash-2.4.0/ios/Classes/FlutterNativeSplashPlugin.m"; sourceTree = ""; }; + D52765302E6035E571D54AC067595096 /* MobileScannerUtilities.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = MobileScannerUtilities.swift; path = "../../../../../../../../../../.pub-cache/hosted/pub.dev/mobile_scanner-3.4.1/ios/Classes/MobileScannerUtilities.swift"; sourceTree = ""; }; D55819869C4008C89693421FE6596937 /* SentryReplayEvent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SentryReplayEvent.h; path = Sources/Sentry/include/SentryReplayEvent.h; sourceTree = ""; }; D5A01996538A8D5728B172431A733B90 /* SentrySamplingProfiler.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = SentrySamplingProfiler.cpp; path = Sources/Sentry/SentrySamplingProfiler.cpp; sourceTree = ""; }; - D5BA04BE3787A8F266D97FCF22738A54 /* package_info_plus-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "package_info_plus-prefix.pch"; sourceTree = ""; }; D5C7191ECF1ED867D4ECAD6B9413951B /* SentryMetricProfiler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SentryMetricProfiler.h; path = Sources/Sentry/include/SentryMetricProfiler.h; sourceTree = ""; }; - D5D30EDCA73A54CA172BAD1FA929FCC1 /* HeadlessInAppWebViewManager.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = HeadlessInAppWebViewManager.swift; path = "../../../../../../../../../../.pub-cache/hosted/pub.dev/flutter_inappwebview-5.8.0/ios/Classes/HeadlessInAppWebView/HeadlessInAppWebViewManager.swift"; sourceTree = ""; }; D5E08CF1ED315B70537E6C54EE9CEC84 /* SentryDebugMeta.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SentryDebugMeta.m; path = Sources/Sentry/SentryDebugMeta.m; sourceTree = ""; }; D5F27229ACA01AFB3D1B32E94806AC11 /* SentryAsynchronousOperation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SentryAsynchronousOperation.h; path = Sources/Sentry/include/SentryAsynchronousOperation.h; sourceTree = ""; }; - D6C23FF32B35C8E15BE3FBD8E49037F4 /* NekotonBridge.xcframework */ = {isa = PBXFileReference; includeInIndex = 1; name = NekotonBridge.xcframework; path = "../../../../../../../../.pub-cache/git/nekoton_bridge-39a53e71ffec0668e4384a61c3fc5a9695b7687c/packages/flutter_nekoton_bridge/ios/Frameworks/NekotonBridge.xcframework"; sourceTree = ""; }; + D604BE284D4FCCC28AE11F696FCA9D75 /* sentry_flutter.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = sentry_flutter.debug.xcconfig; sourceTree = ""; }; D6C561A907D5E12E42188C89849CC4C6 /* SentryScope.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SentryScope.h; path = Sources/Sentry/Public/SentryScope.h; sourceTree = ""; }; - D6CB399EF144DA53876A70C42C012CD5 /* package_info_plus-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "package_info_plus-Info.plist"; sourceTree = ""; }; D6EBE65F84049F9760E6EE01E900D99F /* OrderedSet */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = OrderedSet; path = OrderedSet.framework; sourceTree = BUILT_PRODUCTS_DIR; }; D7368C5419CD4781BCD0226CB23C22FF /* GDTCORUploadCoordinator.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTCORUploadCoordinator.m; path = GoogleDataTransport/GDTCORLibrary/GDTCORUploadCoordinator.m; sourceTree = ""; }; D7442893F0C2A63762CE78A3E7144481 /* FBLPromise+Do.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FBLPromise+Do.m"; path = "Sources/FBLPromises/FBLPromise+Do.m"; sourceTree = ""; }; D74CA78FE4B62FCF95B7C2C421F203D4 /* GDTCORMetrics.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORMetrics.h; path = GoogleDataTransport/GDTCORLibrary/Private/GDTCORMetrics.h; sourceTree = ""; }; D7ADF7D530E0D21964272B08469F2F6B /* SentrySpanContext+Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "SentrySpanContext+Private.h"; path = "Sources/Sentry/include/SentrySpanContext+Private.h"; sourceTree = ""; }; D7C37246E671C1932E04A79C193FBC21 /* FBLPromise+Retry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBLPromise+Retry.h"; path = "Sources/FBLPromises/include/FBLPromise+Retry.h"; sourceTree = ""; }; - D81C5771F3599F2F10607CA2F1979FF8 /* image_picker_ios-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "image_picker_ios-umbrella.h"; path = "../../../../../../../../../../../../.pub-cache/hosted/pub.dev/image_picker_ios-0.8.12/ios/image_picker_ios/Sources/image_picker_ios/include/image_picker_ios-umbrella.h"; sourceTree = ""; }; + D82BA11E205906E2BA0A95C09783BB53 /* PrivacyInfo.xcprivacy */ = {isa = PBXFileReference; includeInIndex = 1; name = PrivacyInfo.xcprivacy; path = "../../../../../../../../../.pub-cache/hosted/pub.dev/package_info_plus-8.0.0/ios/PrivacyInfo.xcprivacy"; sourceTree = ""; }; + D847CB01E9ED762D56CE7E6F180E5882 /* ChromeSafariBrowserManager.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ChromeSafariBrowserManager.swift; path = "../../../../../../../../../../../.pub-cache/hosted/pub.dev/flutter_inappwebview-5.8.0/ios/Classes/SafariViewController/ChromeSafariBrowserManager.swift"; sourceTree = ""; }; + D8944A35B58A4CCD31AF2857AEC05164 /* image_picker_ios.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = image_picker_ios.debug.xcconfig; sourceTree = ""; }; D8A0D5D550BAC7574D33F4DC914B0511 /* SentryRequest.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SentryRequest.m; path = Sources/Sentry/SentryRequest.m; sourceTree = ""; }; D8CFE406E78AE8756F6DA906B6BC638C /* SentryCrashJSONCodecObjC.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SentryCrashJSONCodecObjC.m; path = Sources/SentryCrash/Recording/Tools/SentryCrashJSONCodecObjC.m; sourceTree = ""; }; - D8EE162A14AE49B28AFDB1D6A27459C8 /* share_plus.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = share_plus.debug.xcconfig; sourceTree = ""; }; + D8F2F730DA7B87E8E05226416AEFFE24 /* PrivacyInfo.xcprivacy */ = {isa = PBXFileReference; includeInIndex = 1; name = PrivacyInfo.xcprivacy; path = "../../../../../../../../../../.pub-cache/hosted/pub.dev/permission_handler_apple-9.4.5/ios/Resources/PrivacyInfo.xcprivacy"; sourceTree = ""; }; D8F4D8AE9D3930906537E3557B52B7AB /* SentryDataCategoryMapper.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SentryDataCategoryMapper.m; path = Sources/Sentry/SentryDataCategoryMapper.m; sourceTree = ""; }; D91C558A125CCF67BCC3DAB01C638131 /* Pods-Runner.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = "Pods-Runner.modulemap"; sourceTree = ""; }; D94F30E406578AD7EB14319C457F04B2 /* SentryProfileTimeseries.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = SentryProfileTimeseries.mm; path = Sources/Sentry/SentryProfileTimeseries.mm; sourceTree = ""; }; - D99523C77870BD1AA8137C8C0FB710E5 /* FLALocalAuthPlugin_Test.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FLALocalAuthPlugin_Test.h; path = "../../../../../../../../../../../../../.pub-cache/hosted/pub.dev/local_auth_darwin-1.3.1/darwin/local_auth_darwin/Sources/local_auth_darwin/include/local_auth_darwin/FLALocalAuthPlugin_Test.h"; sourceTree = ""; }; + D98E8679E89C302EDCB6D3B9344E538D /* flutter_secure_storage-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "flutter_secure_storage-dummy.m"; sourceTree = ""; }; D9B4203D6BB72B3D1C47CD5456E356DE /* SentryEnvelopeItemHeader.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SentryEnvelopeItemHeader.m; path = Sources/Sentry/SentryEnvelopeItemHeader.m; sourceTree = ""; }; - D9CAAEA69D89F0077E6C264A580054E8 /* ConsoleLogJS.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ConsoleLogJS.swift; path = "../../../../../../../../../../.pub-cache/hosted/pub.dev/flutter_inappwebview-5.8.0/ios/Classes/PluginScriptsJS/ConsoleLogJS.swift"; sourceTree = ""; }; + D9B7F4F975214E63AA39FFDB75B3CC5F /* PrivacyInfo.xcprivacy */ = {isa = PBXFileReference; includeInIndex = 1; name = PrivacyInfo.xcprivacy; path = "../../../../../../../../../.pub-cache/hosted/pub.dev/connectivity_plus-6.0.5/darwin/PrivacyInfo.xcprivacy"; sourceTree = ""; }; + DA12844A52F847283F7C5B1B0AE2EFDF /* sentry_flutter-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "sentry_flutter-dummy.m"; sourceTree = ""; }; DA1F43D55439335C3BAFB361D9EFAA38 /* GTMNSData+zlib.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "GTMNSData+zlib.h"; path = "Foundation/GTMNSData+zlib.h"; sourceTree = ""; }; DA23A5BC455A4B7447982E57FE004967 /* SentryViewHierarchy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SentryViewHierarchy.m; path = Sources/Sentry/SentryViewHierarchy.m; sourceTree = ""; }; DA2E36077EBDE7FE636651E99FB415E5 /* SentryEnvelopeItemHeader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SentryEnvelopeItemHeader.h; path = Sources/Sentry/Public/SentryEnvelopeItemHeader.h; sourceTree = ""; }; + DA665D31F8C7E9634ADBC1699DADD8D7 /* FlutterMethodCallDelegate.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = FlutterMethodCallDelegate.swift; path = "../../../../../../../../../../.pub-cache/hosted/pub.dev/flutter_inappwebview-5.8.0/ios/Classes/FlutterMethodCallDelegate.swift"; sourceTree = ""; }; DA7597686AFD305E360D9E51DEF7A601 /* GDTCORStorageProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORStorageProtocol.h; path = GoogleDataTransport/GDTCORLibrary/Internal/GDTCORStorageProtocol.h; sourceTree = ""; }; - DA8FBB6B2E4FD1657B023CF8D372B5B3 /* FLTImagePickerPlugin_Test.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FLTImagePickerPlugin_Test.h; path = "../../../../../../../../../../../../../.pub-cache/hosted/pub.dev/image_picker_ios-0.8.12/ios/image_picker_ios/Sources/image_picker_ios/include/image_picker_ios/FLTImagePickerPlugin_Test.h"; sourceTree = ""; }; + DA8C511EFE41E12353A86C2B0678166C /* PullToRefreshDelegate.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = PullToRefreshDelegate.swift; path = "../../../../../../../../../../../.pub-cache/hosted/pub.dev/flutter_inappwebview-5.8.0/ios/Classes/PullToRefresh/PullToRefreshDelegate.swift"; sourceTree = ""; }; DAAFE570FE3956384AD5313295DAAB9C /* SentryThreadInspector.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SentryThreadInspector.h; path = Sources/Sentry/include/SentryThreadInspector.h; sourceTree = ""; }; DABA70FB283129F4D98C27B71D7CA6AB /* GTMSessionFetcherService.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GTMSessionFetcherService.h; path = Sources/Core/Public/GTMSessionFetcher/GTMSessionFetcherService.h; sourceTree = ""; }; DAC2817E3D0BE793F6FF83B79E5C2228 /* SentryCrashMonitorContext.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SentryCrashMonitorContext.h; path = Sources/SentryCrash/Recording/Monitors/SentryCrashMonitorContext.h; sourceTree = ""; }; + DACDC4BCC71788BE60EF92C274D0CFC0 /* image_picker_ios-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "image_picker_ios-umbrella.h"; path = "../../../../../../../../../../../../../.pub-cache/hosted/pub.dev/image_picker_ios-0.8.12/ios/image_picker_ios/Sources/image_picker_ios/include/image_picker_ios-umbrella.h"; sourceTree = ""; }; DAE16E478A7070BB4A24DD994631DBFD /* SentryEnvelopeAttachmentHeader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SentryEnvelopeAttachmentHeader.h; path = Sources/Sentry/include/SentryEnvelopeAttachmentHeader.h; sourceTree = ""; }; + DAF2E8FB5187A55A6DBDDB887126A88C /* flutter_inappwebview-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "flutter_inappwebview-Info.plist"; sourceTree = ""; }; DB02C28AE33317F0E92E34A4931FB274 /* SentryBreadcrumb+Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "SentryBreadcrumb+Private.h"; path = "Sources/Sentry/include/HybridPublic/SentryBreadcrumb+Private.h"; sourceTree = ""; }; DB30673718FE3B155757809D84C4BEAA /* SentryMetricKitIntegration.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SentryMetricKitIntegration.m; path = Sources/Sentry/SentryMetricKitIntegration.m; sourceTree = ""; }; - DB4DB48F93771B03120B7A2E641C8951 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; name = LICENSE; path = "../../../../../../../../.pub-cache/hosted/pub.dev/flutter_secure_storage-9.2.2/LICENSE"; sourceTree = ""; }; + DB732B5DE6D9B47F832C1FBB7FC6AC03 /* SslError.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SslError.swift; path = "../../../../../../../../../../../.pub-cache/hosted/pub.dev/flutter_inappwebview-5.8.0/ios/Classes/Types/SslError.swift"; sourceTree = ""; }; DB7BF62B22CD2B3F63E05A0B57D8FD0C /* SentryDispatchSourceWrapper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SentryDispatchSourceWrapper.h; path = Sources/Sentry/include/SentryDispatchSourceWrapper.h; sourceTree = ""; }; DBA6F34C072B134D3BE38983776DD1C3 /* url_launcher_ios-url_launcher_ios_privacy */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; name = "url_launcher_ios-url_launcher_ios_privacy"; path = url_launcher_ios_privacy.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; DBC0D63D64ED539A6F33CFFD6BE1E7B9 /* nanopb-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "nanopb-dummy.m"; sourceTree = ""; }; DBF11E03401A62E951F215294542B477 /* SentryCrashCPU_Apple.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SentryCrashCPU_Apple.h; path = Sources/SentryCrash/Recording/Tools/SentryCrashCPU_Apple.h; sourceTree = ""; }; DC0723F46DAF3B7DFA22AA2372451BDD /* OrderedSet.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = OrderedSet.swift; path = Sources/OrderedSet.swift; sourceTree = ""; }; - DC47AA35B073055509BF42538E2555B7 /* CredentialDatabase.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CredentialDatabase.swift; path = "../../../../../../../../../.pub-cache/hosted/pub.dev/flutter_inappwebview-5.8.0/ios/Classes/CredentialDatabase.swift"; sourceTree = ""; }; - DC9D048ED59B93A151EA5477A8181C82 /* FlutterSecureStorage.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = FlutterSecureStorage.swift; path = "../../../../../../../../../.pub-cache/hosted/pub.dev/flutter_secure_storage-9.2.2/ios/Classes/FlutterSecureStorage.swift"; sourceTree = ""; }; DCA35F778FCE208137F9B51BBC95B8D9 /* GDTCORReachability_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORReachability_Private.h; path = GoogleDataTransport/GDTCORLibrary/Private/GDTCORReachability_Private.h; sourceTree = ""; }; + DCA79E7043A9E435F323360F17F120D4 /* ResourceBundle-package_info_plus_privacy-package_info_plus-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "ResourceBundle-package_info_plus_privacy-package_info_plus-Info.plist"; sourceTree = ""; }; DCAB62DCECD5BA239684C006142F1DC1 /* SentryDebugMeta.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SentryDebugMeta.h; path = Sources/Sentry/Public/SentryDebugMeta.h; sourceTree = ""; }; - DCC02027E52B403828499903F2332B95 /* flutter_email_sender-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "flutter_email_sender-Info.plist"; sourceTree = ""; }; - DCE1E399864B0153D6940D5994D56219 /* FLTIntegrationTestRunner.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FLTIntegrationTestRunner.h; path = ../../../../../../../../../../../../flutter/packages/integration_test/ios/integration_test/Sources/integration_test/include/FLTIntegrationTestRunner.h; sourceTree = ""; }; + DCEBE7B67D6D1240D112F878993B0E9A /* flutter_email_sender-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "flutter_email_sender-dummy.m"; sourceTree = ""; }; DD1377598E4AE0C05CEE784A891F5068 /* SentryCrashStackCursor_SelfThread.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SentryCrashStackCursor_SelfThread.m; path = Sources/SentryCrash/Recording/Tools/SentryCrashStackCursor_SelfThread.m; sourceTree = ""; }; DD33DF67AC61FAC767E3FCE2F28BB9C0 /* GDTCORStorageMetadata.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTCORStorageMetadata.m; path = GoogleDataTransport/GDTCORLibrary/GDTCORStorageMetadata.m; sourceTree = ""; }; DD438EE1EAFFE008E46C70D1E3D60734 /* GDTCOREventDropReason.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCOREventDropReason.h; path = GoogleDataTransport/GDTCORLibrary/Internal/GDTCOREventDropReason.h; sourceTree = ""; }; - DD4CC6F89B4F2C3742F46E44B5897956 /* FLTPHPickerSaveImageToPathOperation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FLTPHPickerSaveImageToPathOperation.h; path = "../../../../../../../../../../../../../.pub-cache/hosted/pub.dev/image_picker_ios-0.8.12/ios/image_picker_ios/Sources/image_picker_ios/include/image_picker_ios/FLTPHPickerSaveImageToPathOperation.h"; sourceTree = ""; }; DD8124312C50293B16DCD46912338D5A /* SentryRequest.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SentryRequest.h; path = Sources/Sentry/Public/SentryRequest.h; sourceTree = ""; }; + DD86AB52B1AF8FF238297BA9E26FA678 /* UserScript.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = UserScript.swift; path = "../../../../../../../../../../../.pub-cache/hosted/pub.dev/flutter_inappwebview-5.8.0/ios/Classes/Types/UserScript.swift"; sourceTree = ""; }; + DDA299210B110CB4DB321472F76C8D9C /* InAppWebViewMethodHandler.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = InAppWebViewMethodHandler.swift; path = "../../../../../../../../../../.pub-cache/hosted/pub.dev/flutter_inappwebview-5.8.0/ios/Classes/InAppWebViewMethodHandler.swift"; sourceTree = ""; }; DDBCF8EDA1917A5BF8FF4AD0599A848A /* SentryError.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SentryError.h; path = Sources/Sentry/Public/SentryError.h; sourceTree = ""; }; DDE10DB14C5ECBCA470DC38E17587A8A /* SentryWatchdogTerminationTracker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SentryWatchdogTerminationTracker.h; path = Sources/Sentry/include/SentryWatchdogTerminationTracker.h; sourceTree = ""; }; DDF9D18F0A78CBF6827A43AE02A11B6E /* SentryProfilerTestHelpers.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SentryProfilerTestHelpers.h; path = Sources/Sentry/include/SentryProfilerTestHelpers.h; sourceTree = ""; }; + DE0E6D0E76E077F56FC8E9332CDB74A4 /* ResourceBundle-share_plus_privacy-share_plus-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "ResourceBundle-share_plus_privacy-share_plus-Info.plist"; sourceTree = ""; }; DE23528693D9EF82F59E808DC357BE3B /* SentryStackBounds.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = SentryStackBounds.hpp; path = Sources/Sentry/include/SentryStackBounds.hpp; sourceTree = ""; }; DE53F4F80DBECC484467B4DDD3144679 /* SentryThreadState.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = SentryThreadState.hpp; path = Sources/Sentry/include/SentryThreadState.hpp; sourceTree = ""; }; - DE71A59998DEBF140B4120E043AC6349 /* mobile_scanner-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "mobile_scanner-dummy.m"; sourceTree = ""; }; DEAB66DF15F23DF0551BB319AD3969C0 /* SentrySystemEventBreadcrumbs.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SentrySystemEventBreadcrumbs.m; path = Sources/Sentry/SentrySystemEventBreadcrumbs.m; sourceTree = ""; }; - DED3FFFD78288FF0B9B9C88CDBC72796 /* local_auth_darwin-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "local_auth_darwin-dummy.m"; sourceTree = ""; }; + DED9BEE16168551A03D56EF51078154F /* messages.g.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = messages.g.m; path = "../../../../../../../../../../../../.pub-cache/hosted/pub.dev/image_picker_ios-0.8.12/ios/image_picker_ios/Sources/image_picker_ios/messages.g.m"; sourceTree = ""; }; + DF26DFB15462009B8183757F542F07E6 /* FlutterNativeSplashPlugin.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FlutterNativeSplashPlugin.h; path = "../../../../../../../../../../.pub-cache/hosted/pub.dev/flutter_native_splash-2.4.0/ios/Classes/FlutterNativeSplashPlugin.h"; sourceTree = ""; }; + DF5CB0B28B5ECCDD6FDC8A7B030714BD /* flutter_nekoton_bridge.c */ = {isa = PBXFileReference; includeInIndex = 1; name = flutter_nekoton_bridge.c; path = "../../../../../../../../../../.pub-cache/hosted/pub.dev/flutter_nekoton_bridge-2.0.0/ios/Classes/flutter_nekoton_bridge.c"; sourceTree = ""; }; DF762D62C923422C3239D02876EB7BAB /* SentryCrashBinaryImageCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SentryCrashBinaryImageCache.h; path = Sources/SentryCrash/Recording/SentryCrashBinaryImageCache.h; sourceTree = ""; }; DFC3E0BC794720BE3C746834927B016C /* SentryPixelBuffer.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SentryPixelBuffer.swift; path = Sources/Swift/Integrations/SessionReplay/SentryPixelBuffer.swift; sourceTree = ""; }; - DFFC57A844E7FB0F38C256F61F54290B /* Util.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Util.swift; path = "../../../../../../../../../.pub-cache/hosted/pub.dev/flutter_inappwebview-5.8.0/ios/Classes/Util.swift"; sourceTree = ""; }; DFFEED589A13A6920C364C4F173745C1 /* SentrySwiftAsyncIntegration.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SentrySwiftAsyncIntegration.m; path = Sources/Sentry/SentrySwiftAsyncIntegration.m; sourceTree = ""; }; - E06F50968CD2762355272E22872CD78D /* DetectionSpeed.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = DetectionSpeed.swift; path = "../../../../../../../../../.pub-cache/hosted/pub.dev/mobile_scanner-3.4.1/ios/Classes/DetectionSpeed.swift"; sourceTree = ""; }; - E0A5680C8BC03204BFF246146436700A /* flutter_secure_storage-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "flutter_secure_storage-prefix.pch"; sourceTree = ""; }; + DFFFF28C3D894A9BACC123EF9EDC9BC3 /* flutter_keyboard_visibility-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "flutter_keyboard_visibility-dummy.m"; sourceTree = ""; }; + E006D77E6DC74A8610E6EC72AB4CD61A /* package_info_plus-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "package_info_plus-umbrella.h"; sourceTree = ""; }; + E01D7B3F02E734AC7115492E027971D4 /* path_provider_foundation-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "path_provider_foundation-dummy.m"; sourceTree = ""; }; E0BC09FC89348D096456B29F713E0393 /* SwiftDescriptor.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SwiftDescriptor.swift; path = Sources/Swift/SwiftDescriptor.swift; sourceTree = ""; }; - E11B2F0A99E8ACF2FCDCD4DD84A56535 /* InAppWebViewFlutterPlugin.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = InAppWebViewFlutterPlugin.m; path = "../../../../../../../../../.pub-cache/hosted/pub.dev/flutter_inappwebview-5.8.0/ios/Classes/InAppWebViewFlutterPlugin.m"; sourceTree = ""; }; - E13A84A08DCD1686D5C1AF21CC955FF5 /* local_auth_darwin-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "local_auth_darwin-umbrella.h"; sourceTree = ""; }; + E167B7652C5602C60BC1E17BDAE5B344 /* FLTImagePickerImageUtil.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FLTImagePickerImageUtil.m; path = "../../../../../../../../../../../../.pub-cache/hosted/pub.dev/image_picker_ios-0.8.12/ios/image_picker_ios/Sources/image_picker_ios/FLTImagePickerImageUtil.m"; sourceTree = ""; }; E1687F8E8044C2FDD8590484F2FDF989 /* SentryNoOpSpan.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SentryNoOpSpan.h; path = Sources/Sentry/include/SentryNoOpSpan.h; sourceTree = ""; }; E16BF6A45A7AEEF52F326699D29E21C3 /* SentryCoreDataTracker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SentryCoreDataTracker.h; path = Sources/Sentry/include/SentryCoreDataTracker.h; sourceTree = ""; }; E204B84878155F78928233A674350886 /* external_prequest_context.nanopb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = external_prequest_context.nanopb.c; path = GoogleDataTransport/GDTCCTLibrary/Protogen/nanopb/external_prequest_context.nanopb.c; sourceTree = ""; }; E20B3278F3CC98A2A33043900187DC1D /* GDTCOREndpoints.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCOREndpoints.h; path = GoogleDataTransport/GDTCORLibrary/Public/GoogleDataTransport/GDTCOREndpoints.h; sourceTree = ""; }; E259736A00D1B1FC5290888E057AD64A /* external_prequest_context.nanopb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = external_prequest_context.nanopb.h; path = GoogleDataTransport/GDTCCTLibrary/Protogen/nanopb/external_prequest_context.nanopb.h; sourceTree = ""; }; + E27FCFF1CE2A5C241513D86FB81E4AD4 /* SqfliteDarwinDatabaseAdditions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SqfliteDarwinDatabaseAdditions.h; path = "../../../../../../../../../../.pub-cache/hosted/pub.dev/sqflite-2.3.3+1/darwin/Classes/SqfliteDarwinDatabaseAdditions.h"; sourceTree = ""; }; E2D1F2A1EF2DC34C9FF3EA17A26FA4E3 /* SentryCrashStackCursor.c */ = {isa = PBXFileReference; includeInIndex = 1; name = SentryCrashStackCursor.c; path = Sources/SentryCrash/Recording/Tools/SentryCrashStackCursor.c; sourceTree = ""; }; E2D59994DB2DF47504EA20EBB04953C4 /* MLKitCommon.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = MLKitCommon.debug.xcconfig; sourceTree = ""; }; - E314798A0A07820FA7D756A36DA4B2AC /* WebMessageChannel.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = WebMessageChannel.swift; path = "../../../../../../../../../../.pub-cache/hosted/pub.dev/flutter_inappwebview-5.8.0/ios/Classes/Types/WebMessageChannel.swift"; sourceTree = ""; }; E32E3DB30251F74B6DF6842BB1780952 /* SentryDevice.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = SentryDevice.mm; path = Sources/Sentry/SentryDevice.mm; sourceTree = ""; }; E356B349D86F7E865F9665AF5977D6D4 /* SentryOptions.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SentryOptions.m; path = Sources/Sentry/SentryOptions.m; sourceTree = ""; }; - E38A7AB5EA3A7152A8CFB893C37DED8C /* PrivacyInfo.xcprivacy */ = {isa = PBXFileReference; includeInIndex = 1; name = PrivacyInfo.xcprivacy; path = "../../../../../../../../../../../../.pub-cache/hosted/pub.dev/path_provider_foundation-2.4.0/darwin/path_provider_foundation/Sources/path_provider_foundation/Resources/PrivacyInfo.xcprivacy"; sourceTree = ""; }; - E3A3683FADFEF0AD0C2F7F0C03E8E58D /* local_auth_darwin.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = local_auth_darwin.modulemap; sourceTree = ""; }; E3C330B5F4227ED6FDC9FC042B5115D5 /* flutter_secure_storage-flutter_secure_storage */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; name = "flutter_secure_storage-flutter_secure_storage"; path = flutter_secure_storage.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; E3CB4802FF79C6E7265ACD916FE421C4 /* SentrySubClassFinder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SentrySubClassFinder.h; path = Sources/Sentry/include/SentrySubClassFinder.h; sourceTree = ""; }; E3D37A343A9673CC5B8EEFB11C730266 /* FBLPromise+Catch.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBLPromise+Catch.h"; path = "Sources/FBLPromises/include/FBLPromise+Catch.h"; sourceTree = ""; }; E4045AD77489969ECC817BFC42675AAC /* ResourceBundle-nanopb_Privacy-nanopb-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "ResourceBundle-nanopb_Privacy-nanopb-Info.plist"; sourceTree = ""; }; + E488D200DB706C89186820346F95811C /* messages.g.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = messages.g.swift; path = "../../../../../../../../../../../../.pub-cache/hosted/pub.dev/url_launcher_ios-6.3.0/ios/url_launcher_ios/Sources/url_launcher_ios/messages.g.swift"; sourceTree = ""; }; E48DBAE9707BAB2CA5CA1748C26E6ED5 /* SentryBreadcrumb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SentryBreadcrumb.h; path = Sources/Sentry/Public/SentryBreadcrumb.h; sourceTree = ""; }; - E4B87B692F3DD24C55B8A11F9DF2A035 /* Codec.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Codec.h; path = "../../../../../../../../../../.pub-cache/hosted/pub.dev/permission_handler_apple-9.4.5/ios/Classes/util/Codec.h"; sourceTree = ""; }; E4F59B126D9B52118AEF8996F5218179 /* SentrySessionReplay.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SentrySessionReplay.m; path = Sources/Sentry/SentrySessionReplay.m; sourceTree = ""; }; E531CE389DE1015F813085CB9BBFD8A7 /* SentryCrashReportFixer.c */ = {isa = PBXFileReference; includeInIndex = 1; name = SentryCrashReportFixer.c; path = Sources/SentryCrash/Recording/SentryCrashReportFixer.c; sourceTree = ""; }; - E5BA79A5CBD8535431D7A785289597A8 /* LeakAvoider.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = LeakAvoider.swift; path = "../../../../../../../../../.pub-cache/hosted/pub.dev/flutter_inappwebview-5.8.0/ios/Classes/LeakAvoider.swift"; sourceTree = ""; }; E5DA456B6326B3BAA4DADD6E920EC7FD /* MLKitBarcodeScanning.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = MLKitBarcodeScanning.debug.xcconfig; sourceTree = ""; }; - E5ED39D4498DE49A24D330F3989509D1 /* flutter_keyboard_visibility-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "flutter_keyboard_visibility-prefix.pch"; sourceTree = ""; }; + E5E3E33B0D144B2AE6AB3752D725ABD7 /* Codec.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Codec.h; path = "../../../../../../../../../../../.pub-cache/hosted/pub.dev/permission_handler_apple-9.4.5/ios/Classes/util/Codec.h"; sourceTree = ""; }; E5EF3CAAD340AA1E9FD9993B4540CC45 /* SentryProfilerSerialization.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = SentryProfilerSerialization.mm; path = Sources/Sentry/Profiling/SentryProfilerSerialization.mm; sourceTree = ""; }; E60661A579DE68D24B01997557CA9D82 /* SentryDebugImageProvider.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SentryDebugImageProvider.m; path = Sources/Sentry/SentryDebugImageProvider.m; sourceTree = ""; }; - E6392A73B6B88FA13EA5ABF7C43ACF4E /* sentry_flutter.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = sentry_flutter.debug.xcconfig; sourceTree = ""; }; + E61EFE537889E07B6DA8DB319EDD6503 /* FLTImagePickerMetaDataUtil.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FLTImagePickerMetaDataUtil.m; path = "../../../../../../../../../../../../.pub-cache/hosted/pub.dev/image_picker_ios-0.8.12/ios/image_picker_ios/Sources/image_picker_ios/FLTImagePickerMetaDataUtil.m"; sourceTree = ""; }; E664CBC2CC436C715D0A48E99364A4B5 /* Sentry-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Sentry-prefix.pch"; sourceTree = ""; }; - E67AAD2C42B33570876D906A740FE0A9 /* PrivacyInfo.xcprivacy */ = {isa = PBXFileReference; includeInIndex = 1; name = PrivacyInfo.xcprivacy; path = "../../../../../../../../../../../../.pub-cache/hosted/pub.dev/url_launcher_ios-6.3.0/ios/url_launcher_ios/Sources/url_launcher_ios/Resources/PrivacyInfo.xcprivacy"; sourceTree = ""; }; E6BC829F48445FDCDCF228B6124C7520 /* Pods-Runner.profile-development.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-Runner.profile-development.xcconfig"; sourceTree = ""; }; + E6EE0C9724ADD6798CB63C60D7B54D7D /* url_launcher_ios-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "url_launcher_ios-dummy.m"; sourceTree = ""; }; + E7117D247BACDB138B0C16E5675B4628 /* flutter_inappwebview-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "flutter_inappwebview-prefix.pch"; sourceTree = ""; }; E7EBB3820BC43BFD5AB208A5F02CB4FF /* SentryHttpStatusCodeRange.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SentryHttpStatusCodeRange.m; path = Sources/Sentry/SentryHttpStatusCodeRange.m; sourceTree = ""; }; + E8751A9FB91731B86BF6CF616801081E /* share_plus-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "share_plus-umbrella.h"; sourceTree = ""; }; E889C31DCB0B3615FD5BE5E4F9920523 /* SentryDisplayLinkWrapper.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SentryDisplayLinkWrapper.m; path = Sources/Sentry/include/SentryDisplayLinkWrapper.m; sourceTree = ""; }; - E8A8FAB9D58C8D7FB7519ABB29B92088 /* HttpAuthenticationChallenge.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = HttpAuthenticationChallenge.swift; path = "../../../../../../../../../.pub-cache/hosted/pub.dev/flutter_inappwebview-5.8.0/ios/Classes/HttpAuthenticationChallenge.swift"; sourceTree = ""; }; E8B763AE2BCC68669B8808B285B68A2F /* SentryReachability.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SentryReachability.h; path = Sources/Sentry/include/SentryReachability.h; sourceTree = ""; }; E8CE1A628C6948B7970233E62542AF67 /* Pods-Runner-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-Runner-umbrella.h"; sourceTree = ""; }; E8D51B3CB73AA123A0E935C06F56B554 /* GoogleUtilitiesComponents.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = GoogleUtilitiesComponents.modulemap; sourceTree = ""; }; - E994165DFFCFEFCBBD12F31704039D09 /* PrivacyInfo.xcprivacy */ = {isa = PBXFileReference; includeInIndex = 1; name = PrivacyInfo.xcprivacy; path = "../../../../../../../../../.pub-cache/hosted/pub.dev/sqflite-2.3.3+1/darwin/Resources/PrivacyInfo.xcprivacy"; sourceTree = ""; }; + E952B42D35AE5706F0B0E005721B9D31 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; name = LICENSE; path = "../../../../../../../../../.pub-cache/hosted/pub.dev/path_provider_foundation-2.4.0/LICENSE"; sourceTree = ""; }; + E9556EF7F955C0412768DB4412A6D3F0 /* SqfliteDarwinResultSet.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SqfliteDarwinResultSet.h; path = "../../../../../../../../../../.pub-cache/hosted/pub.dev/sqflite-2.3.3+1/darwin/Classes/SqfliteDarwinResultSet.h"; sourceTree = ""; }; E99BAF9523554157A9FE59D9F338B979 /* SentryThreadInspector.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SentryThreadInspector.m; path = Sources/Sentry/SentryThreadInspector.m; sourceTree = ""; }; + E99D6BC64B949B625195037B91A433CD /* ServerTrustChallenge.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ServerTrustChallenge.swift; path = "../../../../../../../../../../../.pub-cache/hosted/pub.dev/flutter_inappwebview-5.8.0/ios/Classes/Types/ServerTrustChallenge.swift"; sourceTree = ""; }; + E9AC06F6A1479E75E5C1AF0926AB96F3 /* PrivacyInfo.xcprivacy */ = {isa = PBXFileReference; includeInIndex = 1; name = PrivacyInfo.xcprivacy; path = "../../../../../../../../../../.pub-cache/hosted/pub.dev/flutter_email_sender-6.0.3/ios/Resources/PrivacyInfo.xcprivacy"; sourceTree = ""; }; E9AC41459A20C020CD398D86C757A23B /* SentryUser.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SentryUser.h; path = Sources/Sentry/Public/SentryUser.h; sourceTree = ""; }; - E9ACDE7CE1894D6AC6B8F4F32FA07DF5 /* shared_preferences_foundation-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "shared_preferences_foundation-Info.plist"; sourceTree = ""; }; E9DE911F83317E28B59C26B5D94A0216 /* SentryAutoSessionTrackingIntegration.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SentryAutoSessionTrackingIntegration.h; path = Sources/Sentry/include/SentryAutoSessionTrackingIntegration.h; sourceTree = ""; }; - EA2EE51D1EF6A22D2258A4C0A70F4919 /* PlatformUtil.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = PlatformUtil.swift; path = "../../../../../../../../../.pub-cache/hosted/pub.dev/flutter_inappwebview-5.8.0/ios/Classes/PlatformUtil.swift"; sourceTree = ""; }; - EA872055B6A4B731541F91DEFDFDA58F /* url_launcher_ios.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; name = url_launcher_ios.podspec; path = "../../../../../../../../.pub-cache/hosted/pub.dev/url_launcher_ios-6.3.0/ios/url_launcher_ios.podspec"; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + EA265078B145E53326EA87E8EF6EA80B /* flutter_email_sender-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "flutter_email_sender-Info.plist"; sourceTree = ""; }; EA87D7D321D07ACF86FD991F781EA75B /* nanopb-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "nanopb-prefix.pch"; sourceTree = ""; }; EAA266D7F3CDC5B26B124E9DC486A56F /* GULCCComponentType.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULCCComponentType.m; path = GoogleUtilitiesComponents/Sources/GULCCComponentType.m; sourceTree = ""; }; EAAE699127118EFCE1EEE2837E563804 /* SentryDictionaryDeepSearch.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SentryDictionaryDeepSearch.m; path = Sources/SentryCrash/Reporting/Filters/Tools/SentryDictionaryDeepSearch.m; sourceTree = ""; }; EB01BFDB3A5927BD9F77737C92F42672 /* SentryBreadcrumbTracker.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SentryBreadcrumbTracker.m; path = Sources/Sentry/SentryBreadcrumbTracker.m; sourceTree = ""; }; EB1603429A1789010C5BFE1E51D91A6B /* GDTCOREvent+GDTMetricsSupport.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "GDTCOREvent+GDTMetricsSupport.m"; path = "GoogleDataTransport/GDTCCTLibrary/GDTCOREvent+GDTMetricsSupport.m"; sourceTree = ""; }; - EB3B954C4E8996E8CC0DB5554A11D3DC /* ResourceBundle-share_plus_privacy-share_plus-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "ResourceBundle-share_plus_privacy-share_plus-Info.plist"; sourceTree = ""; }; - EB4358CAC2E416D080F76065A1D659BF /* connectivity_plus-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "connectivity_plus-prefix.pch"; sourceTree = ""; }; EB4577EDB0377BACD6732F266E66DBF1 /* SentrySessionReplayIntegration.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SentrySessionReplayIntegration.h; path = Sources/Sentry/include/SentrySessionReplayIntegration.h; sourceTree = ""; }; EBE40E4D113CA48F61F078E3E7449249 /* GDTCORMetrics.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTCORMetrics.m; path = GoogleDataTransport/GDTCORLibrary/GDTCORMetrics.m; sourceTree = ""; }; EC3574CE417F6A81EF8DBA4EFAD838F6 /* SentrySessionCrashedHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SentrySessionCrashedHandler.m; path = Sources/Sentry/SentrySessionCrashedHandler.m; sourceTree = ""; }; EC4B6C3C3A0EFA8A15FD1A33B29968D2 /* SentryException.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SentryException.h; path = Sources/Sentry/Public/SentryException.h; sourceTree = ""; }; - EC74DB937C3A6E7E8F5845329B450F95 /* path_provider_foundation-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "path_provider_foundation-umbrella.h"; sourceTree = ""; }; + EC6646ACA23E42A058E5DE9289781AC4 /* SpeechPermissionStrategy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SpeechPermissionStrategy.m; path = "../../../../../../../../../../../.pub-cache/hosted/pub.dev/permission_handler_apple-9.4.5/ios/Classes/strategies/SpeechPermissionStrategy.m"; sourceTree = ""; }; + EC858837846A4FA0647686BC49F72B38 /* package_info_plus.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = package_info_plus.modulemap; sourceTree = ""; }; + EC8939AAC93F6D8F834AC7120A066C54 /* MobileScanner.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = MobileScanner.swift; path = "../../../../../../../../../../.pub-cache/hosted/pub.dev/mobile_scanner-3.4.1/ios/Classes/MobileScanner.swift"; sourceTree = ""; }; + ECD77C4498C8B5690FAD6D3E053D7AEA /* local_auth_darwin.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = local_auth_darwin.debug.xcconfig; sourceTree = ""; }; ED2E0287CC917C2866AD1C92F30A14EB /* SentryCrashCPU_x86_32.c */ = {isa = PBXFileReference; includeInIndex = 1; name = SentryCrashCPU_x86_32.c; path = Sources/SentryCrash/Recording/Tools/SentryCrashCPU_x86_32.c; sourceTree = ""; }; + ED4CAE2CF7527095838283C547A19349 /* local_auth_darwin-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "local_auth_darwin-Info.plist"; sourceTree = ""; }; ED7F2D04BF278EBD4EE1A5E6E66FFA66 /* SentrySessionTracker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SentrySessionTracker.h; path = Sources/Sentry/include/SentrySessionTracker.h; sourceTree = ""; }; + EDB07A52BBC8FED3BA2B304E0A832090 /* permission_handler_apple-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "permission_handler_apple-prefix.pch"; sourceTree = ""; }; EDCF5482EB2302586BDA1BADA014E1D2 /* SentryViewHierarchy.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SentryViewHierarchy.h; path = Sources/Sentry/include/SentryViewHierarchy.h; sourceTree = ""; }; EE0B7FD52EBCA0FB74A29197126127AF /* SentryNetworkTrackingIntegration.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SentryNetworkTrackingIntegration.h; path = Sources/Sentry/include/SentryNetworkTrackingIntegration.h; sourceTree = ""; }; - EE0D6FA6338EAECC2CF7249DD800B3F1 /* flutter_inappwebview.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; name = flutter_inappwebview.podspec; path = "../../../../../../../../.pub-cache/hosted/pub.dev/flutter_inappwebview-5.8.0/ios/flutter_inappwebview.podspec"; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; EE245FB06DF3387EEA0598B222FEE15E /* SentryProfilerSerialization+Test.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "SentryProfilerSerialization+Test.h"; path = "Sources/Sentry/Profiling/SentryProfilerSerialization+Test.h"; sourceTree = ""; }; - EE536E643CDB89DBCEE92D8C3BA690FF /* ResourceBundle-shared_preferences_foundation_privacy-shared_preferences_foundation-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "ResourceBundle-shared_preferences_foundation_privacy-shared_preferences_foundation-Info.plist"; sourceTree = ""; }; EE58C9BF1A0375C6DFEAE1B3DA740C1A /* SentryCrashMonitor_MachException.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SentryCrashMonitor_MachException.h; path = Sources/SentryCrash/Recording/Monitors/SentryCrashMonitor_MachException.h; sourceTree = ""; }; + EE8CAE6D180F13AA656D7B68D0D3728F /* HttpAuthenticationChallenge.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = HttpAuthenticationChallenge.swift; path = "../../../../../../../../../../.pub-cache/hosted/pub.dev/flutter_inappwebview-5.8.0/ios/Classes/HttpAuthenticationChallenge.swift"; sourceTree = ""; }; EE97AC70388FAD91DCA5FDC194887C97 /* SentryUIDeviceWrapper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SentryUIDeviceWrapper.h; path = Sources/Sentry/include/SentryUIDeviceWrapper.h; sourceTree = ""; }; + EECAC159C73F566285813641A0A1ECAA /* flutter_secure_storage.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = flutter_secure_storage.debug.xcconfig; sourceTree = ""; }; EF11869F11EE0F321FA2359A6155F87C /* GULSecureCoding.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULSecureCoding.m; path = GoogleUtilities/Environment/GULSecureCoding.m; sourceTree = ""; }; - EF22253DE806CFBED5FA9B8474EBD9EA /* FlutterNativeSplashPlugin.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FlutterNativeSplashPlugin.m; path = "../../../../../../../../../.pub-cache/hosted/pub.dev/flutter_native_splash-2.4.0/ios/Classes/FlutterNativeSplashPlugin.m"; sourceTree = ""; }; EF48AE6285907CBE5C3E659BF9F82F35 /* SentryLog.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SentryLog.h; path = Sources/Sentry/include/SentryLog.h; sourceTree = ""; }; EF7112ADEBF94875F2B77CC15BCF1C55 /* SentryFrameRemover.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SentryFrameRemover.h; path = Sources/Sentry/include/SentryFrameRemover.h; sourceTree = ""; }; EFA56AF12A0D81891B3407F1589D48C5 /* SentryCrashMonitor_Signal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SentryCrashMonitor_Signal.h; path = Sources/SentryCrash/Recording/Monitors/SentryCrashMonitor_Signal.h; sourceTree = ""; }; EFA5AA39B67B437AE70B342D8536EA45 /* SentryCrashInstallation+Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "SentryCrashInstallation+Private.h"; path = "Sources/SentryCrash/Installations/SentryCrashInstallation+Private.h"; sourceTree = ""; }; - EFE5CAABA79A4B4E30B617147D990665 /* InAppBrowserDelegate.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = InAppBrowserDelegate.swift; path = "../../../../../../../../../../.pub-cache/hosted/pub.dev/flutter_inappwebview-5.8.0/ios/Classes/InAppBrowser/InAppBrowserDelegate.swift"; sourceTree = ""; }; F01FAF3F8F3DB3C42FE3790E1A12D723 /* SentryPerformanceTrackingIntegration.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SentryPerformanceTrackingIntegration.h; path = Sources/Sentry/include/SentryPerformanceTrackingIntegration.h; sourceTree = ""; }; F026B684B69D3BCD9B93F806B5D46614 /* GTMDebugThreadValidation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GTMDebugThreadValidation.h; path = DebugUtils/GTMDebugThreadValidation.h; sourceTree = ""; }; - F04020A8B50B56CAE4F6F78760726FF2 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; name = LICENSE; path = "../../../../../../../../.pub-cache/hosted/pub.dev/local_auth_darwin-1.3.1/LICENSE"; sourceTree = ""; }; + F0817382371E47726768A14EF7C5E711 /* flutter_native_splash-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "flutter_native_splash-prefix.pch"; sourceTree = ""; }; + F0B52F9D9EA1758519E6890631D05D51 /* url_launcher_ios.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = url_launcher_ios.modulemap; sourceTree = ""; }; F0C7EFBFF01CFAAB52BA74E6CB40CE2C /* image_picker_ios-image_picker_ios_privacy */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; name = "image_picker_ios-image_picker_ios_privacy"; path = image_picker_ios_privacy.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; + F0CBBC2DAF102AD73CC0335DEA958437 /* SqfliteCursor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SqfliteCursor.h; path = "../../../../../../../../../../.pub-cache/hosted/pub.dev/sqflite-2.3.3+1/darwin/Classes/SqfliteCursor.h"; sourceTree = ""; }; F0CC2E7CE85C4F156D620676140EAF8A /* GDTCCTUploadOperation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTCCTUploadOperation.m; path = GoogleDataTransport/GDTCCTLibrary/GDTCCTUploadOperation.m; sourceTree = ""; }; F0EE3EBE67E2912F7CE5F0595FBBAA2F /* FBLPromise+Any.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FBLPromise+Any.m"; path = "Sources/FBLPromises/FBLPromise+Any.m"; sourceTree = ""; }; + F0F07E8CD0DB5A7DE9FE5D96E481F1CF /* connectivity_plus.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = connectivity_plus.debug.xcconfig; sourceTree = ""; }; + F0F69A30C36E2DD6C004A57D4BE20B7D /* sqflite-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "sqflite-dummy.m"; sourceTree = ""; }; F13A9626D8651CB3554340AFE6D2F337 /* GoogleDataTransport.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = GoogleDataTransport.modulemap; sourceTree = ""; }; - F16EECBDF59FF367406198D05A91FEC6 /* PhotoPermissionStrategy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = PhotoPermissionStrategy.m; path = "../../../../../../../../../../.pub-cache/hosted/pub.dev/permission_handler_apple-9.4.5/ios/Classes/strategies/PhotoPermissionStrategy.m"; sourceTree = ""; }; + F173A3865F6AEDB26C737F7484107758 /* InAppWebViewStatic.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = InAppWebViewStatic.swift; path = "../../../../../../../../../../.pub-cache/hosted/pub.dev/flutter_inappwebview-5.8.0/ios/Classes/InAppWebViewStatic.swift"; sourceTree = ""; }; + F1C60D72E00A9ABD9DE9614DE151EF63 /* permission_handler_apple-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "permission_handler_apple-umbrella.h"; sourceTree = ""; }; F1F46D898C30F6CC9869877848C87734 /* SentryStacktrace.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SentryStacktrace.m; path = Sources/Sentry/SentryStacktrace.m; sourceTree = ""; }; F1F661193FA6F6F2DECEE21659AFF669 /* SentryCrashCPU.c */ = {isa = PBXFileReference; includeInIndex = 1; name = SentryCrashCPU.c; path = Sources/SentryCrash/Recording/Tools/SentryCrashCPU.c; sourceTree = ""; }; F20D6482D8FD135C09EC1F39F923CB8F /* GoogleDataTransport-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "GoogleDataTransport-dummy.m"; sourceTree = ""; }; @@ -3103,53 +3092,61 @@ F23935D4F717ECE89EF39337311CFADD /* Pods-Runner-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-Runner-acknowledgements.plist"; sourceTree = ""; }; F264CD6970CA8428C812DDA353BC2AE8 /* SentryGeo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SentryGeo.m; path = Sources/Sentry/SentryGeo.m; sourceTree = ""; }; F265E7CD3AFD8245DD336932322128E3 /* SentryCPU.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SentryCPU.h; path = Sources/Sentry/include/SentryCPU.h; sourceTree = ""; }; - F276C960211155621F8B61C3BE8AB306 /* PermissionHandlerPlugin.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = PermissionHandlerPlugin.m; path = "../../../../../../../../../.pub-cache/hosted/pub.dev/permission_handler_apple-9.4.5/ios/Classes/PermissionHandlerPlugin.m"; sourceTree = ""; }; F29CC2B6EA1A464494861D5AB50C1C98 /* SentryFileContents.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SentryFileContents.m; path = Sources/Sentry/SentryFileContents.m; sourceTree = ""; }; F2BDF2B923BDB6FF2073D24479378FEB /* GoogleDataTransport.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GoogleDataTransport.h; path = GoogleDataTransport/GDTCORLibrary/Public/GoogleDataTransport/GoogleDataTransport.h; sourceTree = ""; }; F339C196E096C6D4A043F05E019D247D /* GDTCORMetricsController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTCORMetricsController.m; path = GoogleDataTransport/GDTCORLibrary/GDTCORMetricsController.m; sourceTree = ""; }; F3521A8D237471295EC57082DCFF69A9 /* GULLoggerLevel.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULLoggerLevel.h; path = GoogleUtilities/Logger/Public/GoogleUtilities/GULLoggerLevel.h; sourceTree = ""; }; - F36098B93192EA92F5ACEB4B227DD976 /* sqflite-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "sqflite-umbrella.h"; sourceTree = ""; }; + F36194840FD2222C0B70430C82AED48C /* flutter_nekoton_bridge.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = flutter_nekoton_bridge.debug.xcconfig; sourceTree = ""; }; F368511666A84D4606A84855651D4B09 /* SentryOptions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SentryOptions.h; path = Sources/Sentry/Public/SentryOptions.h; sourceTree = ""; }; F3A2BB2B059E45E2197808FED5215497 /* SentryUserFeedback.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SentryUserFeedback.m; path = Sources/Sentry/SentryUserFeedback.m; sourceTree = ""; }; + F3AC465488CFBE96FA12C9E4156FB312 /* InAppBrowserDelegate.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = InAppBrowserDelegate.swift; path = "../../../../../../../../../../../.pub-cache/hosted/pub.dev/flutter_inappwebview-5.8.0/ios/Classes/InAppBrowser/InAppBrowserDelegate.swift"; sourceTree = ""; }; + F3BAFA0B70330F234C6B8BF559E7A252 /* flutter_inappwebview.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = flutter_inappwebview.release.xcconfig; sourceTree = ""; }; F3C4A8A067600D5CB9C6E06272A801BC /* SentrySpan.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SentrySpan.h; path = Sources/Sentry/include/SentrySpan.h; sourceTree = ""; }; - F3D75BC1CCB38990B39E8B43CA5907A5 /* PermissionManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = PermissionManager.m; path = "../../../../../../../../../.pub-cache/hosted/pub.dev/permission_handler_apple-9.4.5/ios/Classes/PermissionManager.m"; sourceTree = ""; }; - F3DFC04477C14ED5812BC6FDB5389702 /* WKWindowFeatures.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = WKWindowFeatures.swift; path = "../../../../../../../../../../.pub-cache/hosted/pub.dev/flutter_inappwebview-5.8.0/ios/Classes/Types/WKWindowFeatures.swift"; sourceTree = ""; }; - F3FA80221A20AB6E73FFDEE10540F079 /* url_launcher_ios.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = url_launcher_ios.modulemap; sourceTree = ""; }; + F419FA65A0CC37678FB11816ED21F143 /* FlutterWebViewController.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = FlutterWebViewController.swift; path = "../../../../../../../../../../../.pub-cache/hosted/pub.dev/flutter_inappwebview-5.8.0/ios/Classes/InAppWebView/FlutterWebViewController.swift"; sourceTree = ""; }; + F43FB3FF02053F3FBC9D0184C04F584F /* MyWebStorageManager.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = MyWebStorageManager.swift; path = "../../../../../../../../../../.pub-cache/hosted/pub.dev/flutter_inappwebview-5.8.0/ios/Classes/MyWebStorageManager.swift"; sourceTree = ""; }; F443E0A80380DEB0FFA45DB3CED4C78D /* SentrySwizzle.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SentrySwizzle.m; path = Sources/Sentry/SentrySwizzle.m; sourceTree = ""; }; - F48B843ED6FB9E48254C899800B5603B /* url_launcher_ios-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "url_launcher_ios-Info.plist"; sourceTree = ""; }; F4909BD364F000B5755DD2FAD22C05BA /* flutter_nekoton_bridge */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = flutter_nekoton_bridge; path = flutter_nekoton_bridge.framework; sourceTree = BUILT_PRODUCTS_DIR; }; - F4C3D5A980B27BD2C418D61228F67F01 /* package_info_plus.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = package_info_plus.release.xcconfig; sourceTree = ""; }; + F4B35548980E21E935D2D42BB43476D4 /* AssistantPermissionStrategy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = AssistantPermissionStrategy.m; path = "../../../../../../../../../../../.pub-cache/hosted/pub.dev/permission_handler_apple-9.4.5/ios/Classes/strategies/AssistantPermissionStrategy.m"; sourceTree = ""; }; F4D9B67712C76CAA954AFCDE97CF4FF0 /* LocalMetricsAggregator.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = LocalMetricsAggregator.swift; path = Sources/Swift/Metrics/LocalMetricsAggregator.swift; sourceTree = ""; }; + F4F2F4AC3B87F7672B35705CDCCB4686 /* EnableViewportScaleJS.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = EnableViewportScaleJS.swift; path = "../../../../../../../../../../../.pub-cache/hosted/pub.dev/flutter_inappwebview-5.8.0/ios/Classes/PluginScriptsJS/EnableViewportScaleJS.swift"; sourceTree = ""; }; F507103DFA665F1BADD4612D622C3ACC /* SentryBuildAppStartSpans.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SentryBuildAppStartSpans.m; path = Sources/Sentry/SentryBuildAppStartSpans.m; sourceTree = ""; }; F53D1A7E59A6937159C5354BC3E66E2E /* SentryDispatchFactory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SentryDispatchFactory.h; path = Sources/Sentry/include/SentryDispatchFactory.h; sourceTree = ""; }; - F596F057CA1AE7F19DE99FC14F24C2D9 /* integration_test-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "integration_test-umbrella.h"; sourceTree = ""; }; + F5903D2BDF989D0F5B00B4EB065953D8 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; name = LICENSE; path = "../../../../../../../../../.pub-cache/hosted/pub.dev/flutter_inappwebview-5.8.0/LICENSE"; sourceTree = ""; }; F5A51BA5F80C4BCA1612173C3266DC20 /* SentryHttpDateParser.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SentryHttpDateParser.h; path = Sources/Sentry/include/SentryHttpDateParser.h; sourceTree = ""; }; F5B6E4319120E80FC5300233F5FA3326 /* GDTCCTCompressionHelper.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTCCTCompressionHelper.m; path = GoogleDataTransport/GDTCCTLibrary/GDTCCTCompressionHelper.m; sourceTree = ""; }; F5EB28E53B3AA94DEBC148DF055F6B17 /* Pods-Runner.profile-production.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-Runner.profile-production.xcconfig"; sourceTree = ""; }; F65C239A4A0D793DE746BFA1277F0CE5 /* SentrySampleDecision.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SentrySampleDecision.h; path = Sources/Sentry/Public/SentrySampleDecision.h; sourceTree = ""; }; - F660CCD8BC9A6F575CDC895206D0614B /* WKContentWorld.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = WKContentWorld.swift; path = "../../../../../../../../../../.pub-cache/hosted/pub.dev/flutter_inappwebview-5.8.0/ios/Classes/Types/WKContentWorld.swift"; sourceTree = ""; }; F6910B4246B651A35A3F8F6BC10466C3 /* SentryCrashSysCtl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SentryCrashSysCtl.h; path = Sources/SentryCrash/Recording/Tools/SentryCrashSysCtl.h; sourceTree = ""; }; + F69566DAE9F9C879A66CB81ED7B13590 /* path_provider_foundation.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = path_provider_foundation.debug.xcconfig; sourceTree = ""; }; F6C31727CB27ACF0D3CD4408EE0D8CE9 /* SentrySubClassFinder.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SentrySubClassFinder.m; path = Sources/Sentry/SentrySubClassFinder.m; sourceTree = ""; }; - F6F186682C274CBA0C9D9780F452320F /* SqflitePlugin.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SqflitePlugin.m; path = "../../../../../../../../../.pub-cache/hosted/pub.dev/sqflite-2.3.3+1/darwin/Classes/SqflitePlugin.m"; sourceTree = ""; }; - F71C79064EB5A59A238DF0BFF55C036B /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; name = LICENSE; path = "../../../../../../../../.pub-cache/hosted/pub.dev/flutter_inappwebview-5.8.0/LICENSE"; sourceTree = ""; }; + F6EC6FA97821A9CC7EF39A9FC4DC8C8C /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; name = LICENSE; path = "../../../../../../../../../.pub-cache/hosted/pub.dev/image_picker_ios-0.8.12/LICENSE"; sourceTree = ""; }; + F7130285976BE23DD35928AA9053EE47 /* package_info_plus-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "package_info_plus-Info.plist"; sourceTree = ""; }; + F71C3DCF1E1C70E6CD3BF32EFBDFC461 /* package_info_plus-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "package_info_plus-prefix.pch"; sourceTree = ""; }; F7224246575365262B1CF8743C3FBD93 /* Flutter.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = Flutter.debug.xcconfig; sourceTree = ""; }; F72515A1FEFA1572FD31C19A42121996 /* pb_common.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = pb_common.h; sourceTree = ""; }; F73AA961F4AEFF2B46B00AE435DF6BE3 /* GoogleDataTransport-GoogleDataTransport_Privacy */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; name = "GoogleDataTransport-GoogleDataTransport_Privacy"; path = GoogleDataTransport_Privacy.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; - F74F3DB80AA404D831C6F5861DD4751F /* InAppWebViewFlutterPlugin.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = InAppWebViewFlutterPlugin.h; path = "../../../../../../../../../.pub-cache/hosted/pub.dev/flutter_inappwebview-5.8.0/ios/Classes/InAppWebViewFlutterPlugin.h"; sourceTree = ""; }; - F7FABBE6FE60BA8258CDE5CD94E08B0F /* SqfliteDarwinDB.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SqfliteDarwinDB.h; path = "../../../../../../../../../.pub-cache/hosted/pub.dev/sqflite-2.3.3+1/darwin/Classes/SqfliteDarwinDB.h"; sourceTree = ""; }; F82BC414E18051E5867917D74E969C03 /* SentryCrashVarArgs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SentryCrashVarArgs.h; path = Sources/SentryCrash/Reporting/Filters/Tools/SentryCrashVarArgs.h; sourceTree = ""; }; + F860B634A7BF0DB4DEB82650F4966046 /* FlutterKeyboardVisibilityPlugin.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FlutterKeyboardVisibilityPlugin.h; path = "../../../../../../../../../../.pub-cache/hosted/pub.dev/flutter_keyboard_visibility-5.4.1/ios/Classes/FlutterKeyboardVisibilityPlugin.h"; sourceTree = ""; }; + F8675F43CB9C658FC0B29390FA0563F6 /* LocationPermissionStrategy.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LocationPermissionStrategy.h; path = "../../../../../../../../../../../.pub-cache/hosted/pub.dev/permission_handler_apple-9.4.5/ios/Classes/strategies/LocationPermissionStrategy.h"; sourceTree = ""; }; F8AB892925D12A0F0CF93994868E4179 /* SentryCrashScopeObserver.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SentryCrashScopeObserver.h; path = Sources/Sentry/include/SentryCrashScopeObserver.h; sourceTree = ""; }; + F8D0813EB02AB40EE5DA2869F98A7D1F /* SafariBrowserOptions.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SafariBrowserOptions.swift; path = "../../../../../../../../../../../.pub-cache/hosted/pub.dev/flutter_inappwebview-5.8.0/ios/Classes/SafariViewController/SafariBrowserOptions.swift"; sourceTree = ""; }; F9359C05FB408922AF35E6803C867BFE /* NSURLSession+GULPromises.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSURLSession+GULPromises.m"; path = "GoogleUtilities/Environment/URLSessionPromiseWrapper/NSURLSession+GULPromises.m"; sourceTree = ""; }; F95195C323F3E7C6A1712F78ABA4EF36 /* SentryEnvelopeRateLimit.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SentryEnvelopeRateLimit.m; path = Sources/Sentry/SentryEnvelopeRateLimit.m; sourceTree = ""; }; F98F96A7C075AC6F4B2037504F5C0321 /* GULKeychainStorage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULKeychainStorage.h; path = GoogleUtilities/Environment/Public/GoogleUtilities/GULKeychainStorage.h; sourceTree = ""; }; - FA0DD163EC52D45E22B5B2832002F3B2 /* ClientCertChallenge.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ClientCertChallenge.swift; path = "../../../../../../../../../../.pub-cache/hosted/pub.dev/flutter_inappwebview-5.8.0/ios/Classes/Types/ClientCertChallenge.swift"; sourceTree = ""; }; + F9DD14D1F0CC50FF760B336935910139 /* flutter_keyboard_visibility-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "flutter_keyboard_visibility-prefix.pch"; sourceTree = ""; }; + F9F252ACFB155ACF9BB56FB267880E01 /* url_launcher_ios.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = url_launcher_ios.release.xcconfig; sourceTree = ""; }; + FA1779EEA8F9A6A5DC462192D6945C64 /* ClientCertChallenge.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ClientCertChallenge.swift; path = "../../../../../../../../../../../.pub-cache/hosted/pub.dev/flutter_inappwebview-5.8.0/ios/Classes/Types/ClientCertChallenge.swift"; sourceTree = ""; }; FA2FD8E7057D6F6741C01295F2C66C3D /* GDTCORLogSourceMetrics.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTCORLogSourceMetrics.m; path = GoogleDataTransport/GDTCORLibrary/GDTCORLogSourceMetrics.m; sourceTree = ""; }; + FAB4F397430C0F4E9A1699E34EB56D8B /* URLRequest.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = URLRequest.swift; path = "../../../../../../../../../../../.pub-cache/hosted/pub.dev/flutter_inappwebview-5.8.0/ios/Classes/Types/URLRequest.swift"; sourceTree = ""; }; FB1726EC71396C4697B4BB07A4F2C7F5 /* SentrySysctl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SentrySysctl.h; path = Sources/Sentry/include/SentrySysctl.h; sourceTree = ""; }; + FB23FDB6605E48398CC1A6C08C32BB22 /* PromisePolyfillJS.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = PromisePolyfillJS.swift; path = "../../../../../../../../../../../.pub-cache/hosted/pub.dev/flutter_inappwebview-5.8.0/ios/Classes/PluginScriptsJS/PromisePolyfillJS.swift"; sourceTree = ""; }; + FB392AD594041D414134E0A51014BFDF /* FindTextHighlightJS.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = FindTextHighlightJS.swift; path = "../../../../../../../../../../../.pub-cache/hosted/pub.dev/flutter_inappwebview-5.8.0/ios/Classes/PluginScriptsJS/FindTextHighlightJS.swift"; sourceTree = ""; }; FB42A217170A295E7B9D979509DA77AD /* GULLogger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULLogger.h; path = GoogleUtilities/Logger/Public/GoogleUtilities/GULLogger.h; sourceTree = ""; }; + FB633F8BFD9D6596E94916C974E76A66 /* flutter_email_sender.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = flutter_email_sender.debug.xcconfig; sourceTree = ""; }; FB97A34D461A2E8D6FF382B7E78FD756 /* SentryDefines.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SentryDefines.h; path = Sources/Sentry/Public/SentryDefines.h; sourceTree = ""; }; + FBB7AF13154D32DBBBA1410AE29859B3 /* WKUserContentController.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = WKUserContentController.swift; path = "../../../../../../../../../../../.pub-cache/hosted/pub.dev/flutter_inappwebview-5.8.0/ios/Classes/Types/WKUserContentController.swift"; sourceTree = ""; }; FBC278FC1AF29B6623D40E4F0553472F /* cct.nanopb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cct.nanopb.h; path = GoogleDataTransport/GDTCCTLibrary/Protogen/nanopb/cct.nanopb.h; sourceTree = ""; }; FBDC675195352E5D986EC4E8F2B7ADDE /* SentryPerformanceTracker.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SentryPerformanceTracker.m; path = Sources/Sentry/SentryPerformanceTracker.m; sourceTree = ""; }; - FBDD88A9882E0342FCD0318922EF6BE9 /* share_plus-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "share_plus-dummy.m"; sourceTree = ""; }; FBE8F02CFF74C1E76D8E43F3A17BE1A5 /* SentryPredicateDescriptor.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SentryPredicateDescriptor.m; path = Sources/Sentry/SentryPredicateDescriptor.m; sourceTree = ""; }; FC0FBFF18FDA11080C3ECB036AC3FD7F /* GDTCOREventDataObject.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCOREventDataObject.h; path = GoogleDataTransport/GDTCORLibrary/Public/GoogleDataTransport/GDTCOREventDataObject.h; sourceTree = ""; }; FC316CE7F31D0C131BDB442923496E1C /* SentryBaggage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SentryBaggage.h; path = Sources/Sentry/include/SentryBaggage.h; sourceTree = ""; }; @@ -3159,58 +3156,64 @@ FC96809E197146393C9BE61D43DB11C9 /* SentryANRTrackingIntegration.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SentryANRTrackingIntegration.m; path = Sources/Sentry/SentryANRTrackingIntegration.m; sourceTree = ""; }; FCDE1713AED7BEBD5103914A1FCF47A2 /* SentryNSError.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SentryNSError.h; path = Sources/Sentry/Public/SentryNSError.h; sourceTree = ""; }; FCEF64DA164E6D2288C8A700BA99E0CC /* SentryDelayedFramesTracker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SentryDelayedFramesTracker.h; path = Sources/Sentry/include/SentryDelayedFramesTracker.h; sourceTree = ""; }; + FD2D219A53B8269F175E42DFBD738F59 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; name = LICENSE; path = "../../../../../../../../../.pub-cache/hosted/pub.dev/sentry_flutter-7.20.2/LICENSE"; sourceTree = ""; }; + FD5ABE35CBDE691E5E25E5D64C4FB758 /* connectivity_plus.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; name = connectivity_plus.podspec; path = "../../../../../../../../../.pub-cache/hosted/pub.dev/connectivity_plus-6.0.5/darwin/connectivity_plus.podspec"; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; FD643AD9A4F27A09E4059E41E41B66AF /* external_privacy_context.nanopb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = external_privacy_context.nanopb.c; path = GoogleDataTransport/GDTCCTLibrary/Protogen/nanopb/external_privacy_context.nanopb.c; sourceTree = ""; }; - FD654943BA5EDB9A3A7C1B5982564FCA /* PrivacyInfo.xcprivacy */ = {isa = PBXFileReference; includeInIndex = 1; name = PrivacyInfo.xcprivacy; path = "../../../../../../../../.pub-cache/hosted/pub.dev/share_plus-9.0.0/ios/PrivacyInfo.xcprivacy"; sourceTree = ""; }; - FD6607AA8A6E9E0FA2124B55E6414517 /* messages.g.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = messages.g.swift; path = "../../../../../../../../../../../.pub-cache/hosted/pub.dev/shared_preferences_foundation-2.4.0/darwin/shared_preferences_foundation/Sources/shared_preferences_foundation/messages.g.swift"; sourceTree = ""; }; FD76FE911C929A11BD85F73B36EC8F58 /* SentrySessionReplayIntegration+Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "SentrySessionReplayIntegration+Private.h"; path = "Sources/Sentry/include/SentrySessionReplayIntegration+Private.h"; sourceTree = ""; }; FD7EDBBADCB81D56306E4B1526A54570 /* SentrySwizzleWrapper.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SentrySwizzleWrapper.m; path = Sources/Sentry/SentrySwizzleWrapper.m; sourceTree = ""; }; + FDEE844294408B42D71BA268CBCF825F /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; name = LICENSE; path = "../../../../../../../../../.pub-cache/hosted/pub.dev/mobile_scanner-3.4.1/LICENSE"; sourceTree = ""; }; + FE07DEE03B0ED4C45FDEB630488C8B62 /* OnLoadResourceJS.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = OnLoadResourceJS.swift; path = "../../../../../../../../../../../.pub-cache/hosted/pub.dev/flutter_inappwebview-5.8.0/ios/Classes/PluginScriptsJS/OnLoadResourceJS.swift"; sourceTree = ""; }; FE5C3B02302BE4DBC83D2A553D5F5C1B /* MLKitVision.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = MLKitVision.release.xcconfig; sourceTree = ""; }; FE6C3F704548C165819DA7AD04191F22 /* SentryPropagationContext.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SentryPropagationContext.h; path = Sources/Sentry/SentryPropagationContext.h; sourceTree = ""; }; + FE7720A642B74B8235FEBEC0016D014B /* ResourceBundle-path_provider_foundation_privacy-path_provider_foundation-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "ResourceBundle-path_provider_foundation_privacy-path_provider_foundation-Info.plist"; sourceTree = ""; }; FE7EC2DEC1397650248A42AB64D4CF94 /* SentryFileManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SentryFileManager.m; path = Sources/Sentry/SentryFileManager.m; sourceTree = ""; }; FEFB384BD135E34F8CB4C83E502E5EEB /* SentryNSDataSwizzling.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SentryNSDataSwizzling.h; path = Sources/Sentry/include/SentryNSDataSwizzling.h; sourceTree = ""; }; FEFE3000BEFA7DD280C618C38D6F0BDA /* SentryScopeObserver.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SentryScopeObserver.h; path = Sources/Sentry/include/SentryScopeObserver.h; sourceTree = ""; }; FF1D010119FAE010AE6429A119B419F3 /* SentryCrashID.c */ = {isa = PBXFileReference; includeInIndex = 1; name = SentryCrashID.c; path = Sources/SentryCrash/Recording/Tools/SentryCrashID.c; sourceTree = ""; }; FF262AD8A92F07E159AF4091A42609F7 /* GDTCORLifecycle.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTCORLifecycle.m; path = GoogleDataTransport/GDTCORLibrary/GDTCORLifecycle.m; sourceTree = ""; }; FF4EBB3D3A0ECC5B888FC600B47CF801 /* GDTCORPlatform.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTCORPlatform.m; path = GoogleDataTransport/GDTCORLibrary/GDTCORPlatform.m; sourceTree = ""; }; - FFF90697DD9F42A70FCCA4B97AC19F5E /* DownloadStartRequest.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = DownloadStartRequest.swift; path = "../../../../../../../../../../.pub-cache/hosted/pub.dev/flutter_inappwebview-5.8.0/ios/Classes/Types/DownloadStartRequest.swift"; sourceTree = ""; }; + FFDBCC16D16E929114849A2CFDD9F5C9 /* flutter_nekoton_bridge-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "flutter_nekoton_bridge-dummy.m"; sourceTree = ""; }; /* End PBXFileReference section */ /* Begin PBXFrameworksBuildPhase section */ - 053436CC3FEF9DF7CA3F909B89106313 /* Frameworks */ = { + 00F00AE2B4555189C424AC25D11A9392 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( + A6E2BD083A77046BF51552B90331BC0D /* Foundation.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - 08CAA7FC1C560A0ABA741FB851578FDA /* Frameworks */ = { + 01EE2D1149309F95D94BDD5B2F6927A0 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( + D5F54136AEED20DE306612232AC99B94 /* Foundation.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - 0DDD60DD39C5FC5BC23D912E010E1BB7 /* Frameworks */ = { + 08D469DB1025D25D064EA798307E30B9 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - 716DB7315A425415EAA5C613F8209DFA /* Foundation.framework in Frameworks */, + 82F8869E63CD9A8D69CA3C24A98B6399 /* Foundation.framework in Frameworks */, + 94FE36329EB54EB2D9AF0D83AF6F8254 /* Security.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - 0DEF65723DCF8C673D7780F411EAFD83 /* Frameworks */ = { + 0DDD60DD39C5FC5BC23D912E010E1BB7 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - ACEFCDC042B95AE7E1AC1BB3727532F2 /* Foundation.framework in Frameworks */, + 716DB7315A425415EAA5C613F8209DFA /* Foundation.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - 0F3BD4DEEE3299534C7E41DF8DDA1E7F /* Frameworks */ = { + 0DEF65723DCF8C673D7780F411EAFD83 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - A73DCEB5422BE7343D5392034B639621 /* Foundation.framework in Frameworks */, + ACEFCDC042B95AE7E1AC1BB3727532F2 /* Foundation.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -3230,6 +3233,13 @@ ); runOnlyForDeploymentPostprocessing = 0; }; + 12DC921751FD9F840A32503A2D801EC8 /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; 154FF8ABECA41957C9DAFCB6C1F8C14A /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; @@ -3239,7 +3249,7 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 216F266823B6D2FD93FD33251D379A2F /* Frameworks */ = { + 1CD0DF10A5C70EBAE2BE7EFAEEC97DA7 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( @@ -3255,26 +3265,25 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 2D5A71B49878DC5564C9BFC9839735AB /* Frameworks */ = { + 225D1C5BA0707722835C1DE52747F407 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - 28670C199FA66A67A958F438448EA7EC /* Foundation.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - 2E565AABDCD484DA9D80A612C493F06E /* Frameworks */ = { + 2D5A71B49878DC5564C9BFC9839735AB /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( + 28670C199FA66A67A958F438448EA7EC /* Foundation.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - 38405B154AC8144D94D7B400F180D404 /* Frameworks */ = { + 3482F5ADB2B68BE8662458157D98076D /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - 2241EAC41A340D17E11110B171A139D1 /* Foundation.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -3286,60 +3295,50 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 3D9190786EBF20B758D608E40B379CC7 /* Frameworks */ = { - isa = PBXFrameworksBuildPhase; - buildActionMask = 2147483647; - files = ( - DBF0F68B867B6DC93702599D1EDD96D5 /* Foundation.framework in Frameworks */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 404C18F7BB75E7FB454777CF2FB62AD4 /* Frameworks */ = { + 456EA39029ABC8AF4C3441814F19B4BE /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 4D8C1EA16A96768A62C0F2AC571FB02C /* Frameworks */ = { + 45C24311EA0D82701B2C937FC14D9253 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 55DC509AB22DB1FD22C523D5DF629B67 /* Frameworks */ = { + 47370933ABA4C8608595E14FB74A7FF5 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 58EB5A9DF5DE66BDAE1EC6A22276C23A /* Frameworks */ = { + 48F884B79502C733EB46AD55801E8ABA /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - 2D1D7D8CAC921512F242DAA17700CD83 /* Foundation.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - 64C5C1693D05EE62BCDF07ECB0E29D71 /* Frameworks */ = { + 590B9EA952A3D22B0ACD2995D8DFB6B9 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( + 8F1E60CEDBA3A065656410B0910FB91E /* Foundation.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - 67A8A060CD9D9F0D627C3C671D991ED6 /* Frameworks */ = { + 62F72B00F15D895D9011FB5658ADB3ED /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - E4CD9C834390CD064607753306815FC4 /* Foundation.framework in Frameworks */, - 99B05FC51F5552A2B0B0A66A3D441BC0 /* Security.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - 6EC0DCEFE8C378518B38207F1C608167 /* Frameworks */ = { + 6348B91843D2D60CD8A7FE9BF4FE806E /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( @@ -3362,25 +3361,26 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 7F61B3DC992EE6C2F1C3619B22B7CFA5 /* Frameworks */ = { + 85835B1D493FB5DAF5B5B1A73CFF26AD /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( + 90FB758324035734AD7DE0A81566F90E /* Foundation.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - 7FE9E57978D9EC932C6405E68CFFDED1 /* Frameworks */ = { + 86798CE0477E5EF8EA7DCC2ED6F0B0E3 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( + AAD5409D754C1F2E65AD3BEED7A4D696 /* Foundation.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - 85835B1D493FB5DAF5B5B1A73CFF26AD /* Frameworks */ = { + 88A352FACDD5DE425A20CE890AC5A740 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - 90FB758324035734AD7DE0A81566F90E /* Foundation.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -3410,7 +3410,7 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - A38EBD5DBF36CA2D37DBAC92E35CCF0A /* Frameworks */ = { + A5AFA478E12CF079D50D3B4F758765AA /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( @@ -3441,196 +3441,211 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - BCD6F71AD3B8CFE3CBC3063B0DC81520 /* Frameworks */ = { + B898B2D8ED08CFD950E03D99FF28AB16 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - 239FE67D72F0AD5EA92EF7A5F6492A06 /* Foundation.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - C38708DBBC6F8C14C44E9BC20A75D4B6 /* Frameworks */ = { + BCD6F71AD3B8CFE3CBC3063B0DC81520 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - D13271C4FE360330DE7E7424A00E3E54 /* Foundation.framework in Frameworks */, + 239FE67D72F0AD5EA92EF7A5F6492A06 /* Foundation.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - C6AA7E089BDA47C14BBBDFD48BDD0B4A /* Frameworks */ = { + BE4EB37BFC8478FC3E338BB1247D3A74 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - 206EF7C084A77AB1BEF9C08F1C1010AF /* Foundation.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - CDD0F7CD625837E10E5E9912091381B6 /* Frameworks */ = { + BF9E186A3A944DEC9CD197608A81B15C /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - D388475D1139FC980E275D68F49F6569 /* Frameworks */ = { + C3006C8994E4D6D218E49880D5F60613 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - 851B55D4EFB385BB1B90E93EED2815A0 /* Foundation.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - D3A365257CF4CE2D8649E2C4F09F1DF0 /* Frameworks */ = { + C38708DBBC6F8C14C44E9BC20A75D4B6 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - C7A28A3DECAB7F3214DF3925858EB2D9 /* Foundation.framework in Frameworks */, + D13271C4FE360330DE7E7424A00E3E54 /* Foundation.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - D785EB120A4F00CF9B0F381E5F7DA88D /* Frameworks */ = { + C6AA7E089BDA47C14BBBDFD48BDD0B4A /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( + 206EF7C084A77AB1BEF9C08F1C1010AF /* Foundation.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - E47F1F7028C14D6B8AC4F39DACAF8F43 /* Frameworks */ = { + D16FD2ACACD08C718690CC1D225CB1EA /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - C65ED9E91F0D694B26778CA30C7F773A /* Foundation.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - E9CA5D79C44B978FBEAA07BF003CFCEC /* Frameworks */ = { + D388475D1139FC980E275D68F49F6569 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( + 851B55D4EFB385BB1B90E93EED2815A0 /* Foundation.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - EB3E62CDD1259DDE569106046A60885B /* Frameworks */ = { + D3A365257CF4CE2D8649E2C4F09F1DF0 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( + C7A28A3DECAB7F3214DF3925858EB2D9 /* Foundation.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - ED28FF350C1B5B579A7DC3445AED2964 /* Frameworks */ = { + E47F1F7028C14D6B8AC4F39DACAF8F43 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( + C65ED9E91F0D694B26778CA30C7F773A /* Foundation.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - EDB88F3EE02EEBDD2DAA7A905BDAC821 /* Frameworks */ = { + F58A9B6D58584DB815C2EB2E39BD7682 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( + 5522E840795CB5DA989891811E554DC3 /* Foundation.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - F58A9B6D58584DB815C2EB2E39BD7682 /* Frameworks */ = { + FF7BB23CC9E66110AA81C04783A6E6C9 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - 5522E840795CB5DA989891811E554DC3 /* Foundation.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; /* End PBXFrameworksBuildPhase section */ /* Begin PBXGroup section */ - 01435C5E18D7A943D0D4E72FC25BBA07 /* Classes */ = { - isa = PBXGroup; - children = ( - A3E1A80C2D687BC494970260F0A04BD2 /* ContextMenuOptions.swift */, - DC47AA35B073055509BF42538E2555B7 /* CredentialDatabase.swift */, - 7B35B9163141D4D5A48B93618D537C3D /* CustomeSchemeHandler.swift */, - 3D1EB6AA2F48FD6B319F947563F24994 /* FlutterMethodCallDelegate.swift */, - E8A8FAB9D58C8D7FB7519ABB29B92088 /* HttpAuthenticationChallenge.swift */, - F74F3DB80AA404D831C6F5861DD4751F /* InAppWebViewFlutterPlugin.h */, - E11B2F0A99E8ACF2FCDCD4DD84A56535 /* InAppWebViewFlutterPlugin.m */, - D4493C528FD69CCD2BF6CCD59E68EC22 /* InAppWebViewMethodHandler.swift */, - 73FB64E4F71FF6480A0D9C1E23FFCD6B /* InAppWebViewStatic.swift */, - E5BA79A5CBD8535431D7A785289597A8 /* LeakAvoider.swift */, - 002E041E9C8A91C2CDA95A807E85EDB8 /* MyCookieManager.swift */, - 56538AD6108FE3A9F438A1B9F8B4784B /* MyWebStorageManager.swift */, - 4394870251B440C1407E966C52CB86B4 /* Options.swift */, - EA2EE51D1EF6A22D2258A4C0A70F4919 /* PlatformUtil.swift */, - 40DE71780F9494C36B498C407E602FD5 /* SwiftFlutterPlugin.swift */, - DFFC57A844E7FB0F38C256F61F54290B /* Util.swift */, - C85136AA40C1D3E5573AD93B18C30C7B /* WKProcessPoolManager.swift */, - 31E809F3F6D779E828DB8133A71596EC /* HeadlessInAppWebView */, - E2E78829472900B6BBE6C53B193510F3 /* InAppBrowser */, - 3467509105F723A730B25EEE6D18BEA7 /* InAppWebView */, - C1F8E4DC0BE0D2552CDC8D28E7107E56 /* PluginScriptsJS */, - 381082CE9E5FEE6BD5D813D7BAE48E6C /* PullToRefresh */, - 06B0E732149609A7EED53A519EDC2914 /* SafariViewController */, - 5C9C6A6E31E27D81566EA9FD8065FF45 /* Types */, + 00A2B0628D2A6D0DDD5A56AD455DD5B8 /* broxus */ = { + isa = PBXGroup; + children = ( + 1E0B30FF6661DA5CE58311037C762132 /* ever_wallet_flutter_new */, ); - name = Classes; - path = Classes; + name = broxus; + path = broxus; sourceTree = ""; }; - 0153F0ACE584BDCD4F43F2D31A79190F /* sentry_flutter */ = { + 00B9B901DC2DF5B6D8F001C505E659A2 /* .. */ = { isa = PBXGroup; children = ( - 8A310BA168593EDE715335A0B95B3246 /* .. */, - 9A02B9326421695D4BDF88578C93EB74 /* Pod */, - 8638890B769C2B0BA07D8E5817476336 /* Support Files */, + 6FF7BFA3D0C4FFA356ADA950C5032C6A /* .. */, ); - name = sentry_flutter; - path = ../.symlinks/plugins/sentry_flutter/ios; + name = ..; + path = ..; + sourceTree = ""; + }; + 0158AA030AE10CE8E70A342A647443F7 /* Support Files */ = { + isa = PBXGroup; + children = ( + BAC2CA522DF953E8C8FDB70ECFAB8584 /* connectivity_plus.modulemap */, + 81DCA56217E2AE8869DC409CC3E479DD /* connectivity_plus-dummy.m */, + 1A63C891959EB0F21AF9F4D2A16EA73D /* connectivity_plus-Info.plist */, + 50E20F8472DAA36995A13B628B59B8FD /* connectivity_plus-prefix.pch */, + 85B682CD2A2B0AD0D8066B55A5F615C0 /* connectivity_plus-umbrella.h */, + F0F07E8CD0DB5A7DE9FE5D96E481F1CF /* connectivity_plus.debug.xcconfig */, + 0F62AA5AF0EE048AB478074EDD1A2CD4 /* connectivity_plus.release.xcconfig */, + 3A1A4ECDFCE386C8517DA1F48E99D4A5 /* ResourceBundle-connectivity_plus_privacy-connectivity_plus-Info.plist */, + ); + name = "Support Files"; + path = "../../../../Pods/Target Support Files/connectivity_plus"; + sourceTree = ""; + }; + 02FDD4FD8BD1AB5343084AD14FF50D1A /* Sources */ = { + isa = PBXGroup; + children = ( + 491EB9C69E62EC7981E9BC8AC171B4BC /* integration_test */, + ); + name = Sources; + path = Sources; + sourceTree = ""; + }; + 033B73B7B2BAD99C6BAC81912465AFE5 /* ever_wallet_flutter_new */ = { + isa = PBXGroup; + children = ( + F3AA0716D484864D7F21B3AA52494D29 /* ios */, + ); + name = ever_wallet_flutter_new; + path = ever_wallet_flutter_new; sourceTree = ""; }; - 021D8D4E8DF1C9CD913EB05B4A7D76A7 /* .. */ = { + 03823E0B3595DCC8FB1077BD83191E5C /* Resources */ = { isa = PBXGroup; children = ( - DC2C720542D89FF87286ECEF3C19A3F7 /* .. */, - D682F31F70621AABC92C6ADD3C69709B /* Documents */, + 26CC2D9603B42B3FBDBBA9B79821AEBE /* PrivacyInfo.xcprivacy */, + ); + name = Resources; + path = Resources; + sourceTree = ""; + }; + 042C1900703234B67D09392E14015ECF /* .. */ = { + isa = PBXGroup; + children = ( + 547683682653600BAA4228C8883BF038 /* .. */, ); name = ..; path = ..; sourceTree = ""; }; - 02B7BC2DB50571498F7D0E2F35CDB9E0 /* flutter_email_sender */ = { + 047C733C71B723088849A12BF19A9607 /* Sources */ = { isa = PBXGroup; children = ( - D4D3CE18941620A1BE9500FCD5CB88F0 /* .. */, - A2727A1D5D1ADD82C5747EBA41FBF861 /* Pod */, - 093DE481A4042249B42EC35B6968E3C7 /* Support Files */, + 9BD3E90701647983ECC20D85D87988E3 /* image_picker_ios */, ); - name = flutter_email_sender; - path = ../.symlinks/plugins/flutter_email_sender/ios; + name = Sources; + path = Sources; sourceTree = ""; }; - 04011308602EAC328DF0DE9A9A53C399 /* darwin */ = { + 04B246B3F1E923B960AAB1BD132B8490 /* .. */ = { isa = PBXGroup; children = ( - 09C3FE91DC0C19D3B3538458856030C8 /* local_auth_darwin */, + 99939D2F06F1058A8DEC88141F04E4B8 /* Documents */, ); - name = darwin; - path = darwin; + name = ..; + path = ..; sourceTree = ""; }; - 054F818F74E22A357D990BE195303B30 /* .. */ = { + 04F325AD03FBE4B9A74E25F9C2A13DDC /* .. */ = { isa = PBXGroup; children = ( - 4A1C008794B143506B4137FCCD941E5C /* .. */, + BF0EB2AB27775E579D7928DB306B8DB1 /* .. */, ); name = ..; path = ..; sourceTree = ""; }; - 05E0DDBCEE414242C16188832E971D9A /* ever_wallet_flutter_new */ = { + 052083EBCEBAF64F2A4A4F1A2648D23B /* .. */ = { isa = PBXGroup; children = ( - A1533DE4F23E6FA6D39699CA427B573B /* ios */, + 681835E5AC71AEEBD713C302E66A41EF /* .. */, ); - name = ever_wallet_flutter_new; - path = ever_wallet_flutter_new; + name = ..; + path = ..; sourceTree = ""; }; 05FA3158C30E8AEFCE9A174AEA0285C2 /* iOS */ = { @@ -3645,192 +3660,193 @@ name = iOS; sourceTree = ""; }; - 06626432F1E068303CE84FF02EEF05B5 /* .. */ = { + 062C9203CE3B3EA2B167CD3D992B5027 /* image_picker_ios */ = { isa = PBXGroup; children = ( - 9B83E949FB8A4523AF5AA91FA65773C0 /* .. */, + 35BA9188CB4484DF1AAE0A68FC20E4FE /* Sources */, ); - name = ..; - path = "../../../../../../../../.pub-cache/hosted/pub.dev/url_launcher_ios-6.3.0/ios/url_launcher_ios/Sources"; + name = image_picker_ios; + path = image_picker_ios; sourceTree = ""; }; - 06B0E732149609A7EED53A519EDC2914 /* SafariViewController */ = { + 064532E1DD3AAB838414053C431B1255 /* .. */ = { isa = PBXGroup; children = ( - 5CE3A2EE3CB2E7F8919C1CBC5039AB44 /* ChromeSafariBrowserManager.swift */, - 3F32EED31B61D144402BF782E67C0C27 /* SafariBrowserOptions.swift */, - D2F66E9E24FCE57EE5C8254610AB1402 /* SafariViewController.swift */, + 5FE306D3829F407710D2D034F445634E /* .. */, ); - name = SafariViewController; - path = SafariViewController; + name = ..; + path = "../../../../../../../../../.pub-cache/hosted/pub.dev/flutter_native_splash-2.4.0/ios"; sourceTree = ""; }; - 07B1DC9DE6955450BDBFCB4429DE6F40 /* include */ = { + 065738ABFE86DD7E17FC5679776E7AF8 /* .. */ = { isa = PBXGroup; children = ( - DCE1E399864B0153D6940D5994D56219 /* FLTIntegrationTestRunner.h */, - 87EE9D69FF8F370B86357844D3EC8FEC /* IntegrationTestIosTest.h */, - 38ABAE0CDBCB2A856AA1B77F606B2CB0 /* IntegrationTestPlugin.h */, + 0C58AF939684F66B49C892D5241F730C /* .. */, ); - name = include; - path = include; + name = ..; + path = ..; sourceTree = ""; }; - 085223D637FA7258AD5B38AEE22C73F8 /* Support Files */ = { + 070264D2F393E5FF3690E9D26B446F2C /* .. */ = { isa = PBXGroup; children = ( - 2C5957FCE912B5945FE204322A7DE0C5 /* MLKitVision.debug.xcconfig */, - FE5C3B02302BE4DBC83D2A553D5F5C1B /* MLKitVision.release.xcconfig */, + 22140F65B0D4391AFB4251A51049EA28 /* .. */, ); - name = "Support Files"; - path = "../Target Support Files/MLKitVision"; + name = ..; + path = "../../../../../../../../../.pub-cache/hosted/pub.dev/path_provider_foundation-2.4.0/darwin/path_provider_foundation/Sources"; sourceTree = ""; }; - 0869ADF01465B6DDDD79A7178575C965 /* Documents */ = { + 07368BF1BCC272756722FE45C88E878A /* sentry_flutter */ = { isa = PBXGroup; children = ( - D849E94BC6A500378954B749072C2FAB /* projects */, + EBABD90D6E9B2A21FC7A1CAF88929F75 /* .. */, + 8D8501A84A447BA495251DC66C567AC5 /* Pod */, + EF5AA122BA9B00211F4CB8249E960063 /* Support Files */, ); - name = Documents; - path = Documents; + name = sentry_flutter; + path = ../.symlinks/plugins/sentry_flutter/ios; sourceTree = ""; }; - 087F0A66F8D5433C9E7594DAC5B333CB /* .. */ = { + 077963A26D13058C64B11C2D6BAAC883 /* projects */ = { isa = PBXGroup; children = ( - 70DFEFC7D63FA9AA660179642BCAF15C /* .. */, + 119E6F9BF2A1D675332D84A94B84AD49 /* broxus */, ); - name = ..; - path = ..; + name = projects; + path = projects; sourceTree = ""; }; - 08833801CB7FE5CDE6F23DAA9AF4F76B /* Documents */ = { + 08373C2A5FF7FCB772B577D59C13E5DF /* Sources */ = { isa = PBXGroup; children = ( - 1E1B896AD5C4286896A4FD15223CA25C /* projects */, + 6F0744843FF23AE158E04A6E57DE6F91 /* local_auth_darwin */, ); - name = Documents; - path = Documents; + name = Sources; + path = Sources; sourceTree = ""; }; - 08F649B4A31471F70B295F3A09F8F9A1 /* shared_preferences_foundation */ = { + 085223D637FA7258AD5B38AEE22C73F8 /* Support Files */ = { isa = PBXGroup; children = ( - ACA2716E878B40A1062B8A26C8B8F5A8 /* .. */, - B0B5915CD080EC0ABF41EF2F9EB8BD27 /* Pod */, - 8050F58E30FF11C5853419ACEE038E47 /* Support Files */, + 2C5957FCE912B5945FE204322A7DE0C5 /* MLKitVision.debug.xcconfig */, + FE5C3B02302BE4DBC83D2A553D5F5C1B /* MLKitVision.release.xcconfig */, ); - name = shared_preferences_foundation; - path = ../.symlinks/plugins/shared_preferences_foundation/darwin; + name = "Support Files"; + path = "../Target Support Files/MLKitVision"; sourceTree = ""; }; - 08FAC376C98D6E2078D53429CE195C29 /* .. */ = { + 08ED116F61969CFCD73A107D8A2510E7 /* ever_wallet_flutter_new */ = { isa = PBXGroup; children = ( - 8828397560EF9EC29158330BC59122EE /* .. */, - A598C7358F631CBA28337B0FBC103A70 /* Documents */, + 6A186450B752977C69996A8D341B448A /* ios */, ); - name = ..; - path = ..; + name = ever_wallet_flutter_new; + path = ever_wallet_flutter_new; sourceTree = ""; }; - 093DE481A4042249B42EC35B6968E3C7 /* Support Files */ = { + 092997A4441FA29A6C68E2BBF541DFFC /* .symlinks */ = { isa = PBXGroup; children = ( - 183487F45B77A2EDEF4FD5D3FB39E9D6 /* flutter_email_sender.modulemap */, - 8D9CE7555B698593037949399D5F76E9 /* flutter_email_sender-dummy.m */, - DCC02027E52B403828499903F2332B95 /* flutter_email_sender-Info.plist */, - A83F60B7CB5990F0F443C1536CC9BAB5 /* flutter_email_sender-prefix.pch */, - 194B408ABAD03A1FEF4AC4F0201DB0F4 /* flutter_email_sender-umbrella.h */, - 55E516637C2F7465762B5C2428BF50E8 /* flutter_email_sender.debug.xcconfig */, - A7D0232BFA7DB2BABBC206DCBF4E211C /* flutter_email_sender.release.xcconfig */, - C768D27443CB5F659DDD1A6A90584D45 /* ResourceBundle-flutter_email_sender-flutter_email_sender-Info.plist */, + 63E7227ECEBC66C44F031ABBAB3FE495 /* plugins */, ); - name = "Support Files"; - path = "../../../../Pods/Target Support Files/flutter_email_sender"; + name = .symlinks; + path = .symlinks; sourceTree = ""; }; - 09C3FE91DC0C19D3B3538458856030C8 /* local_auth_darwin */ = { + 098F3BD613DD512182A1831DD98DBCA1 /* .. */ = { isa = PBXGroup; children = ( - 4801EA320AC61F5DE9BA91B938F9F38B /* Sources */, + 1268EA8596A742394983861A49ECF9C2 /* .. */, ); - name = local_auth_darwin; - path = local_auth_darwin; + name = ..; + path = "../../../../../../../../../.pub-cache/hosted/pub.dev/sqflite-2.3.3+1/darwin"; sourceTree = ""; }; - 09C7512996EED70B5C9DE197794F9DFB /* .symlinks */ = { + 0AE14A2CADA5770D4F9A02391E6D15B0 /* Pod */ = { isa = PBXGroup; children = ( - C4EE834E8159A5FDBBC27DD56BFE0C4D /* plugins */, + 7F124D58CD0CF6F8C7FDDFD49E2321F0 /* flutter_secure_storage.podspec */, + 68459B178188808C2EF712B931C7976A /* LICENSE */, ); - name = .symlinks; - path = .symlinks; + name = Pod; sourceTree = ""; }; - 0B2142CDEE112BD4B2E6BD0BC249FA74 /* Sources */ = { + 0B4641B60658DDB5EB246FFFC5FDE3E4 /* Support Files */ = { isa = PBXGroup; children = ( - B8990DBF0CE2DBEAF1D962DF8065D64C /* image_picker_ios */, + 2359A5B195E02CE7D3BF765B2D1DF681 /* integration_test.modulemap */, + 3D0061CE65BA57CAA0D9F8DF4AC65B99 /* integration_test-dummy.m */, + B12DDCBBA5FEACF93EA66DFF72014F2C /* integration_test-Info.plist */, + 11E30E151CBD5B5809541ECBA746CB17 /* integration_test-prefix.pch */, + 92529E3AE4C4D2CD8D0B5A86B25DF790 /* integration_test-umbrella.h */, + CC66E79ED8448E0E578E3150D0D34DC5 /* integration_test.debug.xcconfig */, + 5ACA34BFC6EAE3E5A15EE45A206A60FA /* integration_test.release.xcconfig */, ); - name = Sources; - path = Sources; + name = "Support Files"; + path = "../../../../Pods/Target Support Files/integration_test"; sourceTree = ""; }; - 0B2154B947AE4553E41A0BE1705E269F /* .. */ = { + 0C259D2EABBD37DC1A925061656404F4 /* plugins */ = { isa = PBXGroup; children = ( - 7373D2D09E853E48B5885D2C86867EC1 /* .. */, + 5C10E98CF7BBE35BC89CB2D129D72F12 /* url_launcher_ios */, ); - name = ..; - path = ..; + name = plugins; + path = plugins; sourceTree = ""; }; - 0B310AD0075EDC312949B9A2F54188D6 /* .. */ = { + 0C26CD9F69CE988187467C052D116D8E /* broxus */ = { isa = PBXGroup; children = ( - 66A40D64C015349CD21DE447C3C08462 /* .. */, + 684C44CB906827F078E27B8BBFA65C63 /* ever_wallet_flutter_new */, ); - name = ..; - path = ..; + name = broxus; + path = broxus; sourceTree = ""; }; - 0B52A2E3E433C4EE5F4783D2725FE7F8 /* Classes */ = { + 0C31DC38EB5ED1B3D1A7F427B59530CC /* integration_test */ = { isa = PBXGroup; children = ( - 1879F0A7540831E7D2AC7D9DDF37F2B5 /* EnforceBundling.swift */, - AA898B8FF9EAEBC866C7A5809AF52FBA /* flutter_nekoton_bridge.c */, - 1AAB4FF7835FA52AF5768D7967082304 /* frb.h */, + 02FDD4FD8BD1AB5343084AD14FF50D1A /* Sources */, ); - name = Classes; - path = Classes; + name = integration_test; + path = integration_test; sourceTree = ""; }; - 0BEFD4974C7DD0BEADE98AED9DCFEA27 /* .. */ = { + 0C58AF939684F66B49C892D5241F730C /* .. */ = { isa = PBXGroup; children = ( - 263652A6621B8456F32625C79F558CD6 /* Documents */, + CE5BD7A8F6A85A1C006EE4E7D60E2E51 /* .. */, ); name = ..; path = ..; sourceTree = ""; }; - 0D70203CBD61B28168F4FE4DA4C3E771 /* .. */ = { + 0C8449F7F2C9C9BDE142D6CFFFDE21EB /* .. */ = { isa = PBXGroup; children = ( - EEA349D9CA4714423144B8D0E96D75E4 /* .. */, + 4E542BB640112A8C008D65A4543E4EA0 /* .. */, ); name = ..; path = ..; sourceTree = ""; }; - 0E8B9FBEE51F528E18FE5721030A9CD1 /* share_plus */ = { + 0CA8CE666FB7CD654180C9B2C2DB4E4A /* projects */ = { isa = PBXGroup; children = ( - 1715B46EBF507129AD507CEF36401302 /* ios */, + E1DB576C5E47A972D934252EBFBBE271 /* broxus */, ); - name = share_plus; - path = share_plus; + name = projects; + path = projects; + sourceTree = ""; + }; + 0CE093F8D156AA7379CD444A72E6B0D5 /* .. */ = { + isa = PBXGroup; + children = ( + 3986CFA2B51C2682169275993F37E001 /* .. */, + ); + name = ..; + path = ..; sourceTree = ""; }; 0EB11751A9CC926F4C708C1B2CE51380 /* Support Files */ = { @@ -3847,83 +3863,77 @@ path = "../Target Support Files/GoogleUtilitiesComponents"; sourceTree = ""; }; - 0F1D0B187B9B61D779FAEF5E796D0898 /* .symlinks */ = { + 0F0207ABA9338868C37357B603F3B91E /* projects */ = { isa = PBXGroup; children = ( - 10A1634D9A82B33E898D18D949C84D35 /* plugins */, + A52066FA9AEDE620262D006236029FD5 /* broxus */, ); - name = .symlinks; - path = .symlinks; + name = projects; + path = projects; sourceTree = ""; }; - 0F2F72A47BE472EBBA42A6CBDF59CD52 /* Documents */ = { + 0F8F3AB321A224EC620F8D50D867CE04 /* .. */ = { isa = PBXGroup; children = ( - 7706C92C523EC3AEEAABC701714002F6 /* projects */, + 4B327488D6FD7AF85EE79E4DD5280BE2 /* Documents */, ); - name = Documents; - path = Documents; + name = ..; + path = .; sourceTree = ""; }; - 1032A29A01056FFD09B93BD769C8E7B4 /* .. */ = { + 103E46E4FE1D9EDC871A168E97BF69C5 /* ios */ = { isa = PBXGroup; children = ( - CA9CC116AA714586434E6F121BFEF14E /* Documents */, + 188542F9C11AC65149EE5BBCC58A5D50 /* Classes */, ); - name = ..; - path = ..; + name = ios; + path = ios; sourceTree = ""; }; - 10575C3D7FDC69D5EA4197CB4BFEE5C6 /* Support Files */ = { + 10FFE8812ED0A019E0C80DC3FFEABCAE /* darwin */ = { isa = PBXGroup; children = ( - 4D0612DDE8C8F7609B7755E1C9DECBDE /* permission_handler_apple.modulemap */, - 6DAB145DCC86BE217B8CA28E31296D28 /* permission_handler_apple-dummy.m */, - 899B1E2C807041A74C7BEF4D1045ADCD /* permission_handler_apple-Info.plist */, - 91FBC775010073FBCF517D6A5113149F /* permission_handler_apple-prefix.pch */, - 8684EAFD4AE4887DE04C59B5F234F68B /* permission_handler_apple-umbrella.h */, - B8DE548CAFA838CA823CC7535D08316C /* permission_handler_apple.debug.xcconfig */, - 4A911B9FACB388B308D1ABB5669DD583 /* permission_handler_apple.release.xcconfig */, - 0332A861E4177980F02423A9BED0C0C4 /* ResourceBundle-permission_handler_apple_privacy-permission_handler_apple-Info.plist */, + DAA0361404B96EE00C6CA9D26C2ED07C /* shared_preferences_foundation */, ); - name = "Support Files"; - path = "../../../../Pods/Target Support Files/permission_handler_apple"; + name = darwin; + path = darwin; sourceTree = ""; }; - 10A1634D9A82B33E898D18D949C84D35 /* plugins */ = { + 119E6F9BF2A1D675332D84A94B84AD49 /* broxus */ = { isa = PBXGroup; children = ( - B71F9EA891DEBC9334272B0BF7967D1B /* flutter_nekoton_bridge */, + 14CC6600229A241A8A8C39EB791849F6 /* ever_wallet_flutter_new */, ); - name = plugins; - path = plugins; + name = broxus; + path = broxus; sourceTree = ""; }; - 113F34E3469104B0C308671856B1AF42 /* ios */ = { + 11A45BA9C7CEC0EB711841511D721771 /* ios */ = { isa = PBXGroup; children = ( - BB09F130CF73DD1E2CB2F741BD586319 /* integration_test */, + 6E028A712A1BB2E5A271300131A64552 /* Classes */, + 722189D2FDFB3AB46E0386F75724B948 /* Resources */, ); name = ios; path = ios; sourceTree = ""; }; - 11CADE0B246EB814FAEE1200AD61A8D2 /* .. */ = { + 11FDA63D6EAF005478B798D492D5BF0B /* plugins */ = { isa = PBXGroup; children = ( - A58227F2A8A702621959D374ABB204E1 /* .. */, + D2D44A5762B40B2307D0847A3998474B /* share_plus */, ); - name = ..; - path = ..; + name = plugins; + path = plugins; sourceTree = ""; }; - 12190247246F3C3BB224098A472C0A4A /* local_auth_darwin */ = { + 1209DE6702A201D2C2AC3227DFFCB994 /* ever_wallet_flutter_new */ = { isa = PBXGroup; children = ( - 04011308602EAC328DF0DE9A9A53C399 /* darwin */, + D44A4FB5EC34E07F1E00C19C75CAF90A /* ios */, ); - name = local_auth_darwin; - path = local_auth_darwin; + name = ever_wallet_flutter_new; + path = ever_wallet_flutter_new; sourceTree = ""; }; 1221B9D7B317817305A87CA1A6538A58 /* Resources */ = { @@ -3934,387 +3944,367 @@ name = Resources; sourceTree = ""; }; - 12776C0858D1E6EF96576C03A6DA1CE7 /* ever_wallet_flutter_new */ = { + 1268EA8596A742394983861A49ECF9C2 /* .. */ = { isa = PBXGroup; children = ( - 90BEFF52B7C65933FA7B34AA1A2A6C1D /* ios */, + 980BFD56147CA9AF196B0D1B20CFF2A8 /* .. */, ); - name = ever_wallet_flutter_new; - path = ever_wallet_flutter_new; - sourceTree = ""; - }; - 138E362ABE06456E3484705C0C2D855E /* Classes */ = { - isa = PBXGroup; - children = ( - 1F985D15FBDD8B3FDF6763750490369D /* FlutterNativeSplashPlugin.h */, - EF22253DE806CFBED5FA9B8474EBD9EA /* FlutterNativeSplashPlugin.m */, - ); - name = Classes; - path = Classes; + name = ..; + path = ..; sourceTree = ""; }; - 14D835876BB238DEFFF63F1C7CC312EA /* .. */ = { + 12D6569CB9D94B7A67C0D27BA9A6E49D /* projects */ = { isa = PBXGroup; children = ( - 1032A29A01056FFD09B93BD769C8E7B4 /* .. */, + 4AB714D3F63421E64A8DBA62E88C18F3 /* broxus */, ); - name = ..; - path = ..; + name = projects; + path = projects; sourceTree = ""; }; - 1520608046DBCE6ADDB4D410CDEDF602 /* ios */ = { + 12FD342A2CC91D6010CB06B5E6F77001 /* PullToRefresh */ = { isa = PBXGroup; children = ( - DE772664D65E682EC1EC202F1FB6A474 /* .symlinks */, + ABCF247BEE2B624CB2BDDAF5B8CF1A35 /* PullToRefreshControl.swift */, + DA8C511EFE41E12353A86C2B0678166C /* PullToRefreshDelegate.swift */, + A304FAD7D7CD9CD11A567518E3FC788F /* PullToRefreshOptions.swift */, ); - name = ios; - path = ios; + name = PullToRefresh; + path = PullToRefresh; sourceTree = ""; }; - 15E9D24600373CBC336A093A514E76DD /* shared_preferences_foundation */ = { + 1308187D516883EA29167D274FBA3340 /* .symlinks */ = { isa = PBXGroup; children = ( - 2E95D11DBCC4237F20D5F73F8CE84178 /* darwin */, + 3CF15F610735B02C8FF24213C466E7A8 /* plugins */, ); - name = shared_preferences_foundation; - path = shared_preferences_foundation; + name = .symlinks; + path = .symlinks; sourceTree = ""; }; - 168B8FACE5BED14D815A637EA5AABF78 /* .. */ = { + 13999460002D370895EBA9A6650333EE /* broxus */ = { isa = PBXGroup; children = ( - 40881D431B5BFBD7C8E0C794419FB78F /* .. */, + 6BA504028ED9E0727105CBEC4559BFFB /* ever_wallet_flutter_new */, ); - name = ..; - path = ..; + name = broxus; + path = broxus; sourceTree = ""; }; - 168D54A1EBDE2D87FA3FC1069C86C7D3 /* .. */ = { + 1428C7F81B6706C6AA3FEA98E8349F82 /* .. */ = { isa = PBXGroup; children = ( - F162EA1A1EB5331E9497A0C1ADCC9CC2 /* .. */, + DDF08DA4BC5D545A4823A72AD79BC2F5 /* .. */, ); name = ..; path = ..; sourceTree = ""; }; - 1715B46EBF507129AD507CEF36401302 /* ios */ = { + 1447DF536A82E4BAD0709051A969A9EE /* ios */ = { isa = PBXGroup; children = ( - D11CD726DEDB2FB9A6B080D79B9B869D /* Classes */, + 8BC742F5A2DDA629A1A6FDA0454BAF03 /* .symlinks */, ); name = ios; path = ios; sourceTree = ""; }; - 1872FE4C16B8CC3E627909F553A26548 /* .. */ = { + 14CC6600229A241A8A8C39EB791849F6 /* ever_wallet_flutter_new */ = { isa = PBXGroup; children = ( - 0D70203CBD61B28168F4FE4DA4C3E771 /* .. */, + 8C82E91387D85A865E6D35047EEE58C0 /* ios */, ); - name = ..; - path = ../../../../../../../../flutter/packages/integration_test/ios/integration_test/Sources; + name = ever_wallet_flutter_new; + path = ever_wallet_flutter_new; sourceTree = ""; }; - 19D82141F81642670A0E953D3258B52F /* Sources */ = { + 152FF8E6CEE96BF7447FDE86C8367917 /* connectivity_plus */ = { isa = PBXGroup; children = ( - B2F5FCEB5940D372B0E729B8B5439033 /* shared_preferences_foundation */, + A43D986BB68D1636348BE33F86EAA7EF /* darwin */, ); - name = Sources; - path = Sources; + name = connectivity_plus; + path = connectivity_plus; sourceTree = ""; }; - 1A7A21939086A4EFABB4C1E8E07C2B17 /* Sources */ = { + 1598CD083812BC9AE7B8D4FC75FEBBA4 /* sqflite */ = { isa = PBXGroup; children = ( - ED0F832C6F1B3E21979661E6117CE145 /* local_auth_darwin */, + 669236AF44B7837C52380C13A9195034 /* darwin */, ); - name = Sources; - path = Sources; + name = sqflite; + path = sqflite; sourceTree = ""; }; - 1AC019B484BDD4FF3947F45DAE64ABB3 /* ever_wallet_flutter_new */ = { + 1610C40C823EF9523C4F293905AAA652 /* Documents */ = { isa = PBXGroup; children = ( - 4EA9C9EFAB2A7FB310671B302394DDBA /* ios */, + CBAD9BE9CF46E0B1B0952AF3DB976C29 /* projects */, ); - name = ever_wallet_flutter_new; - path = ever_wallet_flutter_new; + name = Documents; + path = Documents; sourceTree = ""; }; - 1C076CDDBD5C0AC475A581A1A5AC945C /* ever_wallet_flutter_new */ = { + 16CFDDB31420BDF9DE976A55EF9AA0F6 /* .. */ = { isa = PBXGroup; children = ( - 34C72604CFB668F21D512699F242E923 /* ios */, + 0C8449F7F2C9C9BDE142D6CFFFDE21EB /* .. */, ); - name = ever_wallet_flutter_new; - path = ever_wallet_flutter_new; + name = ..; + path = ..; sourceTree = ""; }; - 1C132A9329D8079366280B42FD8EBCC2 /* Support Files */ = { + 16D9E8E8FB014471868660A9E57D87CE /* local_auth_darwin */ = { isa = PBXGroup; children = ( - 42910DD90F88B44F488E6BEEFACE001A /* flutter_inappwebview.modulemap */, - 9A38D14397A37F7C4079202D77A7F84D /* flutter_inappwebview-dummy.m */, - 7547A673514D00A1DF31BFC582223160 /* flutter_inappwebview-Info.plist */, - CD9CFB5C753ED0B7CCC721A5EEE1A6E7 /* flutter_inappwebview-prefix.pch */, - 205274A6BF529EC9C42634BDAAB5B69F /* flutter_inappwebview-umbrella.h */, - 9AA91A07D6742747C7B580226E9AAA9B /* flutter_inappwebview.debug.xcconfig */, - 9281357EC3038ADC39C884ED1A1D94E1 /* flutter_inappwebview.release.xcconfig */, + 835950EB528E0AAB91060317937FB716 /* Sources */, ); - name = "Support Files"; - path = "../../../../Pods/Target Support Files/flutter_inappwebview"; + name = local_auth_darwin; + path = local_auth_darwin; sourceTree = ""; }; - 1C2E53ABFB05B189D0BBB74953C75AD3 /* .symlinks */ = { + 1700FC2D773D8356E17041F887E9FACD /* include */ = { isa = PBXGroup; children = ( - CB68AF9A4B8E2A9F0B378CD3705AE2C6 /* plugins */, + E07BEBBB99170511BF0355634CD9FEA4 /* local_auth_darwin */, ); - name = .symlinks; - path = .symlinks; + name = include; + path = include; sourceTree = ""; }; - 1E1B896AD5C4286896A4FD15223CA25C /* projects */ = { + 177564870E1876B9E66E81894F9319DC /* ever_wallet_flutter_new */ = { isa = PBXGroup; children = ( - EE9A4805A1B07BD90D63C598AD3464BB /* ever_wallet_flutter_new */, + 588DE5F2452B8DBCC2EADEC944AB1F17 /* ios */, ); - name = projects; - path = projects; + name = ever_wallet_flutter_new; + path = ever_wallet_flutter_new; sourceTree = ""; }; - 1E6786E7C3CEDB55D4F52CE9B15EB9BA /* .. */ = { + 17F221AD99C38AC9FB67A2BE9398D3EB /* image_picker_ios */ = { isa = PBXGroup; children = ( - D57A3E5AD67213F010891B4828A067AD /* .. */, + 2EECED258426950B4A7ECAD353DB6E44 /* ios */, ); - name = ..; - path = ..; + name = image_picker_ios; + path = image_picker_ios; sourceTree = ""; }; - 1E94E1535E84451CF551A82552A66993 /* ios */ = { + 188542F9C11AC65149EE5BBCC58A5D50 /* Classes */ = { isa = PBXGroup; children = ( - EDF51A130D20AF8CDDC6FC328E74F3E9 /* .symlinks */, + 60E7A887AD84EB0EB1139A01F9DF3F15 /* SentryFlutter.swift */, + 95B947BC8B83F62A5989B560EB54C722 /* SentryFlutterPlugin.h */, + 226983EE58B5E76F8272F93407904185 /* SentryFlutterPlugin.m */, + 9673048CC002D7FE6B86E428E06C1C2E /* SentryFlutterPluginApple.swift */, ); - name = ios; - path = ios; + name = Classes; + path = Classes; sourceTree = ""; }; - 1EF12821BC50E198C2E4AFAF8CE246D2 /* path_provider_foundation */ = { + 19A420E64FC5E5F5E0C110BD3254F9CF /* .. */ = { isa = PBXGroup; children = ( - 3E49D06E6062C73CC1702B858E9053C8 /* .. */, - 54013E4DCBD837B26F9A5F39C1A04D8B /* Pod */, - 8EB3BF89D2E7F7E8381E9B8ACDC56440 /* Support Files */, + DC470C9061E52A3280B40ADDC0C59875 /* Documents */, ); - name = path_provider_foundation; - path = ../.symlinks/plugins/path_provider_foundation/darwin; + name = ..; + path = ..; sourceTree = ""; }; - 1F28E2A087CDFEF8920F7D6D01FDCD32 /* Flutter */ = { + 19D539FE579E0C433E329CBAD1461F97 /* .. */ = { isa = PBXGroup; children = ( - F693C65AA91BA59D8063392FCB9C6D89 /* Pod */, - 47BFBF5BC5C176516A9F1C837C6DAE33 /* Support Files */, + 41E6B585BBE9710085B7D4C57E7EFAD9 /* .. */, ); - name = Flutter; - path = ../Flutter; + name = ..; + path = ..; sourceTree = ""; }; - 1F35446AC9864F42F4AAF4909F9676B5 /* .. */ = { + 1BB22E4C3091C2472C89B8C9B5312983 /* Resources */ = { isa = PBXGroup; children = ( - 396DFB6C9184386F50CC9A19CD73249C /* Documents */, + 05D3B7FC1B5C90B8C6ED72FFB439FA8E /* PrivacyInfo.xcprivacy */, ); - name = ..; - path = .; + name = Resources; + path = Resources; sourceTree = ""; }; - 1F9F3DC881C034B67D22A08865C793E0 /* connectivity_plus */ = { + 1C4F111346DC21DCD8A1A1514673BBDD /* plugins */ = { isa = PBXGroup; children = ( - C1190A8572DA2DECB0D9BF5CD9DDBAE6 /* darwin */, + 8B1E457AD7654D1D9549AA05F66B7B73 /* integration_test */, ); - name = connectivity_plus; - path = connectivity_plus; + name = plugins; + path = plugins; sourceTree = ""; }; - 204CADCEACAAB87C27C319EA61966DED /* Frameworks */ = { + 1E0B30FF6661DA5CE58311037C762132 /* ever_wallet_flutter_new */ = { isa = PBXGroup; children = ( - D6C23FF32B35C8E15BE3FBD8E49037F4 /* NekotonBridge.xcframework */, + C5DD2D159D5EBF8C3217B79DA8F66932 /* ios */, ); - name = Frameworks; + name = ever_wallet_flutter_new; + path = ever_wallet_flutter_new; sourceTree = ""; }; - 20CF4A58D2945F70A7457511A540905C /* projects */ = { + 1EDA2750E0A24FD546FCBB1209C29EE5 /* plugins */ = { isa = PBXGroup; children = ( - 2D7B61B8B956CFDE594D7032F57F324F /* ever_wallet_flutter_new */, + 1598CD083812BC9AE7B8D4FC75FEBBA4 /* sqflite */, ); - name = projects; - path = projects; + name = plugins; + path = plugins; sourceTree = ""; }; - 22382F96DEF29C019F951C2BE03A3A6F /* Resources */ = { + 1F28E2A087CDFEF8920F7D6D01FDCD32 /* Flutter */ = { isa = PBXGroup; children = ( - 7246D6DE594B2308AA230961D858E204 /* PrivacyInfo.xcprivacy */, + F693C65AA91BA59D8063392FCB9C6D89 /* Pod */, + 47BFBF5BC5C176516A9F1C837C6DAE33 /* Support Files */, ); - name = Resources; + name = Flutter; + path = ../Flutter; sourceTree = ""; }; - 2271493B47A1A4B5013614C4E7997E03 /* .symlinks */ = { + 1F766C0DF2CCB25C39AD56004FDF3EE5 /* Support Files */ = { isa = PBXGroup; children = ( - A84091604AED99D1F8FAF218204738F1 /* plugins */, + EC858837846A4FA0647686BC49F72B38 /* package_info_plus.modulemap */, + 0422D1FD2FDB5A7D631672A6E0A9F216 /* package_info_plus-dummy.m */, + F7130285976BE23DD35928AA9053EE47 /* package_info_plus-Info.plist */, + F71C3DCF1E1C70E6CD3BF32EFBDFC461 /* package_info_plus-prefix.pch */, + E006D77E6DC74A8610E6EC72AB4CD61A /* package_info_plus-umbrella.h */, + 381A0F04776BF1B790F21030CA3BB8B3 /* package_info_plus.debug.xcconfig */, + 6201BD6C84B86BD570988C7E3B8409CB /* package_info_plus.release.xcconfig */, + DCA79E7043A9E435F323360F17F120D4 /* ResourceBundle-package_info_plus_privacy-package_info_plus-Info.plist */, ); - name = .symlinks; - path = .symlinks; + name = "Support Files"; + path = "../../../../Pods/Target Support Files/package_info_plus"; sourceTree = ""; }; - 22B39A80DC00A0610C8AC2E12B000B8B /* plugins */ = { + 21100CFC968EAA8C0FA6ECAF220FE27D /* .symlinks */ = { isa = PBXGroup; children = ( - 9DFC2D674FA14E4254C4E47F3E00998A /* flutter_keyboard_visibility */, + E0EDD798B27B552ED7ADFD872E3649F1 /* plugins */, ); - name = plugins; - path = plugins; + name = .symlinks; + path = .symlinks; sourceTree = ""; }; - 23079EBCC75FD7BB906292B2AD877424 /* .. */ = { + 213E3EEE9E22D4F9D2E0D8A8CBFA3F20 /* .. */ = { isa = PBXGroup; children = ( - 35B6AF438332C377D98CD14A5F63CF55 /* Documents */, + 26B102F85A3A33382858CC28FB6FBB02 /* .. */, ); name = ..; path = ..; sourceTree = ""; }; - 232BE5ACF02AE60B0A0882A865CB00B9 /* ios */ = { - isa = PBXGroup; - children = ( - 3F8F8144FF02001EE683491FF0FA84C0 /* .symlinks */, - ); - name = ios; - path = ios; - sourceTree = ""; - }; - 236EAA8A0FC1D544C68FCF34CA462DFD /* .symlinks */ = { + 21D738DA5757DAB3118CA8F0B2915FC3 /* projects */ = { isa = PBXGroup; children = ( - 6CF68344E5E6833D75F30AE3FE85DA55 /* plugins */, + C4FF59D41C000056EFC2690A3C04AFFF /* broxus */, ); - name = .symlinks; - path = .symlinks; + name = projects; + path = projects; sourceTree = ""; }; - 23DDBC40E01FE002A17009ED357AA9E2 /* .. */ = { + 22140F65B0D4391AFB4251A51049EA28 /* .. */ = { isa = PBXGroup; children = ( - 657A0572C758EB2CA6148753E43BEE58 /* .. */, + 2B415182C1441E9F2C1BF28C71326A65 /* .. */, ); name = ..; path = ..; sourceTree = ""; }; - 2491A76958153FE7144D83BBD545A4DF /* Pod */ = { + 22232E47E12A57ED0B56D389A580D509 /* plugins */ = { isa = PBXGroup; children = ( - C9B12CFA25E1E66E3312DC8E997F94CA /* LICENSE */, - 1DEB133FC3CF851DF4F948FFB54C5421 /* permission_handler_apple.podspec */, + B6AE0E7E2368232E3B38B81576260C08 /* flutter_inappwebview */, ); - name = Pod; + name = plugins; + path = plugins; sourceTree = ""; }; - 24B8E43D11632552B51D30C3A7B05B38 /* projects */ = { + 22382F96DEF29C019F951C2BE03A3A6F /* Resources */ = { isa = PBXGroup; children = ( - C727C1C16153A5FA045EDFE1A4EF3274 /* ever_wallet_flutter_new */, + 7246D6DE594B2308AA230961D858E204 /* PrivacyInfo.xcprivacy */, ); - name = projects; - path = projects; + name = Resources; sourceTree = ""; }; - 24DC9A7BFA221B270CEB600B8BA1C602 /* shared_preferences_foundation */ = { + 2247D92575314E4CA6BCEFB27E23731E /* Sources */ = { isa = PBXGroup; children = ( - 57A74FD0FD04EE0C24966620F5DDC72F /* darwin */, + FA0807B1EB2DAA24AEC917551876669D /* shared_preferences_foundation */, ); - name = shared_preferences_foundation; - path = shared_preferences_foundation; + name = Sources; + path = Sources; sourceTree = ""; }; - 24DE32F11C3A05F9C7CD8B8AF4ED40B8 /* .. */ = { + 23E5B2DF29DDC547698434E5EF8F0A43 /* sentry_flutter */ = { isa = PBXGroup; children = ( - 9A9D1C460BA09150E971A05C05E44B6D /* .. */, + 103E46E4FE1D9EDC871A168E97BF69C5 /* ios */, ); - name = ..; - path = ..; + name = sentry_flutter; + path = sentry_flutter; sourceTree = ""; }; - 24E22A76E70BB5AF1DE45BA913862DB0 /* Resources */ = { + 246D79E448D672CB057D80DCD4010048 /* .. */ = { isa = PBXGroup; children = ( - 3A21217B0FA27B578F9E4BE217B7CBFA /* PrivacyInfo.xcprivacy */, + E45C8DFA64CEB7B2CC42BF62E168D480 /* .. */, ); - name = Resources; - path = Resources; + name = ..; + path = ..; sourceTree = ""; }; - 2581E236FFD82BAF7B64603F7CCFE987 /* image_picker_ios */ = { + 2623C0E1D6E96CEF6BA8C6193FEAE389 /* ever_wallet_flutter_new */ = { isa = PBXGroup; children = ( - 99C2BA5E4FA579A33BEEA93A0F309205 /* FLTImagePickerImageUtil.h */, - AB91734617255D1B2F5596C095DBBFC9 /* FLTImagePickerMetaDataUtil.h */, - B58CC1F88925718FAE66E9D39ADB6D5A /* FLTImagePickerPhotoAssetUtil.h */, - 522BCE26A44266BC00C1CA6D9871F13F /* FLTImagePickerPlugin.h */, - DA8FBB6B2E4FD1657B023CF8D372B5B3 /* FLTImagePickerPlugin_Test.h */, - DD4CC6F89B4F2C3742F46E44B5897956 /* FLTPHPickerSaveImageToPathOperation.h */, - 4D77B6557406A6E126288B744AEF66C6 /* messages.g.h */, + F538E966170D2AE17C8058CC63602327 /* ios */, ); - name = image_picker_ios; - path = image_picker_ios; + name = ever_wallet_flutter_new; + path = ever_wallet_flutter_new; sourceTree = ""; }; - 263652A6621B8456F32625C79F558CD6 /* Documents */ = { + 2683AA35C4025CB8558192C4794EC28E /* ios */ = { isa = PBXGroup; children = ( - 20CF4A58D2945F70A7457511A540905C /* projects */, + 4A7F0716D2C2CED2CC863CAB740AF2A3 /* .symlinks */, ); - name = Documents; - path = Documents; + name = ios; + path = ios; sourceTree = ""; }; - 2673852DB092264F5EFB94B933B772D2 /* ios */ = { + 26B102F85A3A33382858CC28FB6FBB02 /* .. */ = { isa = PBXGroup; children = ( - BF7EA574DCD72DF1D9B38D2CB093EC64 /* .symlinks */, + 80F2CC22C08CB9A32CB7DC12C6C9A44C /* .. */, ); - name = ios; - path = ios; + name = ..; + path = ..; sourceTree = ""; }; - 26976F9E42E493BCD9E4F71F6E64C570 /* darwin */ = { + 277046108FEE28F34E8265D8607E10FB /* plugins */ = { isa = PBXGroup; children = ( - 3900EB88C4D04D919D055684C31846B1 /* path_provider_foundation */, + 23E5B2DF29DDC547698434E5EF8F0A43 /* sentry_flutter */, ); - name = darwin; - path = darwin; + name = plugins; + path = plugins; sourceTree = ""; }; - 2716F3C1DBD09072F05E76632111063D /* Documents */ = { + 2779201B5096C342E861D8CE51924014 /* .. */ = { isa = PBXGroup; children = ( - B305278AD896C393F58A9D1DBA85C211 /* projects */, + 63BF5ED8F95C1F0F509ADD97532285D9 /* .. */, ); - name = Documents; - path = ../Documents; + name = ..; + path = ..; sourceTree = ""; }; 27814A70BC2CBACAE453AA2E9466F4CB /* NSString+URLArguments */ = { @@ -4326,79 +4316,67 @@ name = "NSString+URLArguments"; sourceTree = ""; }; - 27B4E40417D89D11CE8C980BE66D35AF /* Support Files */ = { - isa = PBXGroup; - children = ( - AB8C406A113767C6EE6216EF1592793C /* image_picker_ios.modulemap */, - D4D17F1547F4C3E41CD1904D07CBEEBA /* image_picker_ios-dummy.m */, - 7770656C5DBF2562F60F0C1946154607 /* image_picker_ios-Info.plist */, - 79B3CD392E19F24D8240A1AB67E0B175 /* image_picker_ios-prefix.pch */, - 692CE151EB259A1A320BC0593B8D2D93 /* image_picker_ios.debug.xcconfig */, - C782F3D64A5DB279B07DD4535BD2F969 /* image_picker_ios.release.xcconfig */, - 511101F78A8C34B727851E240552656E /* ResourceBundle-image_picker_ios_privacy-image_picker_ios-Info.plist */, - ); - name = "Support Files"; - path = "../../../../Pods/Target Support Files/image_picker_ios"; - sourceTree = ""; - }; - 27F31E0C805E7E929DF98A4EBE479513 /* Documents */ = { + 28242348CA1CEC32B05E0DBCA27F5675 /* broxus */ = { isa = PBXGroup; children = ( - 9E3643F9A14F73773B78851782A1F98F /* projects */, + C1C0E5C8F80EDC5D8FA083125C649F92 /* ever_wallet_flutter_new */, ); - name = Documents; - path = Documents; + name = broxus; + path = broxus; sourceTree = ""; }; - 28A3BEC52D1D1E9FB5B45531FAA00405 /* projects */ = { + 28BAE9EBB0E5917E26A737685DF4A858 /* .. */ = { isa = PBXGroup; children = ( - 05E0DDBCEE414242C16188832E971D9A /* ever_wallet_flutter_new */, + D782F0FEA0675D9B767D7418E53BE30F /* .. */, ); - name = projects; - path = projects; + name = ..; + path = ..; sourceTree = ""; }; - 29ADC60E9A090255060AC308F2E1A9C4 /* plugins */ = { + 2981CD9A7D587F3988F171D657380D6F /* include */ = { isa = PBXGroup; children = ( - DD3EC4FC2346AAC11E7A5EE72E0780A9 /* package_info_plus */, + DACDC4BCC71788BE60EF92C274D0CFC0 /* image_picker_ios-umbrella.h */, + D0F206D97BB26877A6D1AFACD23D37F7 /* image_picker_ios */, ); - name = plugins; - path = plugins; + name = include; + path = include; sourceTree = ""; }; - 2AAC81BCB668B7226E230D87D73C43EC /* permission_handler_apple */ = { + 2AABA95DFDDDFCC648CCD75C0DE51049 /* flutter_native_splash */ = { isa = PBXGroup; children = ( - D78AE21B0EDDBE3FB1C1E6063052EEDD /* ios */, + 064532E1DD3AAB838414053C431B1255 /* .. */, + B0EE412F63F3C544F741BBFF38A49F05 /* Pod */, + 7BEE6BE886115A22F9703792E7BA13FA /* Support Files */, ); - name = permission_handler_apple; - path = permission_handler_apple; + name = flutter_native_splash; + path = ../.symlinks/plugins/flutter_native_splash/ios; sourceTree = ""; }; - 2ADF0C01FFD572B0DF88E5AB6940AE58 /* .. */ = { + 2B415182C1441E9F2C1BF28C71326A65 /* .. */ = { isa = PBXGroup; children = ( - 24DE32F11C3A05F9C7CD8B8AF4ED40B8 /* .. */, + 41F18E9885CDD69D5D5EB3748649038F /* .. */, ); name = ..; path = ..; sourceTree = ""; }; - 2B4F57811C818A55AA68F4D72F29AFD1 /* plugins */ = { + 2B6459504F40166B8976481B6527FC6A /* local_auth_darwin */ = { isa = PBXGroup; children = ( - E84C9DD5C170D4E6AC9DC16A8634FEC4 /* package_info_plus */, + 5D288C63FB11334242D48C9951FF2BFE /* darwin */, ); - name = plugins; - path = plugins; + name = local_auth_darwin; + path = local_auth_darwin; sourceTree = ""; }; - 2BEB13405A28E12EA6B912E3C6C8AF32 /* projects */ = { + 2BD2DB0035212EE2FD888496E6A1FB60 /* projects */ = { isa = PBXGroup; children = ( - AACF8C549939C0D680B9E847ECA70036 /* ever_wallet_flutter_new */, + 40913431D70E83F583E6B572096FD4C9 /* broxus */, ); name = projects; path = projects; @@ -4414,377 +4392,254 @@ path = MLKitCommon; sourceTree = ""; }; - 2BF4CF6EDD6BCB19F1F1143B57EA19A7 /* projects */ = { + 2C6EAB58ADD9F8E5D3E33D589CDFA698 /* .symlinks */ = { isa = PBXGroup; children = ( - C48EC8329A5F4CF1A63129DA8EB1C7F8 /* ever_wallet_flutter_new */, + C95F4EFC7EE24A95BA7093038DEA66E2 /* plugins */, ); - name = projects; - path = projects; - sourceTree = ""; - }; - 2CD460CEC1B3B1142E0F8CF3F62B65F6 /* MLKitCore */ = { - isa = PBXGroup; - children = ( - 10E76D412255ABCE0124DF023FDE848D /* MLKit.h */, - ); - name = MLKitCore; - sourceTree = ""; - }; - 2CE009582FE954A0A97D297342CD1356 /* .. */ = { - isa = PBXGroup; - children = ( - B48434B8C4E2E7291C8E6209C24799D6 /* .. */, - ); - name = ..; - path = "../../../../../../../../.pub-cache/hosted/pub.dev/connectivity_plus-6.0.5/darwin"; - sourceTree = ""; - }; - 2D7B61B8B956CFDE594D7032F57F324F /* ever_wallet_flutter_new */ = { - isa = PBXGroup; - children = ( - 4F8458E0455D55E154344CE0F24687C4 /* ios */, - ); - name = ever_wallet_flutter_new; - path = ever_wallet_flutter_new; + name = .symlinks; + path = .symlinks; sourceTree = ""; }; - 2E48BF3345F7AFA5B08B16AC7FC0B781 /* sentry_flutter */ = { + 2C7B1453C44AC872E8497969BDA160D8 /* Sources */ = { isa = PBXGroup; children = ( - D028B87A6603D7432208003D27D09C52 /* ios */, + A7EAACF445C4C12CBB0330B0CDBE3D9A /* path_provider_foundation */, ); - name = sentry_flutter; - path = sentry_flutter; + name = Sources; + path = Sources; sourceTree = ""; }; - 2E95D11DBCC4237F20D5F73F8CE84178 /* darwin */ = { + 2CD460CEC1B3B1142E0F8CF3F62B65F6 /* MLKitCore */ = { isa = PBXGroup; children = ( - 6721D9CA315BD1D11BE3F8749C356FCC /* shared_preferences_foundation */, + 10E76D412255ABCE0124DF023FDE848D /* MLKit.h */, ); - name = darwin; - path = darwin; + name = MLKitCore; sourceTree = ""; }; - 2EB29B7407E436DC05982AA1F2C614F8 /* .. */ = { + 2DF5B616486A184B049F085115F3F548 /* Classes */ = { isa = PBXGroup; children = ( - 14D835876BB238DEFFF63F1C7CC312EA /* .. */, + BACE3B4661BD79A800FCE799ADECA430 /* BarcodeHandler.swift */, + 32F877D5967B8B505BAA3B8020786688 /* DetectionSpeed.swift */, + EC8939AAC93F6D8F834AC7120A066C54 /* MobileScanner.swift */, + 7380A80DD59DD117058A2FA104D28D3D /* MobileScannerError.swift */, + C7D75F7B89F963626F90754C93424F58 /* MobileScannerPlugin.h */, + C77CADCF64BAE15F4D49E9A9F3B23FF6 /* MobileScannerPlugin.m */, + D52765302E6035E571D54AC067595096 /* MobileScannerUtilities.swift */, + 528EB47381E7DE10DDAC6F9AEB7A6DC5 /* SwiftMobileScannerPlugin.swift */, ); - name = ..; - path = ..; + name = Classes; + path = Classes; sourceTree = ""; }; - 2EB863A3D7B885ED4A9A578C232621F9 /* .. */ = { + 2EECED258426950B4A7ECAD353DB6E44 /* ios */ = { isa = PBXGroup; children = ( - 054F818F74E22A357D990BE195303B30 /* .. */, + 5063DED19CB5BCFAAA3397D5B1CB1BF7 /* image_picker_ios */, ); - name = ..; - path = ..; + name = ios; + path = ios; sourceTree = ""; }; - 2FAE0E016988C5013CD68C42840833A2 /* mobile_scanner */ = { + 2EEE7E810244EDF4A4C564AE9FC0C1BA /* Documents */ = { isa = PBXGroup; children = ( - 4469BECD32358AEE8DD8602B0B65C861 /* .. */, - 3F29072AB74640F8CCBB7AFAF02BD8C0 /* Pod */, - 6308C4C3E6A65EA824C1EE0C3A9F4FBF /* Support Files */, + BE05982E378061DFEED5E907C7454CDE /* projects */, ); - name = mobile_scanner; - path = ../.symlinks/plugins/mobile_scanner/ios; + name = Documents; + path = Documents; sourceTree = ""; }; - 30824A5DB87FD97891B761BE413C2946 /* .. */ = { + 2F3C1E264C8D643AC4980EA73E4C452E /* ios */ = { isa = PBXGroup; children = ( - EF0A54F66B1C10DB4449C9EDCC2CAE07 /* .. */, + 980FB60612D4670D86F3ADD85D62ED2B /* Classes */, + F945FCFBA4C27EC5248D2CAEF025687C /* Storyboards */, ); - name = ..; - path = ..; + name = ios; + path = ios; sourceTree = ""; }; - 31AB55E7808FAE1F6ED5AD90F42BE839 /* ever_wallet_flutter_new */ = { + 309BEF68E2CD18FB2ABCF95218CFFEDF /* ever_wallet_flutter_new */ = { isa = PBXGroup; children = ( - CAAB1BE47E4DC612CD11281B1BC3A25A /* ios */, + 3851257C8B0853C4731962A678EDF024 /* ios */, ); name = ever_wallet_flutter_new; path = ever_wallet_flutter_new; sourceTree = ""; }; - 31C5DE45AB9061FE33FD0F1FAFFB10BC /* .. */ = { + 319AFC03864A310EB1AE9AF75F08BBCE /* url_launcher_ios */ = { isa = PBXGroup; children = ( - 925B5AD6FD7488F5887F41EA41798A8D /* .. */, + AA6184E8E376F7750A352EF99C39A4EE /* ios */, ); - name = ..; - path = "../../../../../../../../.pub-cache/hosted/pub.dev/share_plus-9.0.0/ios"; + name = url_launcher_ios; + path = url_launcher_ios; sourceTree = ""; }; - 31C7147F0B9C30C08D0BA222EC575BBF /* ios */ = { + 3234AF1254946877C12AC6D853AD3591 /* InAppWebView */ = { isa = PBXGroup; children = ( - 4A84DFB11A1CE4A3F92ABF0F20FB9EE4 /* .symlinks */, + F419FA65A0CC37678FB11816ED21F143 /* FlutterWebViewController.swift */, + 5F23FC03974C64BA2BCCC5C23D1A74A2 /* FlutterWebViewFactory.swift */, + A2FC3F8189391939C417366E38B826E3 /* InAppWebView.swift */, + 181513F01FB113F13B8FDB35C4F9CA28 /* InAppWebViewOptions.swift */, ); - name = ios; - path = ios; + name = InAppWebView; + path = InAppWebView; sourceTree = ""; }; - 31E809F3F6D779E828DB8133A71596EC /* HeadlessInAppWebView */ = { + 32E45E03C2BC502AB1311E07FC40A905 /* ios */ = { isa = PBXGroup; children = ( - 67CA9A16B0C72D26B1972AE0917432CA /* HeadlessInAppWebView.swift */, - D5D30EDCA73A54CA172BAD1FA929FCC1 /* HeadlessInAppWebViewManager.swift */, + 3FE6CFCE7C367243F5008613F9587E7B /* .symlinks */, ); - name = HeadlessInAppWebView; - path = HeadlessInAppWebView; + name = ios; + path = ios; sourceTree = ""; }; - 324F3DDF118259AFC516A93871C7C57A /* Documents */ = { + 330D933CEB28C78EBD1A456A55D208CF /* Documents */ = { isa = PBXGroup; children = ( - B470C26B2ED3A77E1CCB46281F0DF772 /* projects */, + F4B7E5701D6F287775ADB7292B83975B /* projects */, ); name = Documents; path = Documents; sourceTree = ""; }; - 325D08501F895E9218E44E39D99887D4 /* image_picker_ios */ = { + 338D3B39B1094419E40B0AE335FEDF00 /* .. */ = { isa = PBXGroup; children = ( - 7C39106E6BECC1CB5505D8777836B0A3 /* FLTImagePickerImageUtil.m */, - 9368641DE87B7952BCFBF657CBDDC1D5 /* FLTImagePickerMetaDataUtil.m */, - 3CC2A851736FD3567A68F55DC606E5F9 /* FLTImagePickerPhotoAssetUtil.m */, - 3F5272EA66106DBBF8754F49E0915252 /* FLTImagePickerPlugin.m */, - 8DE16E3EC19334A8C02D5E3986679478 /* FLTPHPickerSaveImageToPathOperation.m */, - 9311A895A54ADD4AFDA779D440EBED1A /* messages.g.m */, - 4FB659BE16F5C7942887191271FBF6B3 /* include */, + F5B64C0CC2B6C3E0FFA769E4C1258D7C /* Documents */, ); - name = image_picker_ios; - path = image_picker_ios; + name = ..; + path = ..; sourceTree = ""; }; - 32CF92E99940A3480F01DA9F1B19F116 /* .. */ = { + 35861D11ADF7698EC0CA5071D33E139B /* .. */ = { isa = PBXGroup; children = ( - FE18BBF9F9D65564BCDFC03D402F182E /* .. */, + 9A0C8FB16B5360FBDC8B81CCC562456F /* .. */, ); name = ..; path = ..; sourceTree = ""; }; - 32E18BC3DDB88777868607202ED81A11 /* projects */ = { + 358A5B6891040EF5696A0F3EE20D79E8 /* .. */ = { isa = PBXGroup; children = ( - F56E22502908C3BE32AA8A428CFBC18C /* ever_wallet_flutter_new */, + 696543C439F46DAD535DF2941A6E264D /* .. */, ); - name = projects; - path = projects; + name = ..; + path = ..; sourceTree = ""; }; - 3307B13A002054621E5C0E9E1E131CDA /* darwin */ = { + 35BA9188CB4484DF1AAE0A68FC20E4FE /* Sources */ = { isa = PBXGroup; children = ( - 78E39BFFE7DC0B83FB2A75AEBBD6C4A2 /* Classes */, + F1A8DE1AFDB4D0D8FF3D39C97FCD84B0 /* image_picker_ios */, ); - name = darwin; - path = darwin; + name = Sources; + path = Sources; sourceTree = ""; }; - 3334B4E801E2017B59F34AF74634FE00 /* ios */ = { + 366A6EB850F952DF6FEED7C17E28E2A5 /* broxus */ = { isa = PBXGroup; children = ( - E55F4B9C6C0877A8EB52B0F0BCECA901 /* .symlinks */, + 797392580BBF5788EA9DEDE1559ADFD2 /* ever_wallet_flutter_new */, ); - name = ios; - path = ios; + name = broxus; + path = broxus; sourceTree = ""; }; - 3467509105F723A730B25EEE6D18BEA7 /* InAppWebView */ = { + 36AF352262F7AA85B7372C8B89B09A99 /* .. */ = { isa = PBXGroup; children = ( - 476CF3183D4DC343B96465324FB8BBE7 /* FlutterWebViewController.swift */, - 4E7898C0B8206250924C76BBEDC0FF35 /* FlutterWebViewFactory.swift */, - 50606B8981BCF3F195DD9FA91838B7F1 /* InAppWebView.swift */, - 09AECB420E5CD13406B4EF8C977FCED2 /* InAppWebViewOptions.swift */, + DB7AF5FC2EB10F187BFF0F9C15406CA0 /* Documents */, ); - name = InAppWebView; - path = InAppWebView; + name = ..; + path = ..; sourceTree = ""; }; - 34C72604CFB668F21D512699F242E923 /* ios */ = { + 3710DAB4F7025EA83B93C3A87B776E2C /* .. */ = { isa = PBXGroup; children = ( - 0F1D0B187B9B61D779FAEF5E796D0898 /* .symlinks */, + E9B33C926DF5A89B0A32FDA025B276DC /* Documents */, ); - name = ios; - path = ios; + name = ..; + path = ..; sourceTree = ""; }; - 350D43EC1F7E93B3B1A34B5156DEDA77 /* Support Files */ = { + 37DF6320DE4F37B863E8F138A53C8445 /* Support Files */ = { isa = PBXGroup; children = ( - EB3B954C4E8996E8CC0DB5554A11D3DC /* ResourceBundle-share_plus_privacy-share_plus-Info.plist */, - 5DD69DB6B10A9A0CEB19E81324E7928D /* share_plus.modulemap */, - FBDD88A9882E0342FCD0318922EF6BE9 /* share_plus-dummy.m */, - 72000CB6F8BFD93FC6D29936D791F10D /* share_plus-Info.plist */, - A70878D2522891715E023ACF1FCB585E /* share_plus-prefix.pch */, - 4AB5B552470F1A73FB23EF2F07B3AFC1 /* share_plus-umbrella.h */, - D8EE162A14AE49B28AFDB1D6A27459C8 /* share_plus.debug.xcconfig */, - 1E47B40DD78F33D7394C9CDADE9B41A7 /* share_plus.release.xcconfig */, + 565E46A026A7EE9F4A4FEC023193B7EA /* flutter_inappwebview.modulemap */, + 76C8BAB2063A8189C614816BF11C99DE /* flutter_inappwebview-dummy.m */, + DAF2E8FB5187A55A6DBDDB887126A88C /* flutter_inappwebview-Info.plist */, + E7117D247BACDB138B0C16E5675B4628 /* flutter_inappwebview-prefix.pch */, + C5910F708535FBD5A239C1CBE9B28995 /* flutter_inappwebview-umbrella.h */, + AACA2A0A183B02C1F08F864B2AC7D674 /* flutter_inappwebview.debug.xcconfig */, + F3BAFA0B70330F234C6B8BF559E7A252 /* flutter_inappwebview.release.xcconfig */, ); name = "Support Files"; - path = "../../../../Pods/Target Support Files/share_plus"; - sourceTree = ""; - }; - 3540DA93500F5250A42A8C11A5569183 /* projects */ = { - isa = PBXGroup; - children = ( - 47A8038AD6096849F2DEC64A5870D625 /* ever_wallet_flutter_new */, - ); - name = projects; - path = projects; - sourceTree = ""; - }; - 35511934146878D212AEAFAEF3470A1C /* .symlinks */ = { - isa = PBXGroup; - children = ( - 3D80C1FD27221A2FCCC7DC25DDA5713C /* plugins */, - ); - name = .symlinks; - path = .symlinks; - sourceTree = ""; - }; - 357675E4E961C9E28370BFF38B33B2CA /* Classes */ = { - isa = PBXGroup; - children = ( - 2E408C7CFCE48282909EB0579F6DA739 /* FlutterEmailSenderPlugin.h */, - 98BC5D5B321F1AE8872FED843DDC76E6 /* FlutterEmailSenderPlugin.m */, - 29211C05B050C034FF9569B5E4800A09 /* SwiftFlutterEmailSenderPlugin.swift */, - ); - name = Classes; - path = Classes; - sourceTree = ""; - }; - 35B6AF438332C377D98CD14A5F63CF55 /* Documents */ = { - isa = PBXGroup; - children = ( - EEDF590DF56533973C2CD988EEBF2C63 /* projects */, - ); - name = Documents; - path = Documents; - sourceTree = ""; - }; - 36848DFA0B1883377F93154A85D3E748 /* ever_wallet_flutter_new */ = { - isa = PBXGroup; - children = ( - 8FDD7713CF00194DAE8DA516C2AE9347 /* ios */, - ); - name = ever_wallet_flutter_new; - path = ever_wallet_flutter_new; + path = "../../../../Pods/Target Support Files/flutter_inappwebview"; sourceTree = ""; }; - 369DCDE64053562FDC3A3FBA9EA1ACBD /* ios */ = { + 3851257C8B0853C4731962A678EDF024 /* ios */ = { isa = PBXGroup; children = ( - AE27E0D3ED3DF95B037E97C3B4D29A08 /* .symlinks */, + D198138F9ED51251A25E832DCCC09DBB /* .symlinks */, ); name = ios; path = ios; sourceTree = ""; }; - 3704486F73B21DA6E5BFDB96DF7CEA30 /* sqflite */ = { - isa = PBXGroup; - children = ( - E1BB9DEC3417790E84D1977483BAD320 /* .. */, - B9212ACA640A36C965006E44A43B9E15 /* Pod */, - 3A82AA2625982351A010025A03484DAD /* Support Files */, - ); - name = sqflite; - path = ../.symlinks/plugins/sqflite/darwin; - sourceTree = ""; - }; - 3729A41804B79978EE5E310E31D5791A /* .. */ = { - isa = PBXGroup; - children = ( - 168D54A1EBDE2D87FA3FC1069C86C7D3 /* .. */, - ); - name = ..; - path = ..; - sourceTree = ""; - }; - 379F3A644FE5273CE70E4885989544A2 /* .symlinks */ = { + 3862C0CE39074AC9BDB272BCD0A992D0 /* .symlinks */ = { isa = PBXGroup; children = ( - ECFF07116957F81203DA86DFA1BE0435 /* plugins */, + DBD094DB5F4CD109065FF3AF27CB4852 /* plugins */, ); name = .symlinks; path = .symlinks; sourceTree = ""; }; - 381082CE9E5FEE6BD5D813D7BAE48E6C /* PullToRefresh */ = { - isa = PBXGroup; - children = ( - CD0ECCF6B6B330DF9DE2B7728F1CF90E /* PullToRefreshControl.swift */, - 8CC6AB7D8831589F1EDDAB1106270367 /* PullToRefreshDelegate.swift */, - 902744467056368FAE68E9A0E928ADAF /* PullToRefreshOptions.swift */, - ); - name = PullToRefresh; - path = PullToRefresh; - sourceTree = ""; - }; - 38CD8828A868CA0C5AA820F72BE7EAC8 /* url_launcher_ios */ = { - isa = PBXGroup; - children = ( - E28BAC90E769B1F4BCDAB39F661FE1F7 /* Sources */, - ); - name = url_launcher_ios; - path = url_launcher_ios; - sourceTree = ""; - }; - 3900EB88C4D04D919D055684C31846B1 /* path_provider_foundation */ = { + 38F9C8B90D159ECE78B41B5E1EC10FFD /* Pod */ = { isa = PBXGroup; children = ( - BDA56A2B3EECB5469111C6B05DA606C5 /* Sources */, + FD5ABE35CBDE691E5E25E5D64C4FB758 /* connectivity_plus.podspec */, + CFD5CF2FC99361D06BF98BFDE6B8C530 /* LICENSE */, ); - name = path_provider_foundation; - path = path_provider_foundation; + name = Pod; sourceTree = ""; }; - 396DFB6C9184386F50CC9A19CD73249C /* Documents */ = { + 3986CFA2B51C2682169275993F37E001 /* .. */ = { isa = PBXGroup; children = ( - CDE97E84FDD4D3F2CE6EDED594EFAD2F /* projects */, + 6FBE666CBFDE3253F56A19F719F817F0 /* .. */, ); - name = Documents; - path = Documents; + name = ..; + path = ..; sourceTree = ""; }; - 39C3A7DE39F95E969B5AA02C450C22F4 /* .symlinks */ = { + 3C0F9967A3A60858BF2C4AF46CEBE367 /* local_auth_darwin */ = { isa = PBXGroup; children = ( - C0D77AA3D7B22437E6470909FDA5E3C4 /* plugins */, + 08373C2A5FF7FCB772B577D59C13E5DF /* Sources */, ); - name = .symlinks; - path = .symlinks; + name = local_auth_darwin; + path = local_auth_darwin; sourceTree = ""; }; - 3A82AA2625982351A010025A03484DAD /* Support Files */ = { + 3C126FED7E9AEDAC508FC8B070AA3FAB /* .. */ = { isa = PBXGroup; children = ( - A34E483078DFC384027B34F3D6115197 /* ResourceBundle-sqflite_darwin_privacy-sqflite-Info.plist */, - 268E33F7C98FF50AF5B738106520F7B3 /* sqflite.modulemap */, - 4A037E060424628E5D090B11C0E34DB6 /* sqflite-dummy.m */, - 7576A20F6C9C3DA6352A66CD83EACFF3 /* sqflite-Info.plist */, - C09BE378968BE80A7F7D65595B9BA3F6 /* sqflite-prefix.pch */, - F36098B93192EA92F5ACEB4B227DD976 /* sqflite-umbrella.h */, - 2C0178C1EDE28CC099A2ADAB1A94C43C /* sqflite.debug.xcconfig */, - B91357BF97DBAECE656386331F10CCFD /* sqflite.release.xcconfig */, + DFDD84AB3B8581EC16F2CF368A5E810C /* Documents */, ); - name = "Support Files"; - path = "../../../../Pods/Target Support Files/sqflite"; + name = ..; + path = .; sourceTree = ""; }; 3CB2D07C0B08B9F1F19AD1EC1928B9BC /* Support Files */ = { @@ -4803,113 +4658,99 @@ path = "../Target Support Files/nanopb"; sourceTree = ""; }; - 3CCF2B112D1858EBB38E5750E15D1225 /* Pod */ = { + 3CB6C4909CBC666DDF34133237DA3661 /* ios */ = { isa = PBXGroup; children = ( - C1733D282476F619EFB1C22C09033426 /* LICENSE */, - A0AC36F487E710806861799FE49A1DF6 /* package_info_plus.podspec */, + D7BFC2BA1A7D8E7F4C1F50226A5FBC62 /* Classes */, ); - name = Pod; + name = ios; + path = ios; sourceTree = ""; }; - 3D80C1FD27221A2FCCC7DC25DDA5713C /* plugins */ = { + 3CF15F610735B02C8FF24213C466E7A8 /* plugins */ = { isa = PBXGroup; children = ( - 6940A18070215C6760AC4E1EB120C2F1 /* mobile_scanner */, + F08639E70318B6FC00098EBE08C1124F /* local_auth_darwin */, ); name = plugins; path = plugins; sourceTree = ""; }; - 3E49D06E6062C73CC1702B858E9053C8 /* .. */ = { - isa = PBXGroup; - children = ( - BB4E03DC14C894412AAA07323BB55702 /* .. */, - ); - name = ..; - path = "../../../../../../../../.pub-cache/hosted/pub.dev/path_provider_foundation-2.4.0/darwin/path_provider_foundation/Sources"; - sourceTree = ""; - }; - 3E5A4F05F425ADBD5B2889F0F3B9BF9F /* Documents */ = { - isa = PBXGroup; - children = ( - 28A3BEC52D1D1E9FB5B45531FAA00405 /* projects */, - ); - name = Documents; - path = Documents; - sourceTree = ""; - }; - 3E9A6D6B68F75CF4A18724D5D18FA996 /* ios */ = { + 3D6815AC1B5EFE27602512E5ABF887BC /* Pod */ = { isa = PBXGroup; children = ( - 138E362ABE06456E3484705C0C2D855E /* Classes */, - 77A0EEC818F3B7EC22B89E1DB14EA34C /* Resources */, + C75E0DA6F371494448BE56F7B11E78F1 /* LICENSE */, + 34F4C6378B04D0BD00220F4AD16D70A4 /* package_info_plus.podspec */, ); - name = ios; - path = ios; + name = Pod; sourceTree = ""; }; - 3EA3A45195093EFA62C1A70DCF19D455 /* ever_wallet_flutter_new */ = { + 3F5E6CEC184FB7FB520B0D47FA83653F /* Classes */ = { isa = PBXGroup; children = ( - 232BE5ACF02AE60B0A0882A865CB00B9 /* ios */, + C02601FB6638E1A3060C8A020F03271F /* FPPPackageInfoPlusPlugin.h */, + BA5D290335566CBC2DB4D4F0E89D2248 /* FPPPackageInfoPlusPlugin.m */, ); - name = ever_wallet_flutter_new; - path = ever_wallet_flutter_new; + name = Classes; + path = Classes; sourceTree = ""; }; - 3F29072AB74640F8CCBB7AFAF02BD8C0 /* Pod */ = { + 3FE6CFCE7C367243F5008613F9587E7B /* .symlinks */ = { isa = PBXGroup; children = ( - 2F98BC4DC5D7C49A0542E2CA56D97A1B /* LICENSE */, - 1A59C76A8AE0A90CB5787DB66A896FDB /* mobile_scanner.podspec */, + 1EDA2750E0A24FD546FCBB1209C29EE5 /* plugins */, ); - name = Pod; + name = .symlinks; + path = .symlinks; sourceTree = ""; }; - 3F8F8144FF02001EE683491FF0FA84C0 /* .symlinks */ = { + 400C59DFADBF62BB34F0027800ABD05E /* permission_handler_apple */ = { isa = PBXGroup; children = ( - C13DF571B7EBA263CFA19C169D8B7B76 /* plugins */, + B37C6A375FBDEA05AF15A0A229CB55A5 /* .. */, + C3B2EC5D4F4DF8062B632BDCFED45620 /* Pod */, + D150502CB0E6668740EB51FB2E7ED06B /* Support Files */, ); - name = .symlinks; - path = .symlinks; + name = permission_handler_apple; + path = ../.symlinks/plugins/permission_handler_apple/ios; sourceTree = ""; }; - 405A26CB5ACE0EC76A7B28F1A9DD45BE /* sqflite */ = { + 405124F491321D1EB86A61BBBB9892BE /* Classes */ = { isa = PBXGroup; children = ( - F8FD4E9FAC9D5BE2A0EDF42AA371D9CB /* darwin */, + 29932A56BCEFC69115E723A7ED8D75A2 /* FlutterEmailSenderPlugin.h */, + 7A855B6017454D4B2847A227EA32615D /* FlutterEmailSenderPlugin.m */, + C382B3855032F0B79332CA6A9BCC2955 /* SwiftFlutterEmailSenderPlugin.swift */, ); - name = sqflite; - path = sqflite; + name = Classes; + path = Classes; sourceTree = ""; }; - 40881D431B5BFBD7C8E0C794419FB78F /* .. */ = { + 40913431D70E83F583E6B572096FD4C9 /* broxus */ = { isa = PBXGroup; children = ( - 67C08334A8CEAE3A74E81055C08EF794 /* .. */, + 81D50BBBCD7CE9760835522D37D6D76A /* ever_wallet_flutter_new */, ); - name = ..; - path = ..; + name = broxus; + path = broxus; sourceTree = ""; }; - 40AFD51931311EBCFCE940B2B5D5B59A /* .. */ = { + 409EFF1D205CC511FEAD05723626C4FD /* ios */ = { isa = PBXGroup; children = ( - AEBFE66E8801B2735362CD3DB78D4E96 /* Documents */, + E6D2B7F7EA638141957C2A7A95698F16 /* .symlinks */, ); - name = ..; - path = ..; + name = ios; + path = ios; sourceTree = ""; }; - 411060734B3B87243F5E11E173621897 /* .. */ = { + 410FA0115A78B5B0932E0024C4654E12 /* projects */ = { isa = PBXGroup; children = ( - 32CF92E99940A3480F01DA9F1B19F116 /* .. */, + 534A041DCA0F79D7A8785DE93067457A /* broxus */, ); - name = ..; - path = ..; + name = projects; + path = projects; sourceTree = ""; }; 41163C14FEFCD63DE214860C29A39445 /* Resources */ = { @@ -4945,13 +4786,13 @@ path = MLImage; sourceTree = ""; }; - 4184EE107CB38A8B3D3FEEB0C01A8D65 /* plugins */ = { + 413F39C288C132C20FFBF71763862363 /* .. */ = { isa = PBXGroup; children = ( - 793E620CB9ED43C2BF4269DA952BC483 /* image_picker_ios */, + D66B6AAC8840D589B2037B670896EFD7 /* .. */, ); - name = plugins; - path = plugins; + name = ..; + path = ..; sourceTree = ""; }; 41A6982E914F20D1205BC87791574111 /* GoogleToolboxForMac */ = { @@ -4969,42 +4810,58 @@ path = GoogleToolboxForMac; sourceTree = ""; }; - 4264F0C092DA0BFEE61BCBF05F3DD877 /* share_plus */ = { + 41E6B585BBE9710085B7D4C57E7EFAD9 /* .. */ = { isa = PBXGroup; children = ( - 31C5DE45AB9061FE33FD0F1FAFFB10BC /* .. */, - C8D9603CFE59F601297F2D49DA7CF1B8 /* Pod */, - 350D43EC1F7E93B3B1A34B5156DEDA77 /* Support Files */, + 705BCF23CE60AFD6C1466D8B3173846A /* .. */, ); - name = share_plus; - path = ../.symlinks/plugins/share_plus/ios; + name = ..; + path = ..; sourceTree = ""; }; - 42E0BE09CC6A7CBB55730C2D7B4FDF1F /* .. */ = { + 41F18E9885CDD69D5D5EB3748649038F /* .. */ = { isa = PBXGroup; children = ( - 0B310AD0075EDC312949B9A2F54188D6 /* .. */, + 95DF7D8571146F13E012372055573EF8 /* .. */, ); name = ..; - path = "../../../../../../../../.pub-cache/hosted/pub.dev/flutter_native_splash-2.4.0/ios"; + path = ..; sourceTree = ""; }; - 43384D6978CA1D533CD4992F34E65C8F /* path_provider_foundation */ = { + 4269BFBB7836B1034B7501DB5C521592 /* .symlinks */ = { isa = PBXGroup; children = ( - 4E898BF96B54888CDE70FA11B2F2104C /* Sources */, + B2A7F58A4711801E1F33E81C08FCD07B /* plugins */, ); - name = path_provider_foundation; - path = path_provider_foundation; + name = .symlinks; + path = .symlinks; sourceTree = ""; }; - 439AEC0ABB04E7C2B142CF180788B39B /* projects */ = { + 429AF7ACB7FFE12060EC691A7A70577C /* .. */ = { isa = PBXGroup; children = ( - CDC5808C5E952BF49700C5FBA7A35C01 /* ever_wallet_flutter_new */, + F3DB829111B67F5CA327227A61DA9F0C /* .. */, ); - name = projects; - path = projects; + name = ..; + path = "../../../../../../../../../.pub-cache/hosted/pub.dev/flutter_email_sender-6.0.3/ios"; + sourceTree = ""; + }; + 42DEE26154617F3568B4C41FAED9C614 /* ever_wallet_flutter_new */ = { + isa = PBXGroup; + children = ( + 8ED71C7ECEF66A3A0CE2BF8F2E44F02A /* ios */, + ); + name = ever_wallet_flutter_new; + path = ever_wallet_flutter_new; + sourceTree = ""; + }; + 43224AC7CD2908BBDC165EFEFB3F4625 /* shared_preferences_foundation */ = { + isa = PBXGroup; + children = ( + B78CB9893DE8688687E8D4684005EE5F /* darwin */, + ); + name = shared_preferences_foundation; + path = shared_preferences_foundation; sourceTree = ""; }; 43CC21137FE462DD80446A3948D64E48 /* Frameworks */ = { @@ -5015,439 +4872,518 @@ name = Frameworks; sourceTree = ""; }; - 4469BECD32358AEE8DD8602B0B65C861 /* .. */ = { + 44097D14C522ABC2567CD9F3A6786CFE /* projects */ = { isa = PBXGroup; children = ( - 4BE777F911DFCD6B242F5548BE36C480 /* .. */, + 9EB11C733AB226018F1FAEEE98D056D4 /* broxus */, ); - name = ..; - path = "../../../../../../../../.pub-cache/hosted/pub.dev/mobile_scanner-3.4.1/ios"; + name = projects; + path = projects; sourceTree = ""; }; - 449253A5EB0A9245B4A2950F74F39A0E /* decode */ = { + 442FE7E9B548DCCB902D7080C92A8338 /* .. */ = { isa = PBXGroup; children = ( + 8E2DDEBCBF473E8973DCE1306CBF6166 /* .. */, + 55715C1D6F961C804C7920A66E63293B /* Documents */, ); - name = decode; + name = ..; + path = ..; sourceTree = ""; }; - 453B83C52E143568459BAB829874D7DA /* ios */ = { + 448FF397161705100B397218DFE3BA00 /* sqflite */ = { isa = PBXGroup; children = ( - EE429024F24081C5ED7EDFF00B2846AF /* .symlinks */, + 098F3BD613DD512182A1831DD98DBCA1 /* .. */, + CC2ED098DBAB0842277C59A20C1220FC /* Pod */, + 4F0914768CB7DE473CB1848BC286FC88 /* Support Files */, ); - name = ios; - path = ios; + name = sqflite; + path = ../.symlinks/plugins/sqflite/darwin; sourceTree = ""; }; - 45C908DEE2C079E7BA308013930317BC /* Resources */ = { + 449253A5EB0A9245B4A2950F74F39A0E /* decode */ = { isa = PBXGroup; children = ( - 8A9F75595D30332F5F830289CF6B0C73 /* PrivacyInfo.xcprivacy */, ); - name = Resources; + name = decode; sourceTree = ""; }; - 469909DD74B2A844E00A3C39FA1AE6C7 /* .. */ = { + 449CE2F37593763E89A53B5E77431C81 /* .. */ = { isa = PBXGroup; children = ( - CB557C2B00723227BD61C277C1EFECC7 /* .. */, + 213E3EEE9E22D4F9D2E0D8A8CBFA3F20 /* .. */, ); name = ..; path = ..; sourceTree = ""; }; - 47347C6962E93A4874FB5E3D87D33364 /* ios */ = { + 4540BC013133E3FF4219DD2391EE31FE /* ios */ = { isa = PBXGroup; children = ( - 53D230C37F7010CEBAD991E9C24ACC79 /* url_launcher_ios */, + 4269BFBB7836B1034B7501DB5C521592 /* .symlinks */, ); name = ios; path = ios; sourceTree = ""; }; - 47A8038AD6096849F2DEC64A5870D625 /* ever_wallet_flutter_new */ = { + 4556064B13513E18D22E888A9B25A361 /* broxus */ = { isa = PBXGroup; children = ( - 4F1589E38A01763070B1E22BF4BA63DE /* ios */, + 177564870E1876B9E66E81894F9319DC /* ever_wallet_flutter_new */, ); - name = ever_wallet_flutter_new; - path = ever_wallet_flutter_new; + name = broxus; + path = broxus; sourceTree = ""; }; - 47BFBF5BC5C176516A9F1C837C6DAE33 /* Support Files */ = { + 4559C4B75C9221A2F4C4C1A09C9DA359 /* Sources */ = { isa = PBXGroup; children = ( - F7224246575365262B1CF8743C3FBD93 /* Flutter.debug.xcconfig */, - 5D2DA3CB411FF35D30470F3AEFA259CB /* Flutter.release.xcconfig */, + B61083D66E0F2F20B0AAE0CD2751BC57 /* shared_preferences_foundation */, ); - name = "Support Files"; - path = "../Pods/Target Support Files/Flutter"; + name = Sources; + path = Sources; sourceTree = ""; }; - 4801EA320AC61F5DE9BA91B938F9F38B /* Sources */ = { + 458CD98F94B58F32DE2099424C5C8AA6 /* ios */ = { isa = PBXGroup; children = ( - 8E645177C8C0F7DC1E56BB40C560E66B /* local_auth_darwin */, + 77A4E53B7D5585C8BF8435CFD03490D4 /* Classes */, ); - name = Sources; - path = Sources; + name = ios; + path = ios; sourceTree = ""; }; - 482CB88DEB967B40230DD8EF1194CB34 /* .. */ = { + 45C7D07DE6CE795E80E2ABAC84EAE704 /* .. */ = { isa = PBXGroup; children = ( - B533B462E17CA54C4D856682D0E6CF3B /* .. */, - 324F3DDF118259AFC516A93871C7C57A /* Documents */, + E3E127FA49068599D4AAF0E2BE9F008A /* .. */, ); name = ..; path = ..; sourceTree = ""; }; - 4A1C008794B143506B4137FCCD941E5C /* .. */ = { + 45C908DEE2C079E7BA308013930317BC /* Resources */ = { isa = PBXGroup; children = ( - 482CB88DEB967B40230DD8EF1194CB34 /* .. */, + 8A9F75595D30332F5F830289CF6B0C73 /* PrivacyInfo.xcprivacy */, ); - name = ..; - path = ..; + name = Resources; sourceTree = ""; }; - 4A84DFB11A1CE4A3F92ABF0F20FB9EE4 /* .symlinks */ = { + 4648CE49424C10F4F36AD54C7BE9EDBB /* flutter_nekoton_bridge */ = { isa = PBXGroup; children = ( - 71E304C82D7E6236356F12E5A1D4EF02 /* plugins */, + 75241187C4FD2A57C601C035DDCDD0AC /* .. */, + AB896F97319AF13DEBA75DA87F5A8C05 /* Frameworks */, + D5AB7A3B2F03332F0EA5C6702CC15A91 /* Pod */, + 6DC07153E2633A16A9C66024470C34B8 /* Support Files */, ); - name = .symlinks; - path = .symlinks; + name = flutter_nekoton_bridge; + path = ../.symlinks/plugins/flutter_nekoton_bridge/ios; sourceTree = ""; }; - 4A8FB80C423B8DF17BB06560FB8CF5BE /* .. */ = { + 465A325FA81BB7AE4B098971B6741C0E /* .. */ = { isa = PBXGroup; children = ( - EA25147F646BDC781D9E31B5586F93A7 /* .. */, + 19D539FE579E0C433E329CBAD1461F97 /* .. */, ); name = ..; path = ..; sourceTree = ""; }; - 4AE59854D0CD29F7D08A5526CBED1B1C /* OrderedSet */ = { + 4781FC440B07A382BEF88F7CF0710563 /* ios */ = { isa = PBXGroup; children = ( - DC0723F46DAF3B7DFA22AA2372451BDD /* OrderedSet.swift */, - 8D49BCFD704DF79605A69FB301B0A749 /* Support Files */, + 94DE487E9600DDD9E624F5FFFC6E0E35 /* Classes */, + 907FA9F849765600FCDFED5ECEF4729C /* Resources */, ); - name = OrderedSet; - path = OrderedSet; + name = ios; + path = ios; sourceTree = ""; }; - 4BE777F911DFCD6B242F5548BE36C480 /* .. */ = { + 47BFBF5BC5C176516A9F1C837C6DAE33 /* Support Files */ = { isa = PBXGroup; children = ( - 58C342E220AFA18C32A22D9D21BB7131 /* .. */, + F7224246575365262B1CF8743C3FBD93 /* Flutter.debug.xcconfig */, + 5D2DA3CB411FF35D30470F3AEFA259CB /* Flutter.release.xcconfig */, ); - name = ..; - path = ..; + name = "Support Files"; + path = "../Pods/Target Support Files/Flutter"; sourceTree = ""; }; - 4CC29947DC3F8D207DFF9914A3D5E110 /* .. */ = { + 48853ADC1A1C6F4F439FC301AE7AFE45 /* Support Files */ = { isa = PBXGroup; children = ( - 9BF9DA7A279076A556E4DBB59E3CA02F /* .. */, + 6E4F25CCB88A77087DC89A1A52759024 /* ResourceBundle-url_launcher_ios_privacy-url_launcher_ios-Info.plist */, + F0B52F9D9EA1758519E6890631D05D51 /* url_launcher_ios.modulemap */, + E6EE0C9724ADD6798CB63C60D7B54D7D /* url_launcher_ios-dummy.m */, + 84D9A4B372B0BD1673B974A717BD2B75 /* url_launcher_ios-Info.plist */, + 63CED364D9086C6A4A9C77EEEE389E79 /* url_launcher_ios-prefix.pch */, + 5282DD2A6912A8797B13557140F12A6A /* url_launcher_ios-umbrella.h */, + 42385493A2E9373683CFD647E65599F1 /* url_launcher_ios.debug.xcconfig */, + F9F252ACFB155ACF9BB56FB267880E01 /* url_launcher_ios.release.xcconfig */, ); - name = ..; - path = ..; + name = "Support Files"; + path = "../../../../Pods/Target Support Files/url_launcher_ios"; sourceTree = ""; }; - 4D050FB547D8C458143703F1F350388C /* .. */ = { + 490D6D9E9277A3C9524C5B1AA94276D1 /* .. */ = { isa = PBXGroup; children = ( - 11CADE0B246EB814FAEE1200AD61A8D2 /* .. */, + 04F325AD03FBE4B9A74E25F9C2A13DDC /* .. */, ); name = ..; path = ..; sourceTree = ""; }; - 4D6F35AF3EF1409CFD742F9E3A8011DB /* ios */ = { + 491EB9C69E62EC7981E9BC8AC171B4BC /* integration_test */ = { isa = PBXGroup; children = ( - 38CD8828A868CA0C5AA820F72BE7EAC8 /* url_launcher_ios */, + A0583590F67DD5FBC5DDD1B23E2EA954 /* FLTIntegrationTestRunner.m */, + 609A48A47FDE743A7EEB5DECF1A08A5E /* IntegrationTestIosTest.m */, + 06BB53DB10F08D41B6315565B16D2D47 /* IntegrationTestPlugin.m */, + 9A1666CA246F686FB29B1F85AB559D5B /* include */, ); - name = ios; - path = ios; + name = integration_test; + path = integration_test; sourceTree = ""; }; - 4D7C12FD0E4EE402536B10917D1EDD43 /* connectivity_plus */ = { + 49401958330BA18B4561C9B64C620691 /* .. */ = { isa = PBXGroup; children = ( - 3307B13A002054621E5C0E9E1E131CDA /* darwin */, + 3C126FED7E9AEDAC508FC8B070AA3FAB /* .. */, + 1610C40C823EF9523C4F293905AAA652 /* Documents */, ); - name = connectivity_plus; - path = connectivity_plus; + name = ..; + path = ..; sourceTree = ""; }; - 4DA7005E99BE50A0281D71684C9EEB3B /* Resources */ = { + 4A7F0716D2C2CED2CC863CAB740AF2A3 /* .symlinks */ = { isa = PBXGroup; children = ( - 18C90F2A843714057F6721C503653141 /* PrivacyInfo.xcprivacy */, + C481499C219CC15C6FCA40EB3B736EDD /* plugins */, ); - name = Resources; + name = .symlinks; + path = .symlinks; sourceTree = ""; }; - 4E4B70F7773D36F02EA9773C8720794C /* local_auth_darwin */ = { + 4AB714D3F63421E64A8DBA62E88C18F3 /* broxus */ = { isa = PBXGroup; children = ( - AB6FA70A7D674B78680DD60831385DB5 /* darwin */, + 6CE67DC4146BD2A6392959C7F51B926C /* ever_wallet_flutter_new */, ); - name = local_auth_darwin; - path = local_auth_darwin; + name = broxus; + path = broxus; sourceTree = ""; }; - 4E898BF96B54888CDE70FA11B2F2104C /* Sources */ = { + 4AE59854D0CD29F7D08A5526CBED1B1C /* OrderedSet */ = { isa = PBXGroup; children = ( - 5DDF9642068C4A09B06C07A47A258221 /* path_provider_foundation */, + DC0723F46DAF3B7DFA22AA2372451BDD /* OrderedSet.swift */, + 8D49BCFD704DF79605A69FB301B0A749 /* Support Files */, ); - name = Sources; - path = Sources; + name = OrderedSet; + path = OrderedSet; sourceTree = ""; }; - 4EA9C9EFAB2A7FB310671B302394DDBA /* ios */ = { + 4B327488D6FD7AF85EE79E4DD5280BE2 /* Documents */ = { isa = PBXGroup; children = ( - 379F3A644FE5273CE70E4885989544A2 /* .symlinks */, + 0F0207ABA9338868C37357B603F3B91E /* projects */, ); - name = ios; - path = ios; + name = Documents; + path = Documents; sourceTree = ""; }; - 4EB2642DC1D61B70D32AABF2856F605C /* Documents */ = { + 4B4168E6FE7981FF572BD2292EA4C471 /* Documents */ = { isa = PBXGroup; children = ( - D6C5DD0F9F563A97DBEF26D5FF5F9A8B /* projects */, + C054FED768FB180ACC39098972A198A2 /* projects */, ); name = Documents; path = Documents; sourceTree = ""; }; - 4ED85C494CE537E7521E2663F42401D5 /* Classes */ = { + 4C680A2E07DD4174A32E4F461214E686 /* .. */ = { isa = PBXGroup; children = ( - 4F2034951BAF58836265831B2A91F698 /* BarcodeHandler.swift */, - E06F50968CD2762355272E22872CD78D /* DetectionSpeed.swift */, - 05DE087D13C32655BB2AF58C3A0A6CBA /* MobileScanner.swift */, - 4D0733B67E2556254DEBC635D3FA3387 /* MobileScannerError.swift */, - 5C2AE7354707AE81A2F79D957A8212D5 /* MobileScannerPlugin.h */, - 651C318C5F53D668DFE20EB949F43E2E /* MobileScannerPlugin.m */, - 7F75CBE92AF640BE986D69A06BADCE09 /* MobileScannerUtilities.swift */, - 10374FD89775961D2C3FE28F78A0E830 /* SwiftMobileScannerPlugin.swift */, + BBC5A4F7EF4223AFEC7F3B4245C1AADE /* Documents */, ); - name = Classes; - path = Classes; + name = ..; + path = .; sourceTree = ""; }; - 4F1589E38A01763070B1E22BF4BA63DE /* ios */ = { + 4C6E260108DD5349DB059EF07CFB74B0 /* broxus */ = { isa = PBXGroup; children = ( - 2271493B47A1A4B5013614C4E7997E03 /* .symlinks */, + ECD62B4F9BC191412D46D184974BFC96 /* ever_wallet_flutter_new */, ); - name = ios; - path = ios; + name = broxus; + path = broxus; sourceTree = ""; }; - 4F4D91EE90EED277ABF44D1843E70394 /* .. */ = { + 4CE08FDDC22A8DC37B90530334E637ED /* path_provider_foundation */ = { isa = PBXGroup; children = ( - 27F31E0C805E7E929DF98A4EBE479513 /* Documents */, + AA0DDC8F39C2E56F34483F7C2B0A827A /* darwin */, ); - name = ..; - path = ..; + name = path_provider_foundation; + path = path_provider_foundation; sourceTree = ""; }; - 4F8458E0455D55E154344CE0F24687C4 /* ios */ = { + 4D840DC817DFEA9BC7A3FB96C55C8DDA /* Sources */ = { isa = PBXGroup; children = ( - 236EAA8A0FC1D544C68FCF34CA462DFD /* .symlinks */, + DC38A9483EAF82BE75D06B92FBCE56AC /* url_launcher_ios */, ); - name = ios; - path = ios; + name = Sources; + path = Sources; sourceTree = ""; }; - 4FB659BE16F5C7942887191271FBF6B3 /* include */ = { + 4D8586630A433EF4F808ED8EFB9AB2FB /* flutter_email_sender */ = { isa = PBXGroup; children = ( - D81C5771F3599F2F10607CA2F1979FF8 /* image_picker_ios-umbrella.h */, - 2581E236FFD82BAF7B64603F7CCFE987 /* image_picker_ios */, + 429AF7ACB7FFE12060EC691A7A70577C /* .. */, + DB1236E875ED88D125E775424D5589A9 /* Pod */, + C85D4E712572FF6D21C0251DCD861718 /* Support Files */, ); - name = include; - path = include; + name = flutter_email_sender; + path = ../.symlinks/plugins/flutter_email_sender/ios; + sourceTree = ""; + }; + 4DA7005E99BE50A0281D71684C9EEB3B /* Resources */ = { + isa = PBXGroup; + children = ( + 18C90F2A843714057F6721C503653141 /* PrivacyInfo.xcprivacy */, + ); + name = Resources; sourceTree = ""; }; - 4FDC769D4F50E6CCAA652CF50C16060E /* .. */ = { + 4E542BB640112A8C008D65A4543E4EA0 /* .. */ = { isa = PBXGroup; children = ( - 4CC29947DC3F8D207DFF9914A3D5E110 /* .. */, + E2012DB0B6ECE73BD6E5C589E34A50FB /* Documents */, ); name = ..; path = ..; sourceTree = ""; }; - 4FF47F6BE28B38BBF4894EC8A9CA0F6D /* Pod */ = { + 4F051C39CD481FB459AA162F631DF23F /* broxus */ = { isa = PBXGroup; children = ( - BBC36077C3D8F7CAF48F2AA8EEEB9C50 /* connectivity_plus.podspec */, - 44852535DA5BBADEAFEDD2380535306A /* LICENSE */, + 83B2A1A99F72C043340177AFD781E52F /* ever_wallet_flutter_new */, ); - name = Pod; + name = broxus; + path = broxus; sourceTree = ""; }; - 50741413F28F7AFE153DBA561EE8884B /* projects */ = { + 4F0914768CB7DE473CB1848BC286FC88 /* Support Files */ = { isa = PBXGroup; children = ( - 12776C0858D1E6EF96576C03A6DA1CE7 /* ever_wallet_flutter_new */, + 133FF68502FC0F45FEE20D53BDC71434 /* ResourceBundle-sqflite_darwin_privacy-sqflite-Info.plist */, + 789C0D2A051AE488F42B2FD4CBF41247 /* sqflite.modulemap */, + F0F69A30C36E2DD6C004A57D4BE20B7D /* sqflite-dummy.m */, + 48BD3C3C7868A5D26877B532CD7FD3ED /* sqflite-Info.plist */, + B74CB10FC0A4B5D2DA61ACB0950E4B90 /* sqflite-prefix.pch */, + CC8D7438357DE07DC1F4655480247566 /* sqflite-umbrella.h */, + 52F650C38F364BA6AD78BDD7775115D5 /* sqflite.debug.xcconfig */, + B3F81CBF23C2B71680A734B4B74EA6EF /* sqflite.release.xcconfig */, ); - name = projects; - path = projects; + name = "Support Files"; + path = "../../../../Pods/Target Support Files/sqflite"; sourceTree = ""; }; - 5094372F12A7724064EEBA24FB20E970 /* .. */ = { + 5063DED19CB5BCFAAA3397D5B1CB1BF7 /* image_picker_ios */ = { isa = PBXGroup; children = ( - F1504975BE4519F0D5BF6D9BB2E11FEB /* .. */, + 047C733C71B723088849A12BF19A9607 /* Sources */, ); - name = ..; - path = ..; + name = image_picker_ios; + path = image_picker_ios; sourceTree = ""; }; - 517F934F43E8F6CBE2B1BF9CED3AC693 /* Documents */ = { + 5154783350B9564E4ED36ABD275E4C9F /* projects */ = { isa = PBXGroup; children = ( - 439AEC0ABB04E7C2B142CF180788B39B /* projects */, + 6FE4BFE1CAA3F076FF41C87BF3BBBBFA /* broxus */, ); - name = Documents; - path = Documents; + name = projects; + path = projects; sourceTree = ""; }; - 51A2D0C3D398BC54D356FA681E9DD073 /* plugins */ = { + 51720516404306BBBA665846DEF5405D /* local_auth_darwin */ = { isa = PBXGroup; children = ( - 8EB6C0002AB47A0475DB1C953D9480FF /* share_plus */, + 5DE3DAD06809D3947892088415182D69 /* .. */, + 82A34B9B147687A357A97299ACB67671 /* Pod */, + 5C4620ADBC5E707F68E81C8DDDBD1D68 /* Support Files */, ); - name = plugins; - path = plugins; + name = local_auth_darwin; + path = ../.symlinks/plugins/local_auth_darwin/darwin; sourceTree = ""; }; - 5372829D8E9E74426B5EA90F58D16210 /* plugins */ = { + 51B745D43E76A8EFE722585F9593E8BA /* plugins */ = { isa = PBXGroup; children = ( - 405A26CB5ACE0EC76A7B28F1A9DD45BE /* sqflite */, + DAF5D1BC50F304240F06AB430CD5B136 /* package_info_plus */, ); name = plugins; path = plugins; sourceTree = ""; }; - 53D230C37F7010CEBAD991E9C24ACC79 /* url_launcher_ios */ = { + 51E05CA3A181BF643DB1FB4B5C475B08 /* connectivity_plus */ = { isa = PBXGroup; children = ( - AEE4F8C3604E3458DDCD6329BBA2B6EB /* Sources */, + 63D8B20962739E4ECE10B31427196C3B /* .. */, + 38F9C8B90D159ECE78B41B5E1EC10FFD /* Pod */, + 0158AA030AE10CE8E70A342A647443F7 /* Support Files */, ); - name = url_launcher_ios; - path = url_launcher_ios; + name = connectivity_plus; + path = ../.symlinks/plugins/connectivity_plus/darwin; sourceTree = ""; }; - 54013E4DCBD837B26F9A5F39C1A04D8B /* Pod */ = { + 520F8D822F9D00D634CFF36235D2CC6A /* mobile_scanner */ = { isa = PBXGroup; children = ( - 9B03DFD4B4F4CE2D1C60A9B06CE536EC /* LICENSE */, - 6B1F58ED911279AB864FCDECE7DCFE2F /* path_provider_foundation.podspec */, + B4DB12D01EEF21A3360B715BCB267F27 /* ios */, ); - name = Pod; + name = mobile_scanner; + path = mobile_scanner; sourceTree = ""; }; - 5436104891F7EA9EFCD7657B0D24B7B3 /* plugins */ = { + 5248690233837B54CA664B83E5A84534 /* ever_wallet_flutter_new */ = { isa = PBXGroup; children = ( - B363E2B0F3FCDCB6428395A86A93C9DF /* integration_test */, + 32E45E03C2BC502AB1311E07FC40A905 /* ios */, ); - name = plugins; - path = plugins; + name = ever_wallet_flutter_new; + path = ever_wallet_flutter_new; sourceTree = ""; }; - 54583B75B9F93710F3F3B46B3A4CA52F /* include */ = { + 5259451EE387D7D79FD22BD162897B4F /* ios */ = { isa = PBXGroup; children = ( - 94836C76B85E2A295221CCE01B9974F8 /* local_auth_darwin */, + 2C6EAB58ADD9F8E5D3E33D589CDFA698 /* .symlinks */, ); - name = include; - path = include; + name = ios; + path = ios; sourceTree = ""; }; - 546692EC0C526C8CB50274E5979AB303 /* image_picker_ios */ = { - isa = PBXGroup; - children = ( - 656EB47C1456580D300CFA2E062F442B /* .. */, - F505AE66898F6FA0A81E5FFDD847739F /* Pod */, - 27B4E40417D89D11CE8C980BE66D35AF /* Support Files */, + 527A58CF6A3382515A2B3F680FE909B0 /* strategies */ = { + isa = PBXGroup; + children = ( + 8847FDC08DBF05A1A662DC9F0969746E /* AppTrackingTransparencyPermissionStrategy.h */, + 4F949A9EAD3580AE420B5F0428A66D5C /* AppTrackingTransparencyPermissionStrategy.m */, + D34A317FB0989C265BB98D135AA19D4C /* AssistantPermissionStrategy.h */, + F4B35548980E21E935D2D42BB43476D4 /* AssistantPermissionStrategy.m */, + C1D6523B199579EEA23F1BF30B87D348 /* AudioVideoPermissionStrategy.h */, + 47A6015B555521EF07B1E7D5BA319B99 /* AudioVideoPermissionStrategy.m */, + B6B71759848E055EEF6E53036EA99CA6 /* BackgroundRefreshStrategy.h */, + 5AAFCE5D453CBDFE560F41DEF7D746DD /* BackgroundRefreshStrategy.m */, + 19EF02DC76D896E38265ECFA835AA715 /* BluetoothPermissionStrategy.h */, + 047F06E61EC2942DA212BD96E97059FD /* BluetoothPermissionStrategy.m */, + C34D4A2FCAD5B715BC9682100596DA59 /* ContactPermissionStrategy.h */, + 647AF74A660CD01F846A1543442C4B46 /* ContactPermissionStrategy.m */, + B9777677AA99B4D6A35B0B528B638929 /* CriticalAlertsPermissionStrategy.h */, + 2CE61C43BE36079E33CB7C61EA3DB4C7 /* CriticalAlertsPermissionStrategy.m */, + 2A9B0E25C0A53591DD2B8559D5DE5F16 /* EventPermissionStrategy.h */, + 148703012B70444E07ADD934486CCB2C /* EventPermissionStrategy.m */, + F8675F43CB9C658FC0B29390FA0563F6 /* LocationPermissionStrategy.h */, + 464CAA817B716A5752FDE949AD98B6AE /* LocationPermissionStrategy.m */, + 9AE0B2EFC5754E0C98E28F32A35425D7 /* MediaLibraryPermissionStrategy.h */, + 85E0ACDC2C40D9337B657062ED6035D8 /* MediaLibraryPermissionStrategy.m */, + CBC5A031E6729E06D57FE34564F75618 /* NotificationPermissionStrategy.h */, + 9F116BCA4D417E4EB826B96627A0202B /* NotificationPermissionStrategy.m */, + 92C20030DBD8769092782F8CC1241A8F /* PermissionStrategy.h */, + 27291D9AA336B64AF35485F8BE409257 /* PhonePermissionStrategy.h */, + AB9CCB6E2B6AE39C86053769F4D6190C /* PhonePermissionStrategy.m */, + 44D265B00034636200F304E3CF6B5256 /* PhotoPermissionStrategy.h */, + B0C6FA547CC0B715794EBE135341240D /* PhotoPermissionStrategy.m */, + 7FB3E79A608C15B86EC670162E505CA5 /* SensorPermissionStrategy.h */, + CD581969E081A31FC373B1AFED9B9E54 /* SensorPermissionStrategy.m */, + 5D1DC509408A3AC2E1A90C74C1E3FC08 /* SpeechPermissionStrategy.h */, + EC6646ACA23E42A058E5DE9289781AC4 /* SpeechPermissionStrategy.m */, + CFD58391053F6CE1A08C18BF0CCBC40F /* StoragePermissionStrategy.h */, + 084CA2C1F3E73809901284C0BFBAC50D /* StoragePermissionStrategy.m */, + 693045B9D1D77942BB85962EF30FA0FF /* UnknownPermissionStrategy.h */, + BA1E1503497901FA68405E3103199608 /* UnknownPermissionStrategy.m */, ); - name = image_picker_ios; - path = ../.symlinks/plugins/image_picker_ios/ios; + name = strategies; + path = strategies; sourceTree = ""; }; - 552710D55877C0AF6193D9D56C96C6DB /* .. */ = { + 532A9C593171CC5C87940A09D9E410C1 /* .. */ = { isa = PBXGroup; children = ( - 79B467C5F68E17BCB1CA9312770F68F6 /* .. */, - B89D16126A0A6D59BC06C543905FC4D7 /* Documents */, + A6FC34CAE686925F4B94CCBBC4316ECD /* .. */, + 9593EA255BF4143F3C7B035716B22785 /* Documents */, ); name = ..; path = ..; sourceTree = ""; }; - 555C8F6074F379C5365A385BD44A9EB5 /* ios */ = { + 534A041DCA0F79D7A8785DE93067457A /* broxus */ = { isa = PBXGroup; children = ( - 0B52A2E3E433C4EE5F4783D2725FE7F8 /* Classes */, + A5BACC3F29DA3927AFE95FFCDFBBB323 /* ever_wallet_flutter_new */, ); - name = ios; - path = ios; + name = broxus; + path = broxus; sourceTree = ""; }; - 5579ED0E4803A03329BB462B571DD273 /* flutter_native_splash */ = { + 538EC0099F18ECEA68DA9445FCC41B82 /* .. */ = { isa = PBXGroup; children = ( - 42E0BE09CC6A7CBB55730C2D7B4FDF1F /* .. */, - FF014C62536AF637F4B730D714619909 /* Pod */, - B4FFC18F32F1BF85A9FFA88A65ADF0E5 /* Support Files */, + 1428C7F81B6706C6AA3FEA98E8349F82 /* .. */, ); - name = flutter_native_splash; - path = ../.symlinks/plugins/flutter_native_splash/ios; + name = ..; + path = "../../../../../../../../../.pub-cache/hosted/pub.dev/mobile_scanner-3.4.1/ios"; + sourceTree = ""; + }; + 539F7CF67FD05F88F514F143A59BFA73 /* Documents */ = { + isa = PBXGroup; + children = ( + B0C2672B355E204262B0CF51F38C638C /* projects */, + ); + name = Documents; + path = Documents; sourceTree = ""; }; - 560F4B60B6774DBC14584592F015A46E /* .. */ = { + 547683682653600BAA4228C8883BF038 /* .. */ = { isa = PBXGroup; children = ( - D9B39EF1B81FD906A2F7F1CB9BFD450C /* Documents */, + 532A9C593171CC5C87940A09D9E410C1 /* .. */, ); name = ..; path = ..; sourceTree = ""; }; - 57A74FD0FD04EE0C24966620F5DDC72F /* darwin */ = { + 55715C1D6F961C804C7920A66E63293B /* Documents */ = { isa = PBXGroup; children = ( - CA553D30FBDA7F3467D8086337D4C334 /* shared_preferences_foundation */, + 0CA8CE666FB7CD654180C9B2C2DB4E4A /* projects */, ); - name = darwin; - path = darwin; + name = Documents; + path = ../Documents; sourceTree = ""; }; - 57AA1E85FCF71D9BF3F3DC509E46B9EE /* .symlinks */ = { + 5658A070BD9450556C9D348111E2B497 /* Documents */ = { isa = PBXGroup; children = ( - DE0B2476E05F41E14584159C6F3D192C /* plugins */, + 410FA0115A78B5B0932E0024C4654E12 /* projects */, ); - name = .symlinks; - path = .symlinks; + name = Documents; + path = Documents; + sourceTree = ""; + }; + 5748300CDA23DF8CF38904C0419520CA /* path_provider_foundation */ = { + isa = PBXGroup; + children = ( + 7B89EDE1471C74DDC6CAC1A81BE86E5C /* Sources */, + ); + name = path_provider_foundation; + path = path_provider_foundation; sourceTree = ""; }; 57ADD3EF50C54582D49D77CFD8D6A3C7 /* Core */ = { @@ -5465,731 +5401,892 @@ name = Core; sourceTree = ""; }; - 58B12E975DABBE71E39E20CA40EA01C9 /* path_provider_foundation */ = { - isa = PBXGroup; - children = ( - BF7C58305D0B6109C26AA453FBAA82C6 /* darwin */, - ); - name = path_provider_foundation; - path = path_provider_foundation; - sourceTree = ""; - }; - 58C342E220AFA18C32A22D9D21BB7131 /* .. */ = { + 57BD136DBD02575CFDB40EC6274779C3 /* .. */ = { isa = PBXGroup; children = ( - FC40C170835A8327319C8A277C3B26E0 /* .. */, + 45C7D07DE6CE795E80E2ABAC84EAE704 /* .. */, ); name = ..; path = ..; sourceTree = ""; }; - 5AD4E50B1EDE9B2D2CD41AF858D0534E /* Frameworks */ = { + 588DE5F2452B8DBCC2EADEC944AB1F17 /* ios */ = { isa = PBXGroup; children = ( - ACB8F2379DAAAB0BDB22E111998D1346 /* MLImage.framework */, + A2B0F405F397A9B324A8BE74F5D02966 /* .symlinks */, ); - name = Frameworks; + name = ios; + path = ios; sourceTree = ""; }; - 5C658072811DAF9803A713226A1AEDDB /* .. */ = { + 58E1692FA4DBFE7F34FA6F713F9CF7A5 /* Resources */ = { isa = PBXGroup; children = ( - BF96EF41262696BB603F1DF6727400A5 /* .. */, + 58A6B07C2849FF1DDEA7048BE6237F78 /* PrivacyInfo.xcprivacy */, ); - name = ..; - path = ..; + name = Resources; + path = Resources; sourceTree = ""; }; - 5C9C6A6E31E27D81566EA9FD8065FF45 /* Types */ = { - isa = PBXGroup; - children = ( - FA0DD163EC52D45E22B5B2832002F3B2 /* ClientCertChallenge.swift */, - FFF90697DD9F42A70FCCA4B97AC19F5E /* DownloadStartRequest.swift */, - 3D7756A771AB6DAC1C0DC1450A2F507F /* HitTestResult.swift */, - 10864F3E8C3F89FB23B46C36F9BBD8FE /* NSAttributedString.swift */, - 300699A38B7904D5D573BBDE8F8E5015 /* PluginScript.swift */, - 489F41AB03F009F10DB6667A6AE00AF0 /* SecCertificate.swift */, - 9B4B121F38A77C97F9D95DD2C1DCCAB8 /* ServerTrustChallenge.swift */, - 57CECFC214BEF5D0F81A16622EE9DE16 /* Size2D.swift */, - 5AD6A568D91726A600D976F468BB6640 /* SslCertificate.swift */, - 2CF884DB478A409FAC98F0B0922BFDF9 /* SslError.swift */, - 3C06302D722083A52A9F138FD867674C /* UIColor.swift */, - 14874210F011FB025B8A19341D7941C0 /* URLAuthenticationChallenge.swift */, - 8051B5ECBE878BC68F1CD7537D3C18A0 /* URLCredential.swift */, - 2BA6122EA9114A8BAFCEDB3AEF8D1E4F /* URLProtectionSpace.swift */, - B6BAF2C9630FC49E179BD424E68FCACA /* URLRequest.swift */, - 7EB14EECD4BAEF7CD98F5611C103ADFC /* URLResponse.swift */, - A3F75FB80E0230F75AAADD648B5458A5 /* UserScript.swift */, - 90660A0512DF3868EAE54D0970E43E41 /* WebMessage.swift */, - E314798A0A07820FA7D756A36DA4B2AC /* WebMessageChannel.swift */, - 3D14AB2A5EC9199FB00C56394DAA2A4A /* WebMessageListener.swift */, - 3BFBF7C7E81A0074C9D5C035E387E9AF /* WebMessagePort.swift */, - B0628838D1DA1A34D2D6142D6F4F1048 /* WebViewTransport.swift */, - F660CCD8BC9A6F575CDC895206D0614B /* WKContentWorld.swift */, - B5623F4B30FB287E825AE3CDACDF4B13 /* WKFrameInfo.swift */, - B929DB78E295C94744A9135D17233628 /* WKNavigationAction.swift */, - 1F2764E8268C46A61F31FDB3FA362A7A /* WKNavigationResponse.swift */, - 9E44521577C540A3E9039681DA7CFB83 /* WKSecurityOrigin.swift */, - 2B8AF3A64553B8CFFCCDF8D62596A375 /* WKUserContentController.swift */, - F3DFC04477C14ED5812BC6FDB5389702 /* WKWindowFeatures.swift */, + 5999EF5D9DDDA63A00C9C8093923C992 /* plugins */ = { + isa = PBXGroup; + children = ( + 2B6459504F40166B8976481B6527FC6A /* local_auth_darwin */, ); - name = Types; - path = Types; + name = plugins; + path = plugins; sourceTree = ""; }; - 5D720D37D59CDEC90B62DD8781142189 /* projects */ = { + 59DF0476AE7910C5F584C339FA3F1912 /* ever_wallet_flutter_new */ = { isa = PBXGroup; children = ( - 84A129FB85C41DC74251E6E4F45DB84E /* ever_wallet_flutter_new */, + 8A9767A824125BCE694621EC58EC105E /* ios */, ); - name = projects; - path = projects; + name = ever_wallet_flutter_new; + path = ever_wallet_flutter_new; sourceTree = ""; }; - 5D7DCA2A978EA8C83FB9C5C4A9122086 /* Documents */ = { + 5A238B4BEF453756580C3BAF7B08DA1F /* .. */ = { isa = PBXGroup; children = ( - F1D466E5C5C3FCA38B404BE62A368C92 /* projects */, + 052083EBCEBAF64F2A4A4F1A2648D23B /* .. */, ); - name = Documents; - path = Documents; + name = ..; + path = ..; sourceTree = ""; }; - 5DBEC73D85E76C37405712954BAE7A07 /* ios */ = { + 5AD4E50B1EDE9B2D2CD41AF858D0534E /* Frameworks */ = { isa = PBXGroup; children = ( - 57AA1E85FCF71D9BF3F3DC509E46B9EE /* .symlinks */, + ACB8F2379DAAAB0BDB22E111998D1346 /* MLImage.framework */, ); - name = ios; - path = ios; + name = Frameworks; sourceTree = ""; }; - 5DDF9642068C4A09B06C07A47A258221 /* path_provider_foundation */ = { + 5C10E98CF7BBE35BC89CB2D129D72F12 /* url_launcher_ios */ = { isa = PBXGroup; children = ( - B042ECD43C630C8AED5DB29C9AD3E697 /* Resources */, + F251B83D30D91F9DDFF81D2EFBC9E168 /* ios */, ); - name = path_provider_foundation; - path = path_provider_foundation; + name = url_launcher_ios; + path = url_launcher_ios; sourceTree = ""; }; - 5E0C9E0A94389E978D5FB6B2D56B6464 /* ios */ = { + 5C4620ADBC5E707F68E81C8DDDBD1D68 /* Support Files */ = { isa = PBXGroup; children = ( - 688F369ABF13C55356EC5B389E16FFE2 /* Classes */, + 5A10D61781F68EF9B503F89DB5D8E569 /* local_auth_darwin.modulemap */, + 73F7D2C98CEEAF905F9784C9CA48A4CF /* local_auth_darwin-dummy.m */, + ED4CAE2CF7527095838283C547A19349 /* local_auth_darwin-Info.plist */, + C9AD5773F309D37C952811FC3C17BBD8 /* local_auth_darwin-prefix.pch */, + 606EE2344E4E1B60A9C6DFCBA7F21C85 /* local_auth_darwin-umbrella.h */, + ECD77C4498C8B5690FAD6D3E053D7AEA /* local_auth_darwin.debug.xcconfig */, + 9ECF4B2E725AF88A4D8BD77668F776C4 /* local_auth_darwin.release.xcconfig */, + 517F7D79770B6156E39FEB4689E3C404 /* ResourceBundle-local_auth_darwin_privacy-local_auth_darwin-Info.plist */, ); - name = ios; - path = ios; + name = "Support Files"; + path = "../../../../Pods/Target Support Files/local_auth_darwin"; sourceTree = ""; }; - 5E54780159270CFB2CF234D4D201070E /* .symlinks */ = { + 5CF704EE56C65EAE2C45B02C114472C8 /* share_plus */ = { isa = PBXGroup; children = ( - E041EC00D218C2E047B4AA6A1F6458E2 /* plugins */, + CDB594257FDA819BB9FA95826CCDCED2 /* .. */, + FEAD1EF26ABF0C1CBC7995CD6A69BC35 /* Pod */, + BEC87721F1DE10A611FF4333DD6CD8F4 /* Support Files */, ); - name = .symlinks; - path = .symlinks; + name = share_plus; + path = ../.symlinks/plugins/share_plus/ios; sourceTree = ""; }; - 5FA0621D00450144AC70E18880113AB1 /* projects */ = { + 5D288C63FB11334242D48C9951FF2BFE /* darwin */ = { isa = PBXGroup; children = ( - D9326B032D90EFE126AB085D53B8DCF7 /* ever_wallet_flutter_new */, + 16D9E8E8FB014471868660A9E57D87CE /* local_auth_darwin */, ); - name = projects; - path = projects; + name = darwin; + path = darwin; sourceTree = ""; }; - 6125A856D1E669469D904D93F620D30E /* ios */ = { + 5DE3DAD06809D3947892088415182D69 /* .. */ = { isa = PBXGroup; children = ( - 4ED85C494CE537E7521E2663F42401D5 /* Classes */, + C37F6C773B22DBD29DCE4FB6CA9935E8 /* .. */, ); - name = ios; - path = ios; + name = ..; + path = "../../../../../../../../../.pub-cache/hosted/pub.dev/local_auth_darwin-1.3.1/darwin/local_auth_darwin/Sources"; sourceTree = ""; }; - 61268F7D180AEB8EA105B3C8EC144291 /* .symlinks */ = { + 5DE4BEE167AD44C50F14B8E044AA5AED /* .. */ = { isa = PBXGroup; children = ( - EFB0E368FB57A1D48E2A7B65F72C8627 /* plugins */, + 91C94C6491AD26FDC4069E1166DC49D1 /* Documents */, ); - name = .symlinks; - path = .symlinks; + name = ..; + path = ..; sourceTree = ""; }; - 618A8744DDBBCA21D457DCEB72C360A1 /* .. */ = { + 5E39CC93FD1DE9CAFD07274DE75CDDBD /* .. */ = { isa = PBXGroup; children = ( - D535BAF61401A10EE189906D37CCDD50 /* .. */, + D83D9921630B2DF46EAEF02951F90700 /* .. */, ); name = ..; path = ..; sourceTree = ""; }; - 6308C4C3E6A65EA824C1EE0C3A9F4FBF /* Support Files */ = { + 5E4F67A0A5C8F6DCC3B46728AC9FF017 /* Support Files */ = { isa = PBXGroup; children = ( - 1BD2816772DEF178FF6B5F47E0B46992 /* mobile_scanner.modulemap */, - DE71A59998DEBF140B4120E043AC6349 /* mobile_scanner-dummy.m */, - B48BA4B213D2794D0F502805396E77EE /* mobile_scanner-Info.plist */, - 801C21EA40A96BE87EAE3CFF08C608FA /* mobile_scanner-prefix.pch */, - 8A18B24DB7C4332121DE9235A9AB8A4B /* mobile_scanner-umbrella.h */, - A39F67D29C8FDC76E1F5C5300DE3CAD5 /* mobile_scanner.debug.xcconfig */, - 6D3FC8F30A9759CEC467C9CBCFF1BDA6 /* mobile_scanner.release.xcconfig */, + 0CFC849C453EF54186A1E08F9537BFA9 /* mobile_scanner.modulemap */, + 71BD6A002FADC2715665B373D33DAC46 /* mobile_scanner-dummy.m */, + 93D2570F2E82CB2840CC01D9E3987CBC /* mobile_scanner-Info.plist */, + D15068D62834A8135FFFE94294CB22C7 /* mobile_scanner-prefix.pch */, + 5D3DF78F3AB1A8212A48E1DA7888300A /* mobile_scanner-umbrella.h */, + 4D8D74E861EB0F6DC174DEE3768D4ECC /* mobile_scanner.debug.xcconfig */, + 55CABBFDA741B6809730DEE1165E60C9 /* mobile_scanner.release.xcconfig */, ); name = "Support Files"; path = "../../../../Pods/Target Support Files/mobile_scanner"; sourceTree = ""; }; - 6338954382B50510B673115C642302AC /* .. */ = { + 5F11D9B10645809DDF5B821080469EDF /* .. */ = { isa = PBXGroup; children = ( - 81794491BCBCA53B13C02D537C014837 /* .. */, + 4C680A2E07DD4174A32E4F461214E686 /* .. */, + 694297EBE5E876D518EBB1D41D16EE24 /* Documents */, ); name = ..; - path = "../../../../../../../../.pub-cache/hosted/pub.dev/flutter_keyboard_visibility-5.4.1/ios"; + path = ..; sourceTree = ""; }; - 654E2E29326356F1004FE320E555F98E /* nanopb */ = { + 5F48AA34647727DF92F2FF94FDC415EC /* flutter_keyboard_visibility */ = { isa = PBXGroup; children = ( - C59FFA97AA19AA1BC712C53B3F8F378F /* pb.h */, - C056D8E82A3E70E3EFDFF9F69D332D85 /* pb_common.c */, - F72515A1FEFA1572FD31C19A42121996 /* pb_common.h */, - 5BC0650D481B6EFD806654B3DB150F71 /* pb_decode.c */, - C55C678B2D0A4C4A604DB66D1918C56F /* pb_decode.h */, - 19E95F3D72548415AF768AA1089369AC /* pb_encode.c */, - 2D57F6C220C06278F8AB8D5532AB50D1 /* pb_encode.h */, - 449253A5EB0A9245B4A2950F74F39A0E /* decode */, - D241BE68138D8CA61D89AFF63D6E9EB4 /* encode */, - 45C908DEE2C079E7BA308013930317BC /* Resources */, - 3CB2D07C0B08B9F1F19AD1EC1928B9BC /* Support Files */, + 3CB6C4909CBC666DDF34133237DA3661 /* ios */, ); - name = nanopb; - path = nanopb; + name = flutter_keyboard_visibility; + path = flutter_keyboard_visibility; sourceTree = ""; }; - 656EB47C1456580D300CFA2E062F442B /* .. */ = { + 5FE306D3829F407710D2D034F445634E /* .. */ = { isa = PBXGroup; children = ( - 5C658072811DAF9803A713226A1AEDDB /* .. */, + D8BE2953EFA64E56DD6157D4CB94836F /* .. */, ); name = ..; - path = "../../../../../../../../.pub-cache/hosted/pub.dev/image_picker_ios-0.8.12/ios/image_picker_ios/Sources"; + path = ..; sourceTree = ""; }; - 657A0572C758EB2CA6148753E43BEE58 /* .. */ = { + 5FE6BF9B397E09E6F53F8B9A582B7638 /* .. */ = { isa = PBXGroup; children = ( - 8D6D972633085D349DE7783DDB9F394D /* Documents */, + 8B43A3A49D1167A8E540B72BCB0D628D /* .. */, ); name = ..; path = ..; sourceTree = ""; }; - 65BD3D2A57C89A0BAB5EE866D0D081C4 /* plugins */ = { + 60907CB7BEE9ED8F95084CB6406F6A97 /* projects */ = { isa = PBXGroup; children = ( - 4D7C12FD0E4EE402536B10917D1EDD43 /* connectivity_plus */, + 00A2B0628D2A6D0DDD5A56AD455DD5B8 /* broxus */, ); - name = plugins; - path = plugins; + name = projects; + path = projects; sourceTree = ""; }; - 66A40D64C015349CD21DE447C3C08462 /* .. */ = { + 60935CEAF5D4CCBAE58CD2B3D2D3D3D3 /* ever_wallet_flutter_new */ = { isa = PBXGroup; children = ( - D16A7AF636C47C3E0B2A1191CDC233F1 /* .. */, + EC758CFD7E467EE4C3E51B8415439D69 /* ios */, ); - name = ..; - path = ..; + name = ever_wallet_flutter_new; + path = ever_wallet_flutter_new; sourceTree = ""; }; - 6721D9CA315BD1D11BE3F8749C356FCC /* shared_preferences_foundation */ = { + 60EE9E87E5FF9559B56544DE4A4BD195 /* Pod */ = { isa = PBXGroup; children = ( - 7AB6FBD7B11B92A2988F38BC7DF22D53 /* Sources */, + 30808562807951DFCC2FD610B9FD7F6E /* integration_test.podspec */, ); - name = shared_preferences_foundation; - path = shared_preferences_foundation; + name = Pod; sourceTree = ""; }; - 6760BA21525B7FFD4E668F8556AD9310 /* NSData+zlib */ = { + 6247ED605B3DB27533CF55A73ACC578E /* .. */ = { isa = PBXGroup; children = ( - DA1F43D55439335C3BAFB361D9EFAA38 /* GTMNSData+zlib.h */, - 6E7BD82EA8128B9741DA5CD53B5F7211 /* GTMNSData+zlib.m */, + CF20F6EBEB8AC9AB0A92CC7C4342A82F /* .. */, ); - name = "NSData+zlib"; + name = ..; + path = ..; sourceTree = ""; }; - 67C08334A8CEAE3A74E81055C08EF794 /* .. */ = { + 62910B4A3AA6D9BCF65BB1D97A7184D9 /* broxus */ = { isa = PBXGroup; children = ( - 7D161BACF0F2757EC052F9841630E255 /* .. */, + 60935CEAF5D4CCBAE58CD2B3D2D3D3D3 /* ever_wallet_flutter_new */, ); - name = ..; - path = ..; + name = broxus; + path = broxus; sourceTree = ""; }; - 686289CDE9C063EC9B15D78DE95EF65E /* DebugUtils */ = { + 63BF5ED8F95C1F0F509ADD97532285D9 /* .. */ = { isa = PBXGroup; children = ( - D03F3816E83144F5FB41ECDA4FC0736E /* GTMDebugSelectorValidation.h */, - F026B684B69D3BCD9B93F806B5D46614 /* GTMDebugThreadValidation.h */, - CFCB36653BB0F12C8015257A8DBDF8B4 /* GTMMethodCheck.h */, + 5DE4BEE167AD44C50F14B8E044AA5AED /* .. */, ); - name = DebugUtils; + name = ..; + path = ..; sourceTree = ""; }; - 688F369ABF13C55356EC5B389E16FFE2 /* Classes */ = { + 63D8B20962739E4ECE10B31427196C3B /* .. */ = { isa = PBXGroup; children = ( - CF1E0666638FB449BBC958A528C36A77 /* FPPPackageInfoPlusPlugin.h */, - A4E3259CE433DE924BD4DF713EFF498D /* FPPPackageInfoPlusPlugin.m */, + 00B9B901DC2DF5B6D8F001C505E659A2 /* .. */, ); - name = Classes; - path = Classes; + name = ..; + path = "../../../../../../../../../.pub-cache/hosted/pub.dev/connectivity_plus-6.0.5/darwin"; sourceTree = ""; }; - 6940A18070215C6760AC4E1EB120C2F1 /* mobile_scanner */ = { + 63DA548AF102A2B538AFEA5E4B7979E9 /* .. */ = { isa = PBXGroup; children = ( - 6125A856D1E669469D904D93F620D30E /* ios */, + 490D6D9E9277A3C9524C5B1AA94276D1 /* .. */, ); - name = mobile_scanner; - path = mobile_scanner; + name = ..; + path = ..; + sourceTree = ""; + }; + 63E7227ECEBC66C44F031ABBAB3FE495 /* plugins */ = { + isa = PBXGroup; + children = ( + B62E8BAAEDAFBF6D52D8FFD9558C811D /* shared_preferences_foundation */, + ); + name = plugins; + path = plugins; sourceTree = ""; }; - 698EC2EA98058B0049CDFE49322EAF3A /* .. */ = { + 64CF671086DAA81E8B4834E908DBF8DF /* .. */ = { isa = PBXGroup; children = ( - 08FAC376C98D6E2078D53429CE195C29 /* .. */, + B5CEAB55A4A6C0EA2EA5ED353B8876C8 /* .. */, ); name = ..; path = ..; sourceTree = ""; }; - 699A8BC96D79E49A6F6A805B1371D54D /* Logger */ = { + 654E2E29326356F1004FE320E555F98E /* nanopb */ = { isa = PBXGroup; children = ( - 5C432F086D8174EA640A97AA8BF3E826 /* GTMLogger.h */, - 3C2C6251441F3BD9D4EFFEDB34578906 /* GTMLogger.m */, + C59FFA97AA19AA1BC712C53B3F8F378F /* pb.h */, + C056D8E82A3E70E3EFDFF9F69D332D85 /* pb_common.c */, + F72515A1FEFA1572FD31C19A42121996 /* pb_common.h */, + 5BC0650D481B6EFD806654B3DB150F71 /* pb_decode.c */, + C55C678B2D0A4C4A604DB66D1918C56F /* pb_decode.h */, + 19E95F3D72548415AF768AA1089369AC /* pb_encode.c */, + 2D57F6C220C06278F8AB8D5532AB50D1 /* pb_encode.h */, + 449253A5EB0A9245B4A2950F74F39A0E /* decode */, + D241BE68138D8CA61D89AFF63D6E9EB4 /* encode */, + 45C908DEE2C079E7BA308013930317BC /* Resources */, + 3CB2D07C0B08B9F1F19AD1EC1928B9BC /* Support Files */, ); - name = Logger; + name = nanopb; + path = nanopb; sourceTree = ""; }; - 69D2EA965D8FFFBAE9B42947324D29EE /* .symlinks */ = { + 65B592949E2A12A5C2269BB50D8E1816 /* path_provider_foundation */ = { isa = PBXGroup; children = ( - DB8122A05918B51410CDB47818EE3CFC /* plugins */, + 2C7B1453C44AC872E8497969BDA160D8 /* Sources */, ); - name = .symlinks; - path = .symlinks; + name = path_provider_foundation; + path = path_provider_foundation; sourceTree = ""; }; - 69DABAA61AE472B40A26DF740C80590B /* url_launcher_ios */ = { + 669236AF44B7837C52380C13A9195034 /* darwin */ = { isa = PBXGroup; children = ( - 4D6F35AF3EF1409CFD742F9E3A8011DB /* ios */, + 7AE585365FB5E0D635924C57AC7F2A8B /* Classes */, + 6BAD695B5C4C637DCFED8A88F5675635 /* Resources */, ); - name = url_launcher_ios; - path = url_launcher_ios; + name = darwin; + path = darwin; sourceTree = ""; }; - 6A2B8E335A805CD7A87DBBF897C6D2D3 /* .. */ = { + 6760BA21525B7FFD4E668F8556AD9310 /* NSData+zlib */ = { isa = PBXGroup; children = ( - 6BFEAF86865ADBF7F561574F66666469 /* .. */, + DA1F43D55439335C3BAFB361D9EFAA38 /* GTMNSData+zlib.h */, + 6E7BD82EA8128B9741DA5CD53B5F7211 /* GTMNSData+zlib.m */, ); - name = ..; - path = ..; + name = "NSData+zlib"; + sourceTree = ""; + }; + 67C2589D4E3C3FE5C3B011A02D7D3307 /* SafariViewController */ = { + isa = PBXGroup; + children = ( + D847CB01E9ED762D56CE7E6F180E5882 /* ChromeSafariBrowserManager.swift */, + F8D0813EB02AB40EE5DA2869F98A7D1F /* SafariBrowserOptions.swift */, + 53E4CB534020D7746FCAC465A123D541 /* SafariViewController.swift */, + ); + name = SafariViewController; + path = SafariViewController; sourceTree = ""; }; - 6BFEAF86865ADBF7F561574F66666469 /* .. */ = { + 681835E5AC71AEEBD713C302E66A41EF /* .. */ = { isa = PBXGroup; children = ( - DD8C81203C435A24C865431432EBC1F3 /* .. */, + 0F8F3AB321A224EC620F8D50D867CE04 /* .. */, + 2EEE7E810244EDF4A4C564AE9FC0C1BA /* Documents */, ); name = ..; path = ..; sourceTree = ""; }; - 6C2E416347F3502124FD16972AFED3A2 /* Resources */ = { + 68492D528FEE90B488A4CFD578683A1C /* projects */ = { isa = PBXGroup; children = ( - 6BA092AC59C062C1185FE39A96FB0D4E /* PrivacyInfo.xcprivacy */, + 62910B4A3AA6D9BCF65BB1D97A7184D9 /* broxus */, ); - name = Resources; - path = Resources; + name = projects; + path = projects; sourceTree = ""; }; - 6C8BE3B333505286B775CB4946CC2B1C /* ios */ = { + 684C44CB906827F078E27B8BBFA65C63 /* ever_wallet_flutter_new */ = { isa = PBXGroup; children = ( - 09C7512996EED70B5C9DE197794F9DFB /* .symlinks */, + 6D3E2716B79F85A8EF79ACA2CB514B1A /* ios */, ); - name = ios; - path = ios; + name = ever_wallet_flutter_new; + path = ever_wallet_flutter_new; + sourceTree = ""; + }; + 686289CDE9C063EC9B15D78DE95EF65E /* DebugUtils */ = { + isa = PBXGroup; + children = ( + D03F3816E83144F5FB41ECDA4FC0736E /* GTMDebugSelectorValidation.h */, + F026B684B69D3BCD9B93F806B5D46614 /* GTMDebugThreadValidation.h */, + CFCB36653BB0F12C8015257A8DBDF8B4 /* GTMMethodCheck.h */, + ); + name = DebugUtils; sourceTree = ""; }; - 6CF68344E5E6833D75F30AE3FE85DA55 /* plugins */ = { + 694297EBE5E876D518EBB1D41D16EE24 /* Documents */ = { isa = PBXGroup; children = ( - 910F8003255E167B7E403268D498A043 /* flutter_secure_storage */, + 2BD2DB0035212EE2FD888496E6A1FB60 /* projects */, ); - name = plugins; - path = plugins; + name = Documents; + path = Documents; sourceTree = ""; }; - 6D153467A05EE3EAD5D0EC376F3991E4 /* .. */ = { + 696543C439F46DAD535DF2941A6E264D /* .. */ = { isa = PBXGroup; children = ( - 7519414E24AD31D9751A98F0DF063B35 /* Documents */, + 04B246B3F1E923B960AAB1BD132B8490 /* .. */, ); name = ..; path = ..; sourceTree = ""; }; - 6DFBE931308A6109A1385C3158118107 /* Support Files */ = { + 699A8BC96D79E49A6F6A805B1371D54D /* Logger */ = { isa = PBXGroup; children = ( - 1005DBA5EC4B368EDB36970A459EF93A /* connectivity_plus.modulemap */, - 8E22760BDE6AC84F410C3E92DE2FAB81 /* connectivity_plus-dummy.m */, - 87F5985BD343669F99FBF721C4264C71 /* connectivity_plus-Info.plist */, - EB4358CAC2E416D080F76065A1D659BF /* connectivity_plus-prefix.pch */, - 090FD215777C1FACEE2A5223696527D6 /* connectivity_plus-umbrella.h */, - 3CBAA32448D7092D3388A6F5B2EAD77B /* connectivity_plus.debug.xcconfig */, - B60761FA10DAC783EF5D7E4C1574226A /* connectivity_plus.release.xcconfig */, - 27A142475E75C1D043A0D481F9B801C2 /* ResourceBundle-connectivity_plus_privacy-connectivity_plus-Info.plist */, + 5C432F086D8174EA640A97AA8BF3E826 /* GTMLogger.h */, + 3C2C6251441F3BD9D4EFFEDB34578906 /* GTMLogger.m */, ); - name = "Support Files"; - path = "../../../../Pods/Target Support Files/connectivity_plus"; + name = Logger; sourceTree = ""; }; - 6EC89CC213FC75662F7B64EAF24CB94B /* ios */ = { + 6A186450B752977C69996A8D341B448A /* ios */ = { isa = PBXGroup; children = ( - 35511934146878D212AEAFAEF3470A1C /* .symlinks */, + BA18F1B7CBD08C07E850AB7DE0622C01 /* .symlinks */, ); name = ios; path = ios; sourceTree = ""; }; - 70DFEFC7D63FA9AA660179642BCAF15C /* .. */ = { + 6A3413BE3845E346C323D3A8811C54A0 /* .. */ = { isa = PBXGroup; children = ( - 3E5A4F05F425ADBD5B2889F0F3B9BF9F /* Documents */, + 338D3B39B1094419E40B0AE335FEDF00 /* .. */, + 8F7A7BF1E722602B17DF577D44E1E913 /* Documents */, ); name = ..; path = ..; sourceTree = ""; }; - 70F98EB2ED7C154C69F87452652B4409 /* Documents */ = { + 6A524BC824505B56179AC6635BD1A12E /* mobile_scanner */ = { isa = PBXGroup; children = ( - F7832A787CD6FB8ACBFAA1321A6CAF3C /* projects */, + 538EC0099F18ECEA68DA9445FCC41B82 /* .. */, + AFAB90FD5F91B61E9A206423A21D4E75 /* Pod */, + 5E4F67A0A5C8F6DCC3B46728AC9FF017 /* Support Files */, ); - name = Documents; - path = ../Documents; + name = mobile_scanner; + path = ../.symlinks/plugins/mobile_scanner/ios; sourceTree = ""; }; - 711C166128A470C5BC35A540672F5933 /* MLKitVision */ = { + 6BA504028ED9E0727105CBEC4559BFFB /* ever_wallet_flutter_new */ = { isa = PBXGroup; children = ( - 43CC21137FE462DD80446A3948D64E48 /* Frameworks */, - 085223D637FA7258AD5B38AEE22C73F8 /* Support Files */, + DE6417B91FF06DC36EDB29D761909B59 /* ios */, ); - name = MLKitVision; - path = MLKitVision; + name = ever_wallet_flutter_new; + path = ever_wallet_flutter_new; sourceTree = ""; }; - 71E304C82D7E6236356F12E5A1D4EF02 /* plugins */ = { + 6BAD695B5C4C637DCFED8A88F5675635 /* Resources */ = { isa = PBXGroup; children = ( - F6073D6174CE2348B205D0DF82E11841 /* image_picker_ios */, + AC1F8DCF13E111C292E5B4DE99767634 /* PrivacyInfo.xcprivacy */, ); - name = plugins; - path = plugins; + name = Resources; + path = Resources; sourceTree = ""; }; - 72A13681E5C49BE2740585338E2BC8C7 /* ios */ = { + 6CE67DC4146BD2A6392959C7F51B926C /* ever_wallet_flutter_new */ = { isa = PBXGroup; children = ( - 8DDC37BF9D8DD9DAA59DE9C95FD25C9F /* image_picker_ios */, + D5E05C7409DC8E43A798AC52FECA38BC /* ios */, + ); + name = ever_wallet_flutter_new; + path = ever_wallet_flutter_new; + sourceTree = ""; + }; + 6D3D0D6DCF71C4EB18A89008D9400EC4 /* .symlinks */ = { + isa = PBXGroup; + children = ( + 277046108FEE28F34E8265D8607E10FB /* plugins */, + ); + name = .symlinks; + path = .symlinks; + sourceTree = ""; + }; + 6D3E2716B79F85A8EF79ACA2CB514B1A /* ios */ = { + isa = PBXGroup; + children = ( + 1308187D516883EA29167D274FBA3340 /* .symlinks */, + ); + name = ios; + path = ios; + sourceTree = ""; + }; + 6DAC3AACC7FC5EEAE3D95E5B6F437F96 /* ios */ = { + isa = PBXGroup; + children = ( + C6846BF1D8A33502F2D54E136655A943 /* .symlinks */, ); name = ios; path = ios; sourceTree = ""; }; - 730842E6B3CEAC262ACB07DD0897AC42 /* .symlinks */ = { + 6DC07153E2633A16A9C66024470C34B8 /* Support Files */ = { + isa = PBXGroup; + children = ( + 966B465EFF00778A175B9B6FEEF25657 /* flutter_nekoton_bridge.modulemap */, + FFDBCC16D16E929114849A2CFDD9F5C9 /* flutter_nekoton_bridge-dummy.m */, + D1CC40F26088789262C95A43E6AE34D0 /* flutter_nekoton_bridge-Info.plist */, + 8407D0A790FECC03544933235DD51A49 /* flutter_nekoton_bridge-prefix.pch */, + 402E22AD19B152CD0ACB96E1959A4675 /* flutter_nekoton_bridge-umbrella.h */, + 0D7844EC716ED5F30BAC73849BDA1A7D /* flutter_nekoton_bridge-xcframeworks.sh */, + F36194840FD2222C0B70430C82AED48C /* flutter_nekoton_bridge.debug.xcconfig */, + 5B385CBA22624866DCD19C0B8CCF9C42 /* flutter_nekoton_bridge.release.xcconfig */, + ); + name = "Support Files"; + path = "../../../../Pods/Target Support Files/flutter_nekoton_bridge"; + sourceTree = ""; + }; + 6E028A712A1BB2E5A271300131A64552 /* Classes */ = { + isa = PBXGroup; + children = ( + 4E7B13718BD4CB0F5C34B077D6D8DE11 /* PermissionHandlerEnums.h */, + C9BC3B8B5E02329527B5034A165214BF /* PermissionHandlerPlugin.h */, + 3772919F8EE536F0B9FC21305A65E4E6 /* PermissionHandlerPlugin.m */, + 58E09E942E39929072D400EC167BF91C /* PermissionManager.h */, + 37573058B51C234C526F8EFACD1423D1 /* PermissionManager.m */, + 527A58CF6A3382515A2B3F680FE909B0 /* strategies */, + 90675B57D8B13AC02D72519E4901C9E6 /* util */, + ); + name = Classes; + path = Classes; + sourceTree = ""; + }; + 6E3D3A29235AA022593A5BB5F81F615C /* Pod */ = { + isa = PBXGroup; + children = ( + 8B97888FCCA82E6FA5A8454261EC5130 /* image_picker_ios.podspec */, + 36D6F6815DBE1F857791D61B4387E6BC /* ImagePickerPlugin.modulemap */, + F6EC6FA97821A9CC7EF39A9FC4DC8C8C /* LICENSE */, + ); + name = Pod; + sourceTree = ""; + }; + 6F0744843FF23AE158E04A6E57DE6F91 /* local_auth_darwin */ = { + isa = PBXGroup; + children = ( + A2DC95368DC1F3FEB88771D062A0AEA3 /* Resources */, + ); + name = local_auth_darwin; + path = local_auth_darwin; + sourceTree = ""; + }; + 6F72083EF5A3755751A6914F4CC3C50A /* .symlinks */ = { isa = PBXGroup; children = ( - F3FAE03F791D3FB68804C5C88334400B /* plugins */, + A48B8AC9120193D74AE969503F89740D /* plugins */, ); name = .symlinks; path = .symlinks; sourceTree = ""; }; - 7373D2D09E853E48B5885D2C86867EC1 /* .. */ = { + 6FBE666CBFDE3253F56A19F719F817F0 /* .. */ = { isa = PBXGroup; children = ( - 08833801CB7FE5CDE6F23DAA9AF4F76B /* Documents */, + 042C1900703234B67D09392E14015ECF /* .. */, ); name = ..; path = ..; sourceTree = ""; }; - 73AA1DFDC2CC27EA719C49AD560E3CFC /* .. */ = { + 6FE4BFE1CAA3F076FF41C87BF3BBBBFA /* broxus */ = { isa = PBXGroup; children = ( - 2EB863A3D7B885ED4A9A578C232621F9 /* .. */, + 59DF0476AE7910C5F584C339FA3F1912 /* ever_wallet_flutter_new */, + ); + name = broxus; + path = broxus; + sourceTree = ""; + }; + 6FF7BFA3D0C4FFA356ADA950C5032C6A /* .. */ = { + isa = PBXGroup; + children = ( + 963A84E598696042F7F4044ADFBC4D4F /* .. */, ); name = ..; path = ..; sourceTree = ""; }; - 743A28F8D3A418588C4E1E6A72E0C20F /* Privacy */ = { + 705BCF23CE60AFD6C1466D8B3173846A /* .. */ = { isa = PBXGroup; children = ( - 4DA7005E99BE50A0281D71684C9EEB3B /* Resources */, + ABC8B2ABAEF6238111E2A951D85B713D /* .. */, ); - name = Privacy; + name = ..; + path = ..; sourceTree = ""; }; - 7519414E24AD31D9751A98F0DF063B35 /* Documents */ = { + 710728B156D622956202ED006528D3F9 /* Support Files */ = { isa = PBXGroup; children = ( - 7E0FBC1E12AD7844C572D6DEDCD8FC8B /* projects */, + 5A3C8B83E4639DF8E3F0225082CB929E /* flutter_secure_storage.modulemap */, + D98E8679E89C302EDCB6D3B9344E538D /* flutter_secure_storage-dummy.m */, + 7CB6787DD891687CF7284FA3F50CB92E /* flutter_secure_storage-Info.plist */, + A51DD6F63808C764349D8755A2D2C86A /* flutter_secure_storage-prefix.pch */, + 0DB9807AB269DA3CF5EEAC3603677A07 /* flutter_secure_storage-umbrella.h */, + EECAC159C73F566285813641A0A1ECAA /* flutter_secure_storage.debug.xcconfig */, + 13146A48D1544CF0CF218B3A514C848E /* flutter_secure_storage.release.xcconfig */, + 13F095CB2C4A075347217053B769CE11 /* ResourceBundle-flutter_secure_storage-flutter_secure_storage-Info.plist */, ); - name = Documents; - path = Documents; + name = "Support Files"; + path = "../../../../Pods/Target Support Files/flutter_secure_storage"; sourceTree = ""; }; - 752374FA0E1F6A78815A1F18A09A7FBF /* GoogleUtilitiesComponents */ = { + 711C166128A470C5BC35A540672F5933 /* MLKitVision */ = { isa = PBXGroup; children = ( - 9D8ABD31EB61204CADF2FEAFAD188549 /* GULCCComponent.h */, - 1BC2B4C3413CC2A47158DB170BD1BF10 /* GULCCComponent.m */, - 02B5DFA38365FAD67EC2B664F7636559 /* GULCCComponentContainer.h */, - 9B14867CC9E159E74BEB194C5EC2D1A4 /* GULCCComponentContainer.m */, - 6F4B1DA7D8F4EE7984CB784CE11D028C /* GULCCComponentContainerInternal.h */, - 474AEB344B92539603838B1058978418 /* GULCCComponentType.h */, - EAA266D7F3CDC5B26B124E9DC486A56F /* GULCCComponentType.m */, - D0B44C2162379BA98ABCF1888039B69C /* GULCCDependency.h */, - 45C8B9BD99FDE9D0FC0A288F497B5827 /* GULCCDependency.m */, - 91018E65A91578BE53624520A9CAA172 /* GULCCLibrary.h */, - 0EB11751A9CC926F4C708C1B2CE51380 /* Support Files */, + 43CC21137FE462DD80446A3948D64E48 /* Frameworks */, + 085223D637FA7258AD5B38AEE22C73F8 /* Support Files */, ); - name = GoogleUtilitiesComponents; - path = GoogleUtilitiesComponents; + name = MLKitVision; + path = MLKitVision; sourceTree = ""; }; - 7599B07C88D0A286F2A7D27E2E798E42 /* ios */ = { + 715D127637821629C30E743C5AABB7DF /* ios */ = { isa = PBXGroup; children = ( - FD654943BA5EDB9A3A7C1B5982564FCA /* PrivacyInfo.xcprivacy */, + 6F72083EF5A3755751A6914F4CC3C50A /* .symlinks */, ); name = ios; path = ios; sourceTree = ""; }; - 75D3D1B7EDFAE972058046F4ADF9A641 /* .. */ = { + 722189D2FDFB3AB46E0386F75724B948 /* Resources */ = { isa = PBXGroup; children = ( - 9C7883B1522222A8F724DA1213DFDA86 /* .. */, + D8F2F730DA7B87E8E05226416AEFFE24 /* PrivacyInfo.xcprivacy */, ); - name = ..; - path = ..; + name = Resources; + path = Resources; + sourceTree = ""; + }; + 72A0D0171EE2A71FCAEC418A966F97DB /* Documents */ = { + isa = PBXGroup; + children = ( + 5154783350B9564E4ED36ABD275E4C9F /* projects */, + ); + name = Documents; + path = Documents; + sourceTree = ""; + }; + 743A28F8D3A418588C4E1E6A72E0C20F /* Privacy */ = { + isa = PBXGroup; + children = ( + 4DA7005E99BE50A0281D71684C9EEB3B /* Resources */, + ); + name = Privacy; sourceTree = ""; }; - 760B18B0899AAC63885CC91B50CEA73A /* .. */ = { + 74F2482F35828423EC39D7CA6EAA8A6F /* .. */ = { isa = PBXGroup; children = ( - 5094372F12A7724064EEBA24FB20E970 /* .. */, + AF944CB8E04A7299D3CF14D746E78593 /* Documents */, ); name = ..; path = ..; sourceTree = ""; }; - 76EB7995BDAD28437FFE1D59BA175725 /* url_launcher_ios */ = { + 75080B91311341B458DB3826FE851DA6 /* image_picker_ios */ = { isa = PBXGroup; children = ( - 06626432F1E068303CE84FF02EEF05B5 /* .. */, - 9323144BDEB8137E54347D3D914824E5 /* Pod */, - D25297CC3C132B4F7C93A58E5D8427F0 /* Support Files */, + 76D5F3FA17000248616BEE9C80BCFC10 /* .. */, + 6E3D3A29235AA022593A5BB5F81F615C /* Pod */, + 7AF5286CC7771B5979BEFE84F1AE31DE /* Support Files */, ); - name = url_launcher_ios; - path = ../.symlinks/plugins/url_launcher_ios/ios; + name = image_picker_ios; + path = ../.symlinks/plugins/image_picker_ios/ios; + sourceTree = ""; + }; + 752374FA0E1F6A78815A1F18A09A7FBF /* GoogleUtilitiesComponents */ = { + isa = PBXGroup; + children = ( + 9D8ABD31EB61204CADF2FEAFAD188549 /* GULCCComponent.h */, + 1BC2B4C3413CC2A47158DB170BD1BF10 /* GULCCComponent.m */, + 02B5DFA38365FAD67EC2B664F7636559 /* GULCCComponentContainer.h */, + 9B14867CC9E159E74BEB194C5EC2D1A4 /* GULCCComponentContainer.m */, + 6F4B1DA7D8F4EE7984CB784CE11D028C /* GULCCComponentContainerInternal.h */, + 474AEB344B92539603838B1058978418 /* GULCCComponentType.h */, + EAA266D7F3CDC5B26B124E9DC486A56F /* GULCCComponentType.m */, + D0B44C2162379BA98ABCF1888039B69C /* GULCCDependency.h */, + 45C8B9BD99FDE9D0FC0A288F497B5827 /* GULCCDependency.m */, + 91018E65A91578BE53624520A9CAA172 /* GULCCLibrary.h */, + 0EB11751A9CC926F4C708C1B2CE51380 /* Support Files */, + ); + name = GoogleUtilitiesComponents; + path = GoogleUtilitiesComponents; + sourceTree = ""; + }; + 75241187C4FD2A57C601C035DDCDD0AC /* .. */ = { + isa = PBXGroup; + children = ( + F727D1DB33B21E0067C4802704F80968 /* .. */, + ); + name = ..; + path = "../../../../../../../../../.pub-cache/hosted/pub.dev/flutter_nekoton_bridge-2.0.0/ios"; sourceTree = ""; }; - 7706C92C523EC3AEEAABC701714002F6 /* projects */ = { + 754B4F7C303BFB050B3BB182AE59180E /* projects */ = { isa = PBXGroup; children = ( - 993DE4C9AE26512849AD952FAEF84A55 /* ever_wallet_flutter_new */, + ACFDEAF8F43A00FAF7ED49DC334BF531 /* broxus */, ); name = projects; path = projects; sourceTree = ""; }; - 77A0EEC818F3B7EC22B89E1DB14EA34C /* Resources */ = { + 76D5F3FA17000248616BEE9C80BCFC10 /* .. */ = { isa = PBXGroup; children = ( - 11E93C254E930A2094F7099F7F2029E6 /* PrivacyInfo.xcprivacy */, + 63DA548AF102A2B538AFEA5E4B7979E9 /* .. */, ); - name = Resources; - path = Resources; + name = ..; + path = "../../../../../../../../../.pub-cache/hosted/pub.dev/image_picker_ios-0.8.12/ios/image_picker_ios/Sources"; sourceTree = ""; }; - 78E39BFFE7DC0B83FB2A75AEBBD6C4A2 /* Classes */ = { + 77A4E53B7D5585C8BF8435CFD03490D4 /* Classes */ = { isa = PBXGroup; children = ( - 62F3A4FD7233DD7345513D93D1CAD1EA /* ConnectivityPlusPlugin.h */, - 946308AD47F839A7BE2BE98133317720 /* ConnectivityPlusPlugin.m */, - 20B143526F384FD4BC4962D807AC3C9E /* ConnectivityProvider.swift */, - BF0E1C8D5647CF1E6CF843C8B0A62219 /* PathMonitorConnectivityProvider.swift */, - C016E5E6AA5CD61AA11A542E79B1EC4A /* SwiftConnectivityPlusPlugin.swift */, + 64544785A7B215DCC22DE13B2D280280 /* FPPSharePlusPlugin.h */, + 8AF2955064CB8D9DAF5C49AC114BC355 /* FPPSharePlusPlugin.m */, ); name = Classes; path = Classes; sourceTree = ""; }; - 793E620CB9ED43C2BF4269DA952BC483 /* image_picker_ios */ = { + 77A54C5B63530FAC58F998D239D6854B /* ever_wallet_flutter_new */ = { isa = PBXGroup; children = ( - 72A13681E5C49BE2740585338E2BC8C7 /* ios */, + 5259451EE387D7D79FD22BD162897B4F /* ios */, ); - name = image_picker_ios; - path = image_picker_ios; + name = ever_wallet_flutter_new; + path = ever_wallet_flutter_new; sourceTree = ""; }; - 795029924F28936808D5B8E06854C5CD /* flutter_keyboard_visibility */ = { + 77CFE9D4372B490BF36F042FD4A37177 /* integration_test */ = { isa = PBXGroup; children = ( - 6338954382B50510B673115C642302AC /* .. */, - A7DC0D138045F8F97357F00C82B91321 /* Pod */, - CEC41105CE362888BE688200A74945AD /* Support Files */, + C73F345AB989BA13F649331F34241E33 /* .. */, + 60EE9E87E5FF9559B56544DE4A4BD195 /* Pod */, + 0B4641B60658DDB5EB246FFFC5FDE3E4 /* Support Files */, ); - name = flutter_keyboard_visibility; - path = ../.symlinks/plugins/flutter_keyboard_visibility/ios; + name = integration_test; + path = ../.symlinks/plugins/integration_test/ios; sourceTree = ""; }; - 79B467C5F68E17BCB1CA9312770F68F6 /* .. */ = { + 797392580BBF5788EA9DEDE1559ADFD2 /* ever_wallet_flutter_new */ = { isa = PBXGroup; children = ( - 9114E2392FE4D52CE894EA87A2FEAA88 /* Documents */, + 93B81419CDD12BBCA0008ABDCDCFCFD1 /* ios */, ); - name = ..; - path = .; + name = ever_wallet_flutter_new; + path = ever_wallet_flutter_new; sourceTree = ""; }; - 79F412A33D096F07728EA767524D3B80 /* Pod */ = { + 799442719CAFA399302638A44A651793 /* url_launcher_ios */ = { isa = PBXGroup; children = ( - F04020A8B50B56CAE4F6F78760726FF2 /* LICENSE */, - 9903FFB3F9A7BB77DB973E1E1DD5FBBD /* local_auth_darwin.podspec */, + 0B1332C32796BBB871B5BC9A132E7879 /* Launcher.swift */, + E488D200DB706C89186820346F95811C /* messages.g.swift */, + 32AB065117AF5B1B2E6CB60ACDDF6CD8 /* URLLauncherPlugin.swift */, + 5AB81A750F4B3338FC4711F57CC1505E /* URLLaunchSession.swift */, ); - name = Pod; + name = url_launcher_ios; + path = url_launcher_ios; sourceTree = ""; }; - 7A765EB408AC4181250509C6EB1756E1 /* ios */ = { + 79F17F514F14A01288DE82703C581251 /* ios */ = { isa = PBXGroup; children = ( - 69D2EA965D8FFFBAE9B42947324D29EE /* .symlinks */, + FD0199E1428432BFA28B6B0DA8FD7E11 /* .symlinks */, ); name = ios; path = ios; sourceTree = ""; }; - 7AB6FBD7B11B92A2988F38BC7DF22D53 /* Sources */ = { + 7ABA61E43AA191838565493DD009CE2E /* ios */ = { isa = PBXGroup; children = ( - 9F225719BCF5A7D930CC14B4C58BA9FF /* shared_preferences_foundation */, + FFC4FE43A904EA87751F50B9866C67CF /* Classes */, + 03823E0B3595DCC8FB1077BD83191E5C /* Resources */, ); - name = Sources; - path = Sources; + name = ios; + path = ios; + sourceTree = ""; + }; + 7AE585365FB5E0D635924C57AC7F2A8B /* Classes */ = { + isa = PBXGroup; + children = ( + F0CBBC2DAF102AD73CC0335DEA958437 /* SqfliteCursor.h */, + D24CC816BD3154712F334C3C6C6C8320 /* SqfliteCursor.m */, + 94BCAC6C7500E45D9D4F67E9AB3C7636 /* SqfliteDarwinDatabase.h */, + BBA5802F64DFDE62B165E4CBB2D642A7 /* SqfliteDarwinDatabase.m */, + E27FCFF1CE2A5C241513D86FB81E4AD4 /* SqfliteDarwinDatabaseAdditions.h */, + 037B903BE9BB63D9718E0EAC828A68C8 /* SqfliteDarwinDatabaseAdditions.m */, + A9835ED544D242FE135FE9D989ACE1B0 /* SqfliteDarwinDatabaseQueue.h */, + 57E0D7BB32F269F5B9F67DB4E5F549A4 /* SqfliteDarwinDatabaseQueue.m */, + 1C4E920D8B793EA0076FE4A24106A39F /* SqfliteDarwinDB.h */, + 6955668E3FB2C1A52FD85A1F004DA1B5 /* SqfliteDarwinImport.h */, + E9556EF7F955C0412768DB4412A6D3F0 /* SqfliteDarwinResultSet.h */, + 14095BA69201A92D570BECBAE4BC4F9C /* SqfliteDarwinResultSet.m */, + 22F6495158FE36910A567672B32B3FB7 /* SqfliteDatabase.h */, + 2391BAB127258E3C8526525F690CFD22 /* SqfliteDatabase.m */, + 084FFF7D0B595B017CEF9420B3B7C428 /* SqfliteImport.h */, + 56DC8F7B532BD888B28A05F4378FFEAA /* SqfliteOperation.h */, + 60361473920F028EC7A43F40E889619E /* SqfliteOperation.m */, + 45CBD70953AA4E296A4D1A3E38EF28C5 /* SqflitePlugin.h */, + AC01FA9D77CC8D999FF4AD7FF8C54E18 /* SqflitePlugin.m */, + ); + name = Classes; + path = Classes; sourceTree = ""; }; - 7C5EE2098709649BBC83CCA770E454D0 /* .. */ = { + 7AF5286CC7771B5979BEFE84F1AE31DE /* Support Files */ = { isa = PBXGroup; children = ( - 7E5E1B95B62D35E9320F2156712A0CE0 /* .. */, + 129FB7CF81CB39498137E4F2C276CD11 /* image_picker_ios.modulemap */, + 5054D97F7BC59D791264BFAC2EA210D1 /* image_picker_ios-dummy.m */, + 2C1C3365AD76CADD76C482C62A690138 /* image_picker_ios-Info.plist */, + 072B734CEA11F29F9F5BC50BE72C85E4 /* image_picker_ios-prefix.pch */, + D8944A35B58A4CCD31AF2857AEC05164 /* image_picker_ios.debug.xcconfig */, + 98AE98BF8E201BFC344D7356F2883701 /* image_picker_ios.release.xcconfig */, + 2D670D6568B3DBE350D66691ADC46550 /* ResourceBundle-image_picker_ios_privacy-image_picker_ios-Info.plist */, ); - name = ..; - path = "../../../../../../../../.pub-cache/hosted/pub.dev/flutter_secure_storage-9.2.2/ios"; + name = "Support Files"; + path = "../../../../Pods/Target Support Files/image_picker_ios"; sourceTree = ""; }; - 7D161BACF0F2757EC052F9841630E255 /* .. */ = { + 7B89EDE1471C74DDC6CAC1A81BE86E5C /* Sources */ = { isa = PBXGroup; children = ( - 5D7DCA2A978EA8C83FB9C5C4A9122086 /* Documents */, + 8FB62A8E2C00081736B0A7104B260DB8 /* path_provider_foundation */, ); - name = ..; - path = ..; + name = Sources; + path = Sources; sourceTree = ""; }; - 7E0FBC1E12AD7844C572D6DEDCD8FC8B /* projects */ = { + 7BEE6BE886115A22F9703792E7BA13FA /* Support Files */ = { isa = PBXGroup; children = ( - 89B2E8E4E68BE0DA5865EBBBA817F36E /* ever_wallet_flutter_new */, + CBCFB26D058A22312472A90F5C1E08D3 /* flutter_native_splash.modulemap */, + C8603F5D45A3E590781BF59BE9C69D5C /* flutter_native_splash-dummy.m */, + 5E5F60D34991F41C62378F0A631CA921 /* flutter_native_splash-Info.plist */, + F0817382371E47726768A14EF7C5E711 /* flutter_native_splash-prefix.pch */, + 127211CB3FCD83493BF0DBEE63BB55F8 /* flutter_native_splash-umbrella.h */, + 665D58522994802C9F46348C975A8E0A /* flutter_native_splash.debug.xcconfig */, + 57D6AA21B16FC3FF93AD29A67F768BB2 /* flutter_native_splash.release.xcconfig */, + A6FD0C345CFFCF988C441B03259DD290 /* ResourceBundle-flutter_native_splash_privacy-flutter_native_splash-Info.plist */, ); - name = projects; - path = projects; + name = "Support Files"; + path = "../../../../Pods/Target Support Files/flutter_native_splash"; sourceTree = ""; }; - 7E5E1B95B62D35E9320F2156712A0CE0 /* .. */ = { + 7C30EC4A53DFCBF6377AD94090812114 /* Classes */ = { isa = PBXGroup; children = ( - F77728C691669D45E73FEF1479EF91B1 /* .. */, + 1EAE0DC233EA4B730542869D852B8D54 /* EnforceBundling.swift */, + DF5CB0B28B5ECCDD6FDC8A7B030714BD /* flutter_nekoton_bridge.c */, + 85EDB1E5E5253B58C2A79A95B03BC8C2 /* frb.h */, ); - name = ..; - path = ..; + name = Classes; + path = Classes; sourceTree = ""; }; - 7E9E59D6B53246B348A3E825E4E0AB49 /* ios */ = { + 7DC252CE753AF9AEF6C04CD89B769C6C /* .symlinks */ = { isa = PBXGroup; children = ( - EF1BCE0821A0E04178F1E48128E9104E /* .symlinks */, + C4179DE4DA58C96C47AC4B65EF04E05E /* plugins */, ); - name = ios; - path = ios; + name = .symlinks; + path = .symlinks; sourceTree = ""; }; - 7EEA0226D5BBA734A5E37AC7E20D2DBC /* Documents */ = { + 7DEA797E1F1BBA75AB895C848392F1B2 /* projects */ = { isa = PBXGroup; children = ( - F1687F7549D59AAFC19AF5EF56C131B7 /* projects */, + 366A6EB850F952DF6FEED7C17E28E2A5 /* broxus */, ); - name = Documents; - path = ../Documents; + name = projects; + path = projects; sourceTree = ""; }; - 7F726E56571C9A14BC1D77540724D35C /* flutter_secure_storage */ = { + 7EE22DC85D2B7C7A3D11ABCDABEBA580 /* flutter_native_splash */ = { isa = PBXGroup; children = ( - 7C5EE2098709649BBC83CCA770E454D0 /* .. */, - BEFF07B6073F8A3AC5B3397A4900C822 /* Pod */, - 96461C39605B1565355692EE223E5DF6 /* Support Files */, + 4781FC440B07A382BEF88F7CF0710563 /* ios */, ); - name = flutter_secure_storage; - path = ../.symlinks/plugins/flutter_secure_storage/ios; + name = flutter_native_splash; + path = flutter_native_splash; sourceTree = ""; }; - 8050F58E30FF11C5853419ACEE038E47 /* Support Files */ = { + 801D72C9BB5A2EA4D51ADF21FCC1E3A7 /* darwin */ = { isa = PBXGroup; children = ( - EE536E643CDB89DBCEE92D8C3BA690FF /* ResourceBundle-shared_preferences_foundation_privacy-shared_preferences_foundation-Info.plist */, - 9D2BDC333B532CE6F60286D40B054802 /* shared_preferences_foundation.modulemap */, - 9A90EA1C1A9C162CB5C6CC29C38969E1 /* shared_preferences_foundation-dummy.m */, - E9ACDE7CE1894D6AC6B8F4F32FA07DF5 /* shared_preferences_foundation-Info.plist */, - 2E50E4CFC0FA141C0EA11F0C7F8446AB /* shared_preferences_foundation-prefix.pch */, - 998A5E0CFA86F842EAA62915D285A688 /* shared_preferences_foundation-umbrella.h */, - 75BC381227D06F73EAAF05EC5509B228 /* shared_preferences_foundation.debug.xcconfig */, - 86E540DA830E020FCC7DEA27000E1A98 /* shared_preferences_foundation.release.xcconfig */, + 5748300CDA23DF8CF38904C0419520CA /* path_provider_foundation */, ); - name = "Support Files"; - path = "../../../../Pods/Target Support Files/shared_preferences_foundation"; + name = darwin; + path = darwin; sourceTree = ""; }; 80EC5166CE4710CB840B4C94EC1C41C4 /* Support Files */ = { @@ -6206,164 +6303,132 @@ path = "../Target Support Files/GTMSessionFetcher"; sourceTree = ""; }; - 81794491BCBCA53B13C02D537C014837 /* .. */ = { + 80F2CC22C08CB9A32CB7DC12C6C9A44C /* .. */ = { isa = PBXGroup; children = ( - 168B8FACE5BED14D815A637EA5AABF78 /* .. */, + 4B4168E6FE7981FF572BD2292EA4C471 /* Documents */, ); name = ..; path = ..; sourceTree = ""; }; - 82410EEC38599230920C982AABC96A99 /* .. */ = { + 81363C7B9302720C271FD9FEB3EC8440 /* HeadlessInAppWebView */ = { isa = PBXGroup; children = ( - B6CA4AC0E122CB4D7D33A2E5E55754DD /* .. */, + A5632ED708300AA1363BFCF6B010FBBD /* HeadlessInAppWebView.swift */, + 049B4C9F84E861EC52B2E6C0B24B844A /* HeadlessInAppWebViewManager.swift */, ); - name = ..; - path = ..; + name = HeadlessInAppWebView; + path = HeadlessInAppWebView; sourceTree = ""; }; - 82C5CB7B405DA2B79292587606D31546 /* ios */ = { + 8145B31BB7947A5E634DE5583371A5C6 /* ios */ = { isa = PBXGroup; children = ( - 357675E4E961C9E28370BFF38B33B2CA /* Classes */, - E7AB3A1599152F6A2D3DCD96D6290D04 /* Resources */, + 405124F491321D1EB86A61BBBB9892BE /* Classes */, + 8489EE50B8291C1466C47409C2E333BF /* Resources */, ); name = ios; path = ios; sourceTree = ""; }; - 83490561540D840FDCB93742630F3DB6 /* ios */ = { + 81C45723CE7044678B1942B4ABC66E87 /* plugins */ = { isa = PBXGroup; children = ( - B819B7715AB31FA224F15DF68E29DB2A /* .symlinks */, + 43224AC7CD2908BBDC165EFEFB3F4625 /* shared_preferences_foundation */, ); - name = ios; - path = ios; + name = plugins; + path = plugins; sourceTree = ""; }; - 8432A060E51D72563C02D69B3F920D1C /* Pod */ = { + 81D50BBBCD7CE9760835522D37D6D76A /* ever_wallet_flutter_new */ = { isa = PBXGroup; children = ( - 40CD03B46CDF68593DC82AFD24A4BB0D /* integration_test.podspec */, + 715D127637821629C30E743C5AABB7DF /* ios */, ); - name = Pod; + name = ever_wallet_flutter_new; + path = ever_wallet_flutter_new; sourceTree = ""; }; - 84A129FB85C41DC74251E6E4F45DB84E /* ever_wallet_flutter_new */ = { + 82414D23BCEB9CEA29AB14A67B7E0BC2 /* .. */ = { isa = PBXGroup; children = ( - 31C7147F0B9C30C08D0BA222EC575BBF /* ios */, + E5154106BFD0AD60E6CD02A6AD1F0BD0 /* .. */, ); - name = ever_wallet_flutter_new; - path = ever_wallet_flutter_new; + name = ..; + path = ..; sourceTree = ""; }; - 85A768067D03B39E7555C2E78F5657CB /* ios */ = { + 827D809921361815420E1D6C6007F1C3 /* url_launcher_ios */ = { isa = PBXGroup; children = ( - 1C2E53ABFB05B189D0BBB74953C75AD3 /* .symlinks */, + ED98872587C905FE7610E54EF0F6EA37 /* Sources */, ); - name = ios; - path = ios; + name = url_launcher_ios; + path = url_launcher_ios; sourceTree = ""; }; - 8638890B769C2B0BA07D8E5817476336 /* Support Files */ = { + 82A34B9B147687A357A97299ACB67671 /* Pod */ = { isa = PBXGroup; children = ( - A784F4C298C9A54D0DC680688A3DA89B /* sentry_flutter.modulemap */, - 46B590971878E46D6CCCF1367F625174 /* sentry_flutter-dummy.m */, - CE0883872C207BC668EC8E1C4767C180 /* sentry_flutter-Info.plist */, - 13DB3ACD9F6A6767EEFE5919FB3EA7A0 /* sentry_flutter-prefix.pch */, - B65E4F1FB0BF2D382DE70AE3563B1B83 /* sentry_flutter-umbrella.h */, - E6392A73B6B88FA13EA5ABF7C43ACF4E /* sentry_flutter.debug.xcconfig */, - 9D69F5F0798882A34E95D912A7DDF7B1 /* sentry_flutter.release.xcconfig */, + A33940A1129837B2BDBD980A38F7F8A5 /* LICENSE */, + 867F12A40FD0044E8FBC8D180626CAC9 /* local_auth_darwin.podspec */, ); - name = "Support Files"; - path = "../../../../Pods/Target Support Files/sentry_flutter"; + name = Pod; sourceTree = ""; }; - 86BDD3D77B2681198E03CBFBB54B0DC5 /* Classes */ = { + 8333BD7700A83E2BFD1B9708589F94FC /* .. */ = { isa = PBXGroup; children = ( - 401827771E4016874D7DE89B02902FDD /* SentryFlutter.swift */, - B7F09492C1496142FAB315FCB3CD3D12 /* SentryFlutterPlugin.h */, - 96D9F9CCB4C43D99159BB0CBB903AA10 /* SentryFlutterPlugin.m */, - 333875AE4BA7297C8003590B4FC30E92 /* SentryFlutterPluginApple.swift */, + 8D9E2C5C1FC03474687BA14BF66BA75B /* Documents */, ); - name = Classes; - path = Classes; + name = ..; + path = ..; sourceTree = ""; }; - 87028EF8175F9E605350BFB5B59BD389 /* .. */ = { + 83460744474EA9A623DBA362D41635F3 /* Pod */ = { isa = PBXGroup; children = ( - DCB907A112F7983A8C983A60678CB26E /* .. */, + 3EC610871E290FC6333BE2509406DF98 /* LICENSE */, + 4109EA3EB5BA0D838FBD0199B8A139A2 /* url_launcher_ios.podspec */, ); - name = ..; - path = ..; + name = Pod; sourceTree = ""; }; - 87835AED761D4C64B11A755C626BA35A /* Documents */ = { + 835950EB528E0AAB91060317937FB716 /* Sources */ = { isa = PBXGroup; children = ( - 2BEB13405A28E12EA6B912E3C6C8AF32 /* projects */, + AB9BC6C575AB84F970F08FCD4FDCDE26 /* local_auth_darwin */, ); - name = Documents; - path = Documents; + name = Sources; + path = Sources; sourceTree = ""; }; - 8828397560EF9EC29158330BC59122EE /* .. */ = { + 83B2A1A99F72C043340177AFD781E52F /* ever_wallet_flutter_new */ = { isa = PBXGroup; children = ( - 0869ADF01465B6DDDD79A7178575C965 /* Documents */, + 79F17F514F14A01288DE82703C581251 /* ios */, ); - name = ..; - path = .; + name = ever_wallet_flutter_new; + path = ever_wallet_flutter_new; sourceTree = ""; }; - 88AB984324B93E4F88F27DC17D8C18E4 /* strategies */ = { - isa = PBXGroup; - children = ( - B07C8B8EB2D6CD7E0AB13253E213A449 /* AppTrackingTransparencyPermissionStrategy.h */, - 5683C799BA015A7424D336071DD9AFF8 /* AppTrackingTransparencyPermissionStrategy.m */, - 693AFE2EF4356A24632C838F756F9056 /* AssistantPermissionStrategy.h */, - A34F8113D9F17018AB345ABDAF1E5C6F /* AssistantPermissionStrategy.m */, - 75EAA2DB58396DE3BE2549843DB864AE /* AudioVideoPermissionStrategy.h */, - 8A6447C25B2E6E801F15037F78F1673F /* AudioVideoPermissionStrategy.m */, - 28B1E5D0B0ECEA6E548A39708825EC07 /* BackgroundRefreshStrategy.h */, - 0F358A90004752CDA0382091B81438F4 /* BackgroundRefreshStrategy.m */, - BCA097CF52649EC6F0954727758B3B55 /* BluetoothPermissionStrategy.h */, - 29E55405D83348477879CD2613E556D0 /* BluetoothPermissionStrategy.m */, - 7440E30860AFFF5E3D2141CA647B9114 /* ContactPermissionStrategy.h */, - 2238798E9A95B42DFAF1B773ABC69C55 /* ContactPermissionStrategy.m */, - BDA2A4A968C99D18DA8843ADD45A552C /* CriticalAlertsPermissionStrategy.h */, - 773207E5819D7EC9B0520FE245E463CB /* CriticalAlertsPermissionStrategy.m */, - 90BEC67F3A9C7DFD5F68892422349552 /* EventPermissionStrategy.h */, - C6F640B1444F63E9EB462C361D050CBD /* EventPermissionStrategy.m */, - 6D6077BCEAA98B23BF0FA1AAB28DDF92 /* LocationPermissionStrategy.h */, - 8A4B01529FEBBCD8879D5DC3910BEB6E /* LocationPermissionStrategy.m */, - 0B7A20766BD9058845163D99C76C3663 /* MediaLibraryPermissionStrategy.h */, - 72D0DCE781E7E4A6C99D317490B954BB /* MediaLibraryPermissionStrategy.m */, - 5A4B7642BFE42B7B3971DC137604205F /* NotificationPermissionStrategy.h */, - 702958125820710BD7C662F41F230AC3 /* NotificationPermissionStrategy.m */, - 5B0EFBE07BFA616A4F4C7EEECC387452 /* PermissionStrategy.h */, - 690018F364FF671CA42A8ABB0B2C197C /* PhonePermissionStrategy.h */, - 7546D07E10913A6EEE0D2CA7DEC2CC3D /* PhonePermissionStrategy.m */, - 06ED2B5C3CE883E614348B0A2925D587 /* PhotoPermissionStrategy.h */, - F16EECBDF59FF367406198D05A91FEC6 /* PhotoPermissionStrategy.m */, - 0BDAE31134E038637B7A2CDDC1482B44 /* SensorPermissionStrategy.h */, - 3DE61418F6CD618881D3584BED5A4D6C /* SensorPermissionStrategy.m */, - 3BBE2ECE94C4E164170DF632303FEFE1 /* SpeechPermissionStrategy.h */, - 01CF91ED5CB1345E34251218FAD7EF27 /* SpeechPermissionStrategy.m */, - 8825BDE7EA2DCCC41D9E4C7DFB66B4CF /* StoragePermissionStrategy.h */, - 1947013809725794409F0DA5FEAE3537 /* StoragePermissionStrategy.m */, - 2313EF5E6D98B1C7925BA70602D28323 /* UnknownPermissionStrategy.h */, - 4ED70C92FF083202BFD6D3E4FB2FAA7B /* UnknownPermissionStrategy.m */, + 8489EE50B8291C1466C47409C2E333BF /* Resources */ = { + isa = PBXGroup; + children = ( + E9AC06F6A1479E75E5C1AF0926AB96F3 /* PrivacyInfo.xcprivacy */, ); - name = strategies; - path = strategies; + name = Resources; + path = Resources; + sourceTree = ""; + }; + 8860A177DE58C11F03EF63841F4638C3 /* .. */ = { + isa = PBXGroup; + children = ( + EA7B39472143DBF8D24F44491ACE7C28 /* .. */, + ); + name = ..; + path = ..; sourceTree = ""; }; 88DF586D3327E079B3D69D498997625A /* Support Files */ = { @@ -6381,352 +6446,452 @@ path = "../Target Support Files/PromisesObjC"; sourceTree = ""; }; - 89B2E8E4E68BE0DA5865EBBBA817F36E /* ever_wallet_flutter_new */ = { + 8909FACCEC85D13647A70D6240FD132E /* Pod */ = { isa = PBXGroup; children = ( - 7E9E59D6B53246B348A3E825E4E0AB49 /* ios */, + 8403A161DC36FB78F9C7019365EE785C /* LICENSE */, + 7A63ACD82EEA7EE321CBFC137CCE5FB0 /* shared_preferences_foundation.podspec */, ); - name = ever_wallet_flutter_new; - path = ever_wallet_flutter_new; + name = Pod; sourceTree = ""; }; - 8A310BA168593EDE715335A0B95B3246 /* .. */ = { + 89753232DD26C8D765C512663276AD5A /* broxus */ = { isa = PBXGroup; children = ( - 4FDC769D4F50E6CCAA652CF50C16060E /* .. */, + B2B96B7B47A42B015C0A2B8B7C49830B /* ever_wallet_flutter_new */, ); - name = ..; - path = "../../../../../../../../.pub-cache/hosted/pub.dev/sentry_flutter-7.20.2/ios"; + name = broxus; + path = broxus; sourceTree = ""; }; - 8B3588AB1F7320B8126CE891FCED667D /* path_provider_foundation */ = { + 8A9767A824125BCE694621EC58EC105E /* ios */ = { isa = PBXGroup; children = ( - 26976F9E42E493BCD9E4F71F6E64C570 /* darwin */, + 092997A4441FA29A6C68E2BBF541DFFC /* .symlinks */, ); - name = path_provider_foundation; - path = path_provider_foundation; + name = ios; + path = ios; sourceTree = ""; }; - 8C3D0889EF100A6E8092EBEB718101AB /* ever_wallet_flutter_new */ = { + 8B1E457AD7654D1D9549AA05F66B7B73 /* integration_test */ = { isa = PBXGroup; children = ( - 83490561540D840FDCB93742630F3DB6 /* ios */, + AD36D2FF9FED20DEA7C904AF9EA52BCE /* ios */, ); - name = ever_wallet_flutter_new; - path = ever_wallet_flutter_new; + name = integration_test; + path = integration_test; sourceTree = ""; }; - 8D49BCFD704DF79605A69FB301B0A749 /* Support Files */ = { + 8B43A3A49D1167A8E540B72BCB0D628D /* .. */ = { isa = PBXGroup; children = ( - 9F950BC68E9D6AC4139D764BEE5BD0D4 /* OrderedSet.modulemap */, - A33F15E13B173DFE53C05EAEC14ECE77 /* OrderedSet-dummy.m */, - 6C4809F1437A7F21FBBDB517AFFAE066 /* OrderedSet-Info.plist */, - 83F8095483CB984D9EF94D69C1044086 /* OrderedSet-prefix.pch */, - 97258F00349115F081B0970F460599CF /* OrderedSet-umbrella.h */, - C661FA831581B5B838608D814CE3E414 /* OrderedSet.debug.xcconfig */, - 9DAA7B5E5871B37317E0633BE9DB4156 /* OrderedSet.release.xcconfig */, + FE2FF92B795B47F1A1A623CD07ED2135 /* .. */, ); - name = "Support Files"; - path = "../Target Support Files/OrderedSet"; + name = ..; + path = ..; sourceTree = ""; }; - 8D6D972633085D349DE7783DDB9F394D /* Documents */ = { + 8BC742F5A2DDA629A1A6FDA0454BAF03 /* .symlinks */ = { isa = PBXGroup; children = ( - 32E18BC3DDB88777868607202ED81A11 /* projects */, + B30F1E88E9F16558E41B52CC69F89748 /* plugins */, ); - name = Documents; - path = Documents; + name = .symlinks; + path = .symlinks; + sourceTree = ""; + }; + 8C19812130A7F42E3050C9081DE11288 /* broxus */ = { + isa = PBXGroup; + children = ( + 2623C0E1D6E96CEF6BA8C6193FEAE389 /* ever_wallet_flutter_new */, + ); + name = broxus; + path = broxus; + sourceTree = ""; + }; + 8C2191655FDC3DFC0AF7E10EF2BEDF63 /* flutter_nekoton_bridge */ = { + isa = PBXGroup; + children = ( + F967CCC0121443267CC08236DE932936 /* ios */, + ); + name = flutter_nekoton_bridge; + path = flutter_nekoton_bridge; sourceTree = ""; }; - 8DA0F366985817A1AE7ED106BC54CE10 /* .. */ = { + 8C3FEAAD3DDFE597198558957BF7C084 /* .. */ = { isa = PBXGroup; children = ( - 760B18B0899AAC63885CC91B50CEA73A /* .. */, + D2F755B96A236EF83AE2AF8915424585 /* .. */, ); name = ..; path = ..; sourceTree = ""; }; - 8DDC37BF9D8DD9DAA59DE9C95FD25C9F /* image_picker_ios */ = { + 8C82E91387D85A865E6D35047EEE58C0 /* ios */ = { isa = PBXGroup; children = ( - 0B2142CDEE112BD4B2E6BD0BC249FA74 /* Sources */, + E05FDD2CCE7A7084930C32F01840E230 /* .symlinks */, ); - name = image_picker_ios; - path = image_picker_ios; + name = ios; + path = ios; sourceTree = ""; }; - 8E62E03769AF1BBE74975E441B0DF387 /* Pod */ = { + 8CF8BDCE7263660374525346AA5ED50B /* plugins */ = { isa = PBXGroup; children = ( - EE0D6FA6338EAECC2CF7249DD800B3F1 /* flutter_inappwebview.podspec */, - F71C79064EB5A59A238DF0BFF55C036B /* LICENSE */, + 5F48AA34647727DF92F2FF94FDC415EC /* flutter_keyboard_visibility */, ); - name = Pod; + name = plugins; + path = plugins; sourceTree = ""; }; - 8E645177C8C0F7DC1E56BB40C560E66B /* local_auth_darwin */ = { + 8D49BCFD704DF79605A69FB301B0A749 /* Support Files */ = { isa = PBXGroup; children = ( - D75BEB7AEE76F780574A6A1DE161BE13 /* Resources */, + 9F950BC68E9D6AC4139D764BEE5BD0D4 /* OrderedSet.modulemap */, + A33F15E13B173DFE53C05EAEC14ECE77 /* OrderedSet-dummy.m */, + 6C4809F1437A7F21FBBDB517AFFAE066 /* OrderedSet-Info.plist */, + 83F8095483CB984D9EF94D69C1044086 /* OrderedSet-prefix.pch */, + 97258F00349115F081B0970F460599CF /* OrderedSet-umbrella.h */, + C661FA831581B5B838608D814CE3E414 /* OrderedSet.debug.xcconfig */, + 9DAA7B5E5871B37317E0633BE9DB4156 /* OrderedSet.release.xcconfig */, ); - name = local_auth_darwin; - path = local_auth_darwin; + name = "Support Files"; + path = "../Target Support Files/OrderedSet"; sourceTree = ""; }; - 8EB3BF89D2E7F7E8381E9B8ACDC56440 /* Support Files */ = { + 8D7AD148B0471D7D94C5F3580517D3B6 /* permission_handler_apple */ = { isa = PBXGroup; children = ( - 3C9405D1081A22F8D93E165628356199 /* path_provider_foundation.modulemap */, - 8CA925AA351548EBB9321E1FDE94F18A /* path_provider_foundation-dummy.m */, - 8D44F3928271477F2E7EEB1CAFA940F5 /* path_provider_foundation-Info.plist */, - 4A5C9C0A41F8CB32362287C68D435712 /* path_provider_foundation-prefix.pch */, - EC74DB937C3A6E7E8F5845329B450F95 /* path_provider_foundation-umbrella.h */, - D2218A6EC0D27E04360FF7B5CD567548 /* path_provider_foundation.debug.xcconfig */, - 9311BBA346794A168AC09B1625AB1683 /* path_provider_foundation.release.xcconfig */, - CEB33BB0A1F7C0485BCB82F080A1277E /* ResourceBundle-path_provider_foundation_privacy-path_provider_foundation-Info.plist */, + 11A45BA9C7CEC0EB711841511D721771 /* ios */, ); - name = "Support Files"; - path = "../../../../Pods/Target Support Files/path_provider_foundation"; + name = permission_handler_apple; + path = permission_handler_apple; sourceTree = ""; }; - 8EB6C0002AB47A0475DB1C953D9480FF /* share_plus */ = { + 8D8501A84A447BA495251DC66C567AC5 /* Pod */ = { isa = PBXGroup; children = ( - 7599B07C88D0A286F2A7D27E2E798E42 /* ios */, + FD2D219A53B8269F175E42DFBD738F59 /* LICENSE */, + 9BBFB97F9DC774EFA2763A2F737A27FE /* sentry_flutter.podspec */, ); - name = share_plus; - path = share_plus; + name = Pod; sourceTree = ""; }; - 8EC14A4DEA1FD388BEAAC72C5D6AA072 /* Classes */ = { + 8D9E2C5C1FC03474687BA14BF66BA75B /* Documents */ = { isa = PBXGroup; children = ( - DC9D048ED59B93A151EA5477A8181C82 /* FlutterSecureStorage.swift */, - 2250BECE009253DF68289C6639E30128 /* FlutterSecureStoragePlugin.h */, - 90C21B016CC22ED733735905CCF87B26 /* FlutterSecureStoragePlugin.m */, - 11A5218DCFEC8C72A4898C0D2BB381FC /* SwiftFlutterSecureStoragePlugin.swift */, + 60907CB7BEE9ED8F95084CB6406F6A97 /* projects */, ); - name = Classes; - path = Classes; + name = Documents; + path = Documents; sourceTree = ""; }; - 8FDD7713CF00194DAE8DA516C2AE9347 /* ios */ = { + 8E2D8E9BB8DA42CCE14AC22AEFDA5A30 /* plugins */ = { isa = PBXGroup; children = ( - F706D13C1DF49BD9A11F66BEA22EE94B /* .symlinks */, + 17F221AD99C38AC9FB67A2BE9398D3EB /* image_picker_ios */, ); - name = ios; - path = ios; + name = plugins; + path = plugins; sourceTree = ""; }; - 90BEFF52B7C65933FA7B34AA1A2A6C1D /* ios */ = { + 8E2DDEBCBF473E8973DCE1306CBF6166 /* .. */ = { isa = PBXGroup; children = ( - EAE32DB8302AE068B19D82576315BC8B /* .symlinks */, + AB99A5254E01376BEF286E584CC314A3 /* Documents */, ); - name = ios; - path = ios; + name = ..; + path = ..; sourceTree = ""; }; - 90FCBADF231F55543E817B16284065C2 /* projects */ = { + 8E49E5007270E9EF7ED95D642BA5E558 /* projects */ = { isa = PBXGroup; children = ( - D21FC4F513397AA94E5C377578727390 /* ever_wallet_flutter_new */, + 89753232DD26C8D765C512663276AD5A /* broxus */, ); name = projects; path = projects; sourceTree = ""; }; - 910F8003255E167B7E403268D498A043 /* flutter_secure_storage */ = { + 8ED71C7ECEF66A3A0CE2BF8F2E44F02A /* ios */ = { isa = PBXGroup; children = ( - 91586842B18E7BB90DFDA7588ECE1A0D /* ios */, + 21100CFC968EAA8C0FA6ECAF220FE27D /* .symlinks */, ); - name = flutter_secure_storage; - path = flutter_secure_storage; + name = ios; + path = ios; sourceTree = ""; }; - 9114E2392FE4D52CE894EA87A2FEAA88 /* Documents */ = { + 8F7A7BF1E722602B17DF577D44E1E913 /* Documents */ = { isa = PBXGroup; children = ( - 2BF4CF6EDD6BCB19F1F1143B57EA19A7 /* projects */, + 7DEA797E1F1BBA75AB895C848392F1B2 /* projects */, ); name = Documents; - path = Documents; + path = ../Documents; sourceTree = ""; }; - 91586842B18E7BB90DFDA7588ECE1A0D /* ios */ = { + 8FB62A8E2C00081736B0A7104B260DB8 /* path_provider_foundation */ = { isa = PBXGroup; children = ( - 8EC14A4DEA1FD388BEAAC72C5D6AA072 /* Classes */, - 94AB37554EF0EC1D10423C237E1E0EA6 /* Resources */, + 29A8D728C0F1220032C0A6897AD2BEA2 /* messages.g.swift */, + 87368E38B16007D0D4856E8724406AF0 /* PathProviderPlugin.swift */, ); - name = ios; - path = ios; + name = path_provider_foundation; + path = path_provider_foundation; sourceTree = ""; }; - 91718BCD618CB0EB3D964A1DE3B02704 /* .. */ = { + 905BA016C66BFFEF53CD18DEEA9A4F3C /* .. */ = { isa = PBXGroup; children = ( - 23079EBCC75FD7BB906292B2AD877424 /* .. */, + 413F39C288C132C20FFBF71763862363 /* .. */, ); name = ..; path = ..; sourceTree = ""; }; - 9195DC575C6143D20A9AA0EA50768673 /* .. */ = { + 90675B57D8B13AC02D72519E4901C9E6 /* util */ = { isa = PBXGroup; children = ( - 021D8D4E8DF1C9CD913EB05B4A7D76A7 /* .. */, + E5E3E33B0D144B2AE6AB3752D725ABD7 /* Codec.h */, + 8828EAA8DFFF7D81443F07F6A05D1E68 /* Codec.m */, ); - name = ..; - path = ..; + name = util; + path = util; sourceTree = ""; }; - 924AA65E111446AF803AE28FD6856CE0 /* Resources */ = { + 907FA9F849765600FCDFED5ECEF4729C /* Resources */ = { isa = PBXGroup; children = ( - 191EEBE4C7DDE9B7E0187F181BD5C531 /* PrivacyInfo.xcprivacy */, + 281ABDF761B8A6DF706C828F953EF9B0 /* PrivacyInfo.xcprivacy */, ); name = Resources; path = Resources; sourceTree = ""; }; - 925B5AD6FD7488F5887F41EA41798A8D /* .. */ = { + 91C94C6491AD26FDC4069E1166DC49D1 /* Documents */ = { isa = PBXGroup; children = ( - BABBFC38A1871DB083C01DFD1A7C4A40 /* .. */, + 68492D528FEE90B488A4CFD578683A1C /* projects */, ); - name = ..; - path = ..; + name = Documents; + path = Documents; sourceTree = ""; }; - 9323144BDEB8137E54347D3D914824E5 /* Pod */ = { + 9244F3C9D81B18CC009EC453FC54EFFF /* .. */ = { isa = PBXGroup; children = ( - 0967BEC6E942428159C448061BFFF419 /* LICENSE */, - EA872055B6A4B731541F91DEFDFDA58F /* url_launcher_ios.podspec */, + 449CE2F37593763E89A53B5E77431C81 /* .. */, ); - name = Pod; + name = ..; + path = ..; sourceTree = ""; }; - 934D1044A979B9967E97CBF2B7096B1C /* .. */ = { + 936BA181ABF1C74123E143D293552F20 /* .. */ = { isa = PBXGroup; children = ( - 698EC2EA98058B0049CDFE49322EAF3A /* .. */, + C721700B711290710D02D24C43F18BEB /* .. */, ); name = ..; - path = ..; + path = "../../../../../../../../../.pub-cache/hosted/pub.dev/url_launcher_ios-6.3.0/ios/url_launcher_ios/Sources"; sourceTree = ""; }; - 934F4478C8031420617FB5EB54C86743 /* ios */ = { + 93B81419CDD12BBCA0008ABDCDCFCFD1 /* ios */ = { isa = PBXGroup; children = ( - 730842E6B3CEAC262ACB07DD0897AC42 /* .symlinks */, + 9AE3690711BE9BADB7FCFC55060FE61E /* .symlinks */, ); name = ios; path = ios; sourceTree = ""; }; - 9401A330121336577C5BBF9699A6E2A7 /* Classes */ = { + 943B5A834A2E4F59D189F5B6A82A5897 /* Support Files */ = { + isa = PBXGroup; + children = ( + E2D59994DB2DF47504EA20EBB04953C4 /* MLKitCommon.debug.xcconfig */, + 85EF9BEBA8B20A13BA96488C86CD663A /* MLKitCommon.release.xcconfig */, + ); + name = "Support Files"; + path = "../Target Support Files/MLKitCommon"; + sourceTree = ""; + }; + 945BA454E043C027297179AF51A5E5C0 /* ever_wallet_flutter_new */ = { + isa = PBXGroup; + children = ( + 4540BC013133E3FF4219DD2391EE31FE /* ios */, + ); + name = ever_wallet_flutter_new; + path = ever_wallet_flutter_new; + sourceTree = ""; + }; + 94DE487E9600DDD9E624F5FFFC6E0E35 /* Classes */ = { isa = PBXGroup; children = ( - 2A2E55B197F2638C8C5C67077FA69F67 /* PermissionHandlerEnums.h */, - BBD453494BB2BAE0608686C9BB87C0BD /* PermissionHandlerPlugin.h */, - F276C960211155621F8B61C3BE8AB306 /* PermissionHandlerPlugin.m */, - 7A64A8A7DFBF51924FE6734E85933D45 /* PermissionManager.h */, - F3D75BC1CCB38990B39E8B43CA5907A5 /* PermissionManager.m */, - 88AB984324B93E4F88F27DC17D8C18E4 /* strategies */, - E776B4F8DB6D7E2211C199322041B66E /* util */, + DF26DFB15462009B8183757F542F07E6 /* FlutterNativeSplashPlugin.h */, + D50DDE6BCB10AAC26EC304A8E285253F /* FlutterNativeSplashPlugin.m */, ); name = Classes; path = Classes; sourceTree = ""; }; - 9432332F8057614CA7D844C95C955095 /* .. */ = { + 951250FBB9CC2F2FBB54C22F4C075CCF /* ios */ = { isa = PBXGroup; children = ( - 73AA1DFDC2CC27EA719C49AD560E3CFC /* .. */, + FC95D5C6C3FE285E191F56AF5583A2FA /* .symlinks */, ); - name = ..; - path = ..; + name = ios; + path = ios; sourceTree = ""; }; - 943B5A834A2E4F59D189F5B6A82A5897 /* Support Files */ = { + 953D2687F013ECB8A0BF3324710BC227 /* flutter_email_sender */ = { isa = PBXGroup; children = ( - E2D59994DB2DF47504EA20EBB04953C4 /* MLKitCommon.debug.xcconfig */, - 85EF9BEBA8B20A13BA96488C86CD663A /* MLKitCommon.release.xcconfig */, + 8145B31BB7947A5E634DE5583371A5C6 /* ios */, ); - name = "Support Files"; - path = "../Target Support Files/MLKitCommon"; + name = flutter_email_sender; + path = flutter_email_sender; sourceTree = ""; }; - 94836C76B85E2A295221CCE01B9974F8 /* local_auth_darwin */ = { + 9593EA255BF4143F3C7B035716B22785 /* Documents */ = { isa = PBXGroup; children = ( - 5F6CDE1EE76A3B1438204E603889FD49 /* FLALocalAuthPlugin.h */, - D99523C77870BD1AA8137C8C0FB710E5 /* FLALocalAuthPlugin_Test.h */, - 3F195CDC771001F7D31D7CEF182D87B8 /* messages.g.h */, + FA987942609B6772F3B308E95D3F6DFD /* projects */, ); - name = local_auth_darwin; - path = local_auth_darwin; + name = Documents; + path = Documents; sourceTree = ""; }; - 94AB37554EF0EC1D10423C237E1E0EA6 /* Resources */ = { + 95DF7D8571146F13E012372055573EF8 /* .. */ = { isa = PBXGroup; children = ( - 32941FABD3095FE6680473B1D2416DDA /* PrivacyInfo.xcprivacy */, + 28BAE9EBB0E5917E26A737685DF4A858 /* .. */, ); - name = Resources; - path = Resources; + name = ..; + path = ..; + sourceTree = ""; + }; + 95E2F35608BA994E917429A26E35FA42 /* Types */ = { + isa = PBXGroup; + children = ( + FA1779EEA8F9A6A5DC462192D6945C64 /* ClientCertChallenge.swift */, + 15051AC442FEF4B644008D3C002446D4 /* DownloadStartRequest.swift */, + A48B975CF0B99B14E04EEB88D4814BE7 /* HitTestResult.swift */, + D21ED2F3A0000D9727C96CDD5D2E964B /* NSAttributedString.swift */, + C871E9A03CA17D37556E12D1023D5DBE /* PluginScript.swift */, + 310586C337C6135938E6DA039290C0C8 /* SecCertificate.swift */, + E99D6BC64B949B625195037B91A433CD /* ServerTrustChallenge.swift */, + 038A4526E9AA85618351662B3B69FFE9 /* Size2D.swift */, + BC4232616D0FB1BAB23449A8EA6ECA9A /* SslCertificate.swift */, + DB732B5DE6D9B47F832C1FBB7FC6AC03 /* SslError.swift */, + 5F732997C856FFFBE03B3F9D18458E97 /* UIColor.swift */, + 74D765590E44B3B9A6E079FB1E1DFE4D /* URLAuthenticationChallenge.swift */, + B36DC51F9448548C7D98D5C6350F9825 /* URLCredential.swift */, + 5A887D92CB0E550F051157CDAA550DB9 /* URLProtectionSpace.swift */, + FAB4F397430C0F4E9A1699E34EB56D8B /* URLRequest.swift */, + C03D230CB9956E831A2EFB279C7579CA /* URLResponse.swift */, + DD86AB52B1AF8FF238297BA9E26FA678 /* UserScript.swift */, + 8575209B08D439F88660245A7596554A /* WebMessage.swift */, + 19156C8DC8376C68638F7EDD562EE60F /* WebMessageChannel.swift */, + AB785BB71CA813A29443733250CCCE9F /* WebMessageListener.swift */, + C85EE2D2805C0213D502BEDC92E92549 /* WebMessagePort.swift */, + B7A5D8D0377A2F02CE05F88B11A2F267 /* WebViewTransport.swift */, + 42C075972C85D4DE8748EF299217FFEB /* WKContentWorld.swift */, + 30F38060B875547295AC118922B6219B /* WKFrameInfo.swift */, + 44D57AFAF1608E0747127608255354DF /* WKNavigationAction.swift */, + 21A0CE26E80F633C44B14B6A35FE7BFB /* WKNavigationResponse.swift */, + D3F2E6FCCF8DC053D6E26F8400CF7EAF /* WKSecurityOrigin.swift */, + FBB7AF13154D32DBBBA1410AE29859B3 /* WKUserContentController.swift */, + 23DA183388996AE4018A783DF68CE527 /* WKWindowFeatures.swift */, + ); + name = Types; + path = Types; sourceTree = ""; }; - 96461C39605B1565355692EE223E5DF6 /* Support Files */ = { + 95FE47859BDE85022DA001281A928092 /* Pod */ = { isa = PBXGroup; children = ( - 3607CAF38A15D4B00804051CD8001544 /* flutter_secure_storage.modulemap */, - 6CF561F3B325D5AB022AE5DA4E78C443 /* flutter_secure_storage-dummy.m */, - 5FEA14E968653FEC4B1559501F3C371E /* flutter_secure_storage-Info.plist */, - E0A5680C8BC03204BFF246146436700A /* flutter_secure_storage-prefix.pch */, - 29C83713F0C404FE67A1ACD7964E0227 /* flutter_secure_storage-umbrella.h */, - 429B8F30C0075AC28A8387DE578B0028 /* flutter_secure_storage.debug.xcconfig */, - 7B2F4BE2D901E9309159228CD856EBAF /* flutter_secure_storage.release.xcconfig */, - 93ED895BAA7B25FE5FEDDE50EA545D2F /* ResourceBundle-flutter_secure_storage-flutter_secure_storage-Info.plist */, + 7C00FDD761D4591E383A71B8F1FEF54F /* flutter_inappwebview.podspec */, + F5903D2BDF989D0F5B00B4EB065953D8 /* LICENSE */, ); - name = "Support Files"; - path = "../../../../Pods/Target Support Files/flutter_secure_storage"; + name = Pod; sourceTree = ""; }; - 98688BDBB97C46459F3EE89CAB481632 /* flutter_inappwebview */ = { + 963A84E598696042F7F4044ADFBC4D4F /* .. */ = { isa = PBXGroup; children = ( - D00C1CF58D67C7BDDCF3F1D581B2156B /* ios */, + 6A3413BE3845E346C323D3A8811C54A0 /* .. */, ); - name = flutter_inappwebview; - path = flutter_inappwebview; + name = ..; + path = ..; sourceTree = ""; }; - 993DE4C9AE26512849AD952FAEF84A55 /* ever_wallet_flutter_new */ = { + 97403DDA4DBE19692BBE29ECD2C14C76 /* broxus */ = { isa = PBXGroup; children = ( - C21D5EE7DAAA94B9EF94EF46A68766C2 /* ios */, + 5248690233837B54CA664B83E5A84534 /* ever_wallet_flutter_new */, ); - name = ever_wallet_flutter_new; - path = ever_wallet_flutter_new; + name = broxus; + path = broxus; sourceTree = ""; }; - 9A02B9326421695D4BDF88578C93EB74 /* Pod */ = { + 980BFD56147CA9AF196B0D1B20CFF2A8 /* .. */ = { isa = PBXGroup; children = ( - 1A2562D11E950D44C107CA5BD8C795E9 /* LICENSE */, - 864B42FF4B3C923B3279FE220874C9B6 /* sentry_flutter.podspec */, + 57BD136DBD02575CFDB40EC6274779C3 /* .. */, ); - name = Pod; + name = ..; + path = ..; + sourceTree = ""; + }; + 980FB60612D4670D86F3ADD85D62ED2B /* Classes */ = { + isa = PBXGroup; + children = ( + 36295AA6FD91BC3B62C1E06D89AC75DE /* ContextMenuOptions.swift */, + 50C310450139C6BEE5AE7C8AE6F64BC1 /* CredentialDatabase.swift */, + C640DF518285BB59B3AA47E3C826D3BB /* CustomeSchemeHandler.swift */, + DA665D31F8C7E9634ADBC1699DADD8D7 /* FlutterMethodCallDelegate.swift */, + EE8CAE6D180F13AA656D7B68D0D3728F /* HttpAuthenticationChallenge.swift */, + 18CB7B5FCB45ADAC4A95C8575E85CFE7 /* InAppWebViewFlutterPlugin.h */, + AC8BED4A6B4F1FF2D1A6838EB37CF177 /* InAppWebViewFlutterPlugin.m */, + DDA299210B110CB4DB321472F76C8D9C /* InAppWebViewMethodHandler.swift */, + F173A3865F6AEDB26C737F7484107758 /* InAppWebViewStatic.swift */, + CB23C5F8B0A4ABE574CFDEF363AE78A0 /* LeakAvoider.swift */, + 2EC17703646BE4B7F5DF4EF21DA6FDDF /* MyCookieManager.swift */, + F43FB3FF02053F3FBC9D0184C04F584F /* MyWebStorageManager.swift */, + B51AB66175F65EE203A9E32FC39C5F8A /* Options.swift */, + 452FE7F9EF84DAEA60EF9D205E76144F /* PlatformUtil.swift */, + 8894B25C5C321FC1966624898D804ADD /* SwiftFlutterPlugin.swift */, + 40DFDE1568F4563299807032258A4AEC /* Util.swift */, + 4124F1BBB9A75A0DBA297C41EC2A56D9 /* WKProcessPoolManager.swift */, + 81363C7B9302720C271FD9FEB3EC8440 /* HeadlessInAppWebView */, + E9F9CC3C051E2A3ED9EFF30CD88A0E88 /* InAppBrowser */, + 3234AF1254946877C12AC6D853AD3591 /* InAppWebView */, + F413F93E0C39338512E2C24576A2FBB7 /* PluginScriptsJS */, + 12FD342A2CC91D6010CB06B5E6F77001 /* PullToRefresh */, + 67C2589D4E3C3FE5C3B011A02D7D3307 /* SafariViewController */, + 95E2F35608BA994E917429A26E35FA42 /* Types */, + ); + name = Classes; + path = Classes; + sourceTree = ""; + }; + 99939D2F06F1058A8DEC88141F04E4B8 /* Documents */ = { + isa = PBXGroup; + children = ( + D0D804DDDCBE375A5A78CE2018933C4F /* projects */, + ); + name = Documents; + path = Documents; + sourceTree = ""; + }; + 9A0C8FB16B5360FBDC8B81CCC562456F /* .. */ = { + isa = PBXGroup; + children = ( + EAACCC5F7A134E3E97A7A212FB8E6D33 /* .. */, + ); + name = ..; + path = ..; sourceTree = ""; }; 9A0DFEB3EA710426A3F24089743A23C7 /* GoogleDataTransport */ = { @@ -6824,49 +6989,42 @@ path = GoogleDataTransport; sourceTree = ""; }; - 9A9D1C460BA09150E971A05C05E44B6D /* .. */ = { + 9A1666CA246F686FB29B1F85AB559D5B /* include */ = { isa = PBXGroup; children = ( - 934D1044A979B9967E97CBF2B7096B1C /* .. */, + C76D16D4C1A75F1D2F6BE4210D843D7C /* FLTIntegrationTestRunner.h */, + 4216104F4274B6101A312E9907EE948F /* IntegrationTestIosTest.h */, + 58DC35A7689D41ED4CDF022F1BB22361 /* IntegrationTestPlugin.h */, ); - name = ..; - path = ..; + name = include; + path = include; sourceTree = ""; }; - 9AA191FD35B0A96F500D7F6AC6326837 /* .. */ = { + 9A63ED6E9260F97BD310EBDD02F5AE4C /* .. */ = { isa = PBXGroup; children = ( - BD49F91741C710B0958D1DE92082B921 /* .. */, + B149EDFEB24176B5A85E013F2A44D2F6 /* .. */, ); name = ..; path = ..; sourceTree = ""; }; - 9AEA03E4F593EC304E1C152C40317DEC /* projects */ = { + 9AE3690711BE9BADB7FCFC55060FE61E /* .symlinks */ = { isa = PBXGroup; children = ( - 3EA3A45195093EFA62C1A70DCF19D455 /* ever_wallet_flutter_new */, + B4EA2D98E0D16723B7016478041661D9 /* plugins */, ); - name = projects; - path = projects; - sourceTree = ""; - }; - 9B83E949FB8A4523AF5AA91FA65773C0 /* .. */ = { - isa = PBXGroup; - children = ( - 9432332F8057614CA7D844C95C955095 /* .. */, - ); - name = ..; - path = ..; + name = .symlinks; + path = .symlinks; sourceTree = ""; }; - 9BB1DFD893F61E8C563CDB0A16879346 /* Resources */ = { + 9BD3E90701647983ECC20D85D87988E3 /* image_picker_ios */ = { isa = PBXGroup; children = ( - E994165DFFCFEFCBBD12F31704039D09 /* PrivacyInfo.xcprivacy */, + C4B0DBF22C5FC8A365D56C8A6327D649 /* Resources */, ); - name = Resources; - path = Resources; + name = image_picker_ios; + path = image_picker_ios; sourceTree = ""; }; 9BF1015D51A34358852CB09E615E7676 /* NSDictionary+URLArguments */ = { @@ -6878,192 +7036,177 @@ name = "NSDictionary+URLArguments"; sourceTree = ""; }; - 9BF9DA7A279076A556E4DBB59E3CA02F /* .. */ = { + 9C2C459C5C2A226F2B21B89DC502FB90 /* Resources */ = { isa = PBXGroup; children = ( - 0B2154B947AE4553E41A0BE1705E269F /* .. */, + 22618D13774344E2E37442B3CA9F6388 /* PrivacyInfo.xcprivacy */, ); - name = ..; - path = ..; + name = Resources; + path = Resources; sourceTree = ""; }; - 9C7883B1522222A8F724DA1213DFDA86 /* .. */ = { + 9CA24CC465E7D88ADE035EF6F6FA4F7F /* .. */ = { isa = PBXGroup; children = ( - DA108AF942C12FDDCA22BBB6FB6BEBAE /* .. */, + 9FD4634FACEE1F96840F1529D53B7909 /* .. */, ); name = ..; path = ..; sourceTree = ""; }; - 9DB003F94120F7B067FEFE8AD9CE2572 /* permission_handler_apple */ = { + 9CE3291E5FAE6BDE663EB550CF546296 /* ios */ = { isa = PBXGroup; children = ( - A7EA5F7ABA2745BC1C1BF31D13E6A8D7 /* .. */, - 2491A76958153FE7144D83BBD545A4DF /* Pod */, - 10575C3D7FDC69D5EA4197CB4BFEE5C6 /* Support Files */, + 6EA8998AF7961DF6CDFB98E50DC6D3C6 /* PrivacyInfo.xcprivacy */, ); - name = permission_handler_apple; - path = ../.symlinks/plugins/permission_handler_apple/ios; + name = ios; + path = ios; sourceTree = ""; }; - 9DFC2D674FA14E4254C4E47F3E00998A /* flutter_keyboard_visibility */ = { + 9D33218E7C3B4B416D8D5B78F1DEA970 /* .symlinks */ = { isa = PBXGroup; children = ( - F74C61CBE91BF99993D257F0CFF94526 /* ios */, + 8CF8BDCE7263660374525346AA5ED50B /* plugins */, ); - name = flutter_keyboard_visibility; - path = flutter_keyboard_visibility; + name = .symlinks; + path = .symlinks; sourceTree = ""; }; - 9E3643F9A14F73773B78851782A1F98F /* projects */ = { + 9DCA531BF2BBA74CC5009AD0F0796752 /* image_picker_ios */ = { isa = PBXGroup; children = ( - C8F365FF3F6029AFAFF366506ECB7765 /* ever_wallet_flutter_new */, + B57C8C90B1D038F97A7EDD15E95D23B7 /* ios */, ); - name = projects; - path = projects; + name = image_picker_ios; + path = image_picker_ios; sourceTree = ""; }; - 9F225719BCF5A7D930CC14B4C58BA9FF /* shared_preferences_foundation */ = { + 9EB11C733AB226018F1FAEEE98D056D4 /* broxus */ = { isa = PBXGroup; children = ( - 6C2E416347F3502124FD16972AFED3A2 /* Resources */, + DB8F8242FD9D4B1F31564478828E5059 /* ever_wallet_flutter_new */, ); - name = shared_preferences_foundation; - path = shared_preferences_foundation; + name = broxus; + path = broxus; sourceTree = ""; }; - A0191272D0C966BCAC613333C7AFDA37 /* plugins */ = { + 9FD4634FACEE1F96840F1529D53B7909 /* .. */ = { isa = PBXGroup; children = ( - EA7AC9A85AA83171371C48B2E12445B8 /* flutter_native_splash */, + 8333BD7700A83E2BFD1B9708589F94FC /* .. */, ); - name = plugins; - path = plugins; + name = ..; + path = ..; sourceTree = ""; }; - A06FE16C2436A6186BE2AE4A5EE8DB4E /* integration_test */ = { + A216E7423003059B7A3F615AE50594FC /* broxus */ = { isa = PBXGroup; children = ( - 095A7EF55EACDD7A2B4E9DB288CC5799 /* FLTIntegrationTestRunner.m */, - 95096F2A51B1C43F29AC91622F9A2B55 /* IntegrationTestIosTest.m */, - B9AEE5935E74684FC5EC812779D8BDB7 /* IntegrationTestPlugin.m */, - 07B1DC9DE6955450BDBFCB4429DE6F40 /* include */, + 77A54C5B63530FAC58F998D239D6854B /* ever_wallet_flutter_new */, ); - name = integration_test; - path = integration_test; + name = broxus; + path = broxus; sourceTree = ""; }; - A09C91ACC4DE60DA5136CFC5C116A4AD /* Classes */ = { - isa = PBXGroup; - children = ( - 27B2F91022612A25AE234E38132BF9E1 /* SqfliteCursor.h */, - 8E6AE6A180B98FF12FB98F33213A25DC /* SqfliteCursor.m */, - 0BD10FAF5967B172B9A9BAFC9B3D4C49 /* SqfliteDarwinDatabase.h */, - B5C169824A04E889155592FCA3FBDE95 /* SqfliteDarwinDatabase.m */, - 3D07BB026EB842C5DC8FF24C1DBC931C /* SqfliteDarwinDatabaseAdditions.h */, - 21B0385C0A0F5B09B99F16727C474D5B /* SqfliteDarwinDatabaseAdditions.m */, - 364609A1CA74DE175B26FDB7BF7BADD3 /* SqfliteDarwinDatabaseQueue.h */, - 1FEA7CFB3121FF5495C507EFD69EBDFA /* SqfliteDarwinDatabaseQueue.m */, - F7FABBE6FE60BA8258CDE5CD94E08B0F /* SqfliteDarwinDB.h */, - 76C3328FA19FFA338580DD8B4D39E1DE /* SqfliteDarwinImport.h */, - 5BF758C9ADCCF1C7EEA72EA32EE476FE /* SqfliteDarwinResultSet.h */, - 52C7A3A30E0D10B312ACB6AF166CB553 /* SqfliteDarwinResultSet.m */, - 7B1D0AE473EC130A82CAAA514BDF47DF /* SqfliteDatabase.h */, - B7DDBF7E0A49385DDADAF9E67B9CF178 /* SqfliteDatabase.m */, - BF73A1DD91E4C963ADC8287990D42690 /* SqfliteImport.h */, - 4BE66C629CE4F50650615593830FE9C3 /* SqfliteOperation.h */, - 8C5404D827B852FF23326E64299A010C /* SqfliteOperation.m */, - 7272F005E477C3FBAD9DE3EC07911A47 /* SqflitePlugin.h */, - F6F186682C274CBA0C9D9780F452320F /* SqflitePlugin.m */, + A257FCDE04E8D7224F6ED2061924E299 /* package_info_plus */ = { + isa = PBXGroup; + children = ( + FCED7ED1BBBF78092345058707CFB672 /* ios */, ); - name = Classes; - path = Classes; + name = package_info_plus; + path = package_info_plus; sourceTree = ""; }; - A0D6EC62251B9F12C848AB54AE3E42DF /* path_provider_foundation */ = { + A2736472693BBE12364FDBEB8355FB54 /* ever_wallet_flutter_new */ = { isa = PBXGroup; children = ( - 36CF2B35A3CB6FB76D417EC7A65B800D /* messages.g.swift */, - 33834ABA21FF48866562114BFE476176 /* PathProviderPlugin.swift */, + 1447DF536A82E4BAD0709051A969A9EE /* ios */, ); - name = path_provider_foundation; - path = path_provider_foundation; + name = ever_wallet_flutter_new; + path = ever_wallet_flutter_new; sourceTree = ""; }; - A1253958BA8975D93C40CCB3E51F85C1 /* Storyboards */ = { + A2B0F405F397A9B324A8BE74F5D02966 /* .symlinks */ = { isa = PBXGroup; children = ( - C147C26EE91FED520C3B9FF4E8C4CA77 /* WebView.storyboard */, + D4C8B88505D2C625062B3838CBF229E2 /* plugins */, ); - name = Storyboards; - path = Storyboards; + name = .symlinks; + path = .symlinks; sourceTree = ""; }; - A13D97BE30238ED11C0A853D081A71E7 /* .. */ = { + A2DC95368DC1F3FEB88771D062A0AEA3 /* Resources */ = { isa = PBXGroup; children = ( - 469909DD74B2A844E00A3C39FA1AE6C7 /* .. */, + 3057C7E05D7A5607565A9921C7033648 /* PrivacyInfo.xcprivacy */, ); - name = ..; - path = ..; + name = Resources; + path = Resources; sourceTree = ""; }; - A1533DE4F23E6FA6D39699CA427B573B /* ios */ = { + A3B9364E0FC67D7C856AD6D562E3ECC8 /* broxus */ = { isa = PBXGroup; children = ( - A719C858894ED4C1BE73C0B9D125C520 /* .symlinks */, + A2736472693BBE12364FDBEB8355FB54 /* ever_wallet_flutter_new */, ); - name = ios; - path = ios; + name = broxus; + path = broxus; sourceTree = ""; }; - A2727A1D5D1ADD82C5747EBA41FBF861 /* Pod */ = { + A3E49B63B71356F1CB698ABE441D14EE /* shared_preferences_foundation */ = { isa = PBXGroup; children = ( - 3B7AD1D25A5C8D1B03EC8116A22399C3 /* flutter_email_sender.podspec */, - 17D03953D364524A4455825582BD75D3 /* LICENSE */, + B4825E18CFC7692F659DC3EDB99F80BB /* .. */, + 8909FACCEC85D13647A70D6240FD132E /* Pod */, + C0A35077AF347A082D61BF1BCE428DDE /* Support Files */, ); - name = Pod; + name = shared_preferences_foundation; + path = ../.symlinks/plugins/shared_preferences_foundation/darwin; sourceTree = ""; }; - A2E9A50E3766826BD357CE1FA87ADA17 /* Resources */ = { + A43D986BB68D1636348BE33F86EAA7EF /* darwin */ = { isa = PBXGroup; children = ( - E67AAD2C42B33570876D906A740FE0A9 /* PrivacyInfo.xcprivacy */, + D9B7F4F975214E63AA39FFDB75B3CC5F /* PrivacyInfo.xcprivacy */, ); - name = Resources; - path = Resources; + name = darwin; + path = darwin; sourceTree = ""; }; - A58227F2A8A702621959D374ABB204E1 /* .. */ = { + A48B8AC9120193D74AE969503F89740D /* plugins */ = { isa = PBXGroup; children = ( - 6D153467A05EE3EAD5D0EC376F3991E4 /* .. */, - 2716F3C1DBD09072F05E76632111063D /* Documents */, + C11F7E100E0ECB8CA8A17088F4298430 /* path_provider_foundation */, ); - name = ..; - path = ..; + name = plugins; + path = plugins; sourceTree = ""; }; - A598C7358F631CBA28337B0FBC103A70 /* Documents */ = { + A52066FA9AEDE620262D006236029FD5 /* broxus */ = { isa = PBXGroup; children = ( - 9AEA03E4F593EC304E1C152C40317DEC /* projects */, + 309BEF68E2CD18FB2ABCF95218CFFEDF /* ever_wallet_flutter_new */, ); - name = Documents; - path = Documents; + name = broxus; + path = broxus; sourceTree = ""; }; - A635F795CD1C9204D4422A488DA630BC /* .. */ = { + A5BACC3F29DA3927AFE95FFCDFBBB323 /* ever_wallet_flutter_new */ = { isa = PBXGroup; children = ( - 1F35446AC9864F42F4AAF4909F9676B5 /* .. */, - DABDF2540D60AE115239CC3DF805C082 /* Documents */, + B5DB07D7A77989BB5BCAE3C1278C0BEC /* ios */, ); - name = ..; - path = ..; + name = ever_wallet_flutter_new; + path = ever_wallet_flutter_new; + sourceTree = ""; + }; + A5F367DE310667B28390D05D5B5D7964 /* ios */ = { + isa = PBXGroup; + children = ( + D82BA11E205906E2BA0A95C09783BB53 /* PrivacyInfo.xcprivacy */, + ); + name = ios; + path = ios; sourceTree = ""; }; A68E16F1F00A649FBC8B82E5092B4F61 /* Support Files */ = { @@ -7076,13 +7219,31 @@ path = "../Target Support Files/MLImage"; sourceTree = ""; }; - A719C858894ED4C1BE73C0B9D125C520 /* .symlinks */ = { + A6FC34CAE686925F4B94CCBBC4316ECD /* .. */ = { isa = PBXGroup; children = ( - A0191272D0C966BCAC613333C7AFDA37 /* plugins */, + F4CD1EAB66A7E6BF898D84663C84301F /* Documents */, ); - name = .symlinks; - path = .symlinks; + name = ..; + path = .; + sourceTree = ""; + }; + A73948E3EB49C364D7B809CAA1A71D72 /* projects */ = { + isa = PBXGroup; + children = ( + 13999460002D370895EBA9A6650333EE /* broxus */, + ); + name = projects; + path = projects; + sourceTree = ""; + }; + A75C0A4DA8A36DB4433003EFFBA5948C /* Pod */ = { + isa = PBXGroup; + children = ( + E952B42D35AE5706F0B0E005721B9D31 /* LICENSE */, + 315D3FEFAF397915D77EBAF2640438D1 /* path_provider_foundation.podspec */, + ); + name = Pod; sourceTree = ""; }; A78DA80B164ADC44DA4DACAFFEB93BB4 /* Support Files */ = { @@ -7100,92 +7261,148 @@ path = "../Target Support Files/GoogleDataTransport"; sourceTree = ""; }; - A7DC0D138045F8F97357F00C82B91321 /* Pod */ = { + A7A7583C9C83C0CB0AD21DD0C7491AF4 /* path_provider_foundation */ = { isa = PBXGroup; children = ( - A45D02CD5019498F49E9584C13317982 /* flutter_keyboard_visibility.podspec */, - 9466FA3A7D2B21D701338A05C9C1E9D7 /* LICENSE */, + 070264D2F393E5FF3690E9D26B446F2C /* .. */, + A75C0A4DA8A36DB4433003EFFBA5948C /* Pod */, + AE5AD8E996D4323F307B04C1A0B4A172 /* Support Files */, ); - name = Pod; + name = path_provider_foundation; + path = ../.symlinks/plugins/path_provider_foundation/darwin; sourceTree = ""; }; - A7DFECFF86F565EC5D3F548DF012F4B9 /* Support Files */ = { + A7EAACF445C4C12CBB0330B0CDBE3D9A /* path_provider_foundation */ = { isa = PBXGroup; children = ( - AE65CFEBF4875ADAEA3659209026499F /* package_info_plus.modulemap */, - 4BD959FE67BD0252AE48B5E4F2974626 /* package_info_plus-dummy.m */, - D6CB399EF144DA53876A70C42C012CD5 /* package_info_plus-Info.plist */, - D5BA04BE3787A8F266D97FCF22738A54 /* package_info_plus-prefix.pch */, - 1463A6B033371A2348BD00873FFC7A0B /* package_info_plus-umbrella.h */, - 9DC45C3C969EEFF5793F781E06C2A034 /* package_info_plus.debug.xcconfig */, - F4C3D5A980B27BD2C418D61228F67F01 /* package_info_plus.release.xcconfig */, - D24409DB08C6311931F069ED453F2513 /* ResourceBundle-package_info_plus_privacy-package_info_plus-Info.plist */, + 1BB22E4C3091C2472C89B8C9B5312983 /* Resources */, ); - name = "Support Files"; - path = "../../../../Pods/Target Support Files/package_info_plus"; + name = path_provider_foundation; + path = path_provider_foundation; sourceTree = ""; }; - A7EA5F7ABA2745BC1C1BF31D13E6A8D7 /* .. */ = { + A813B7EB80A59644DE8AD76EF20BE6B6 /* .. */ = { isa = PBXGroup; children = ( - 3729A41804B79978EE5E310E31D5791A /* .. */, + 3710DAB4F7025EA83B93C3A87B776E2C /* .. */, ); name = ..; - path = "../../../../../../../../.pub-cache/hosted/pub.dev/permission_handler_apple-9.4.5/ios"; + path = ..; sourceTree = ""; }; - A84091604AED99D1F8FAF218204738F1 /* plugins */ = { + A840957EBE54638AEDC5685C941E4FBA /* Classes */ = { isa = PBXGroup; children = ( - 0E8B9FBEE51F528E18FE5721030A9CD1 /* share_plus */, + 6D11B878F8E3EC57360BDCA5E111BA2F /* ConnectivityPlusPlugin.h */, + 2E9519540E59EA6742FCDA3037B62A26 /* ConnectivityPlusPlugin.m */, + 19BD32E8F3B368CB5393E897ADA3B84D /* ConnectivityProvider.swift */, + 92C7C23BC1C3040B50AA2F569370E66B /* PathMonitorConnectivityProvider.swift */, + 9EC90CC0D11D7BD33BBCF9587F1DF72A /* SwiftConnectivityPlusPlugin.swift */, ); - name = plugins; - path = plugins; + name = Classes; + path = Classes; sourceTree = ""; }; - AA8E8059C374933219736D7450F9DAA8 /* .. */ = { + A90859C9A4DF21C815735C7B49BB2160 /* .. */ = { isa = PBXGroup; children = ( - EB469712739F0C15D8A2452DA7BC7AC8 /* .. */, + F86F628208FA0BA33CAD67262FA6491F /* .. */, ); name = ..; - path = "../../../../../../../../.pub-cache/hosted/pub.dev/flutter_inappwebview-5.8.0/ios"; + path = ..; sourceTree = ""; }; - AACF8C549939C0D680B9E847ECA70036 /* ever_wallet_flutter_new */ = { + A9A36747246DEE0CAA233C4E4A51A007 /* flutter_inappwebview */ = { isa = PBXGroup; children = ( - 3334B4E801E2017B59F34AF74634FE00 /* ios */, + FE367A73211593E719AA5FF979469087 /* .. */, + 95FE47859BDE85022DA001281A928092 /* Pod */, + 37DF6320DE4F37B863E8F138A53C8445 /* Support Files */, ); - name = ever_wallet_flutter_new; - path = ever_wallet_flutter_new; + name = flutter_inappwebview; + path = ../.symlinks/plugins/flutter_inappwebview/ios; sourceTree = ""; }; - AB6FA70A7D674B78680DD60831385DB5 /* darwin */ = { + AA0DDC8F39C2E56F34483F7C2B0A827A /* darwin */ = { isa = PBXGroup; children = ( - C0790838D850B614F6A17B27F3CBB081 /* local_auth_darwin */, + 65B592949E2A12A5C2269BB50D8E1816 /* path_provider_foundation */, ); name = darwin; path = darwin; sourceTree = ""; }; - ACA2716E878B40A1062B8A26C8B8F5A8 /* .. */ = { + AA6184E8E376F7750A352EF99C39A4EE /* ios */ = { + isa = PBXGroup; + children = ( + 827D809921361815420E1D6C6007F1C3 /* url_launcher_ios */, + ); + name = ios; + path = ios; + sourceTree = ""; + }; + AB896F97319AF13DEBA75DA87F5A8C05 /* Frameworks */ = { + isa = PBXGroup; + children = ( + 3B7D78737CE35DF6A65A072A3C533D2D /* NekotonBridge.xcframework */, + ); + name = Frameworks; + sourceTree = ""; + }; + AB99A5254E01376BEF286E584CC314A3 /* Documents */ = { + isa = PBXGroup; + children = ( + F624BC1ABD2A6E1D96935E9E47A9DE41 /* projects */, + ); + name = Documents; + path = Documents; + sourceTree = ""; + }; + AB9BC6C575AB84F970F08FCD4FDCDE26 /* local_auth_darwin */ = { + isa = PBXGroup; + children = ( + 6F1ABA9F5D09ED0D561D477370ED0794 /* FLALocalAuthPlugin.m */, + 4469F91A5299787F008D44A68B038A80 /* messages.g.m */, + 1700FC2D773D8356E17041F887E9FACD /* include */, + ); + name = local_auth_darwin; + path = local_auth_darwin; + sourceTree = ""; + }; + ABA1AE84149E974C4393CAA9F2D3FD28 /* broxus */ = { + isa = PBXGroup; + children = ( + 033B73B7B2BAD99C6BAC81912465AFE5 /* ever_wallet_flutter_new */, + ); + name = broxus; + path = broxus; + sourceTree = ""; + }; + ABC8B2ABAEF6238111E2A951D85B713D /* .. */ = { isa = PBXGroup; children = ( - B465B04EFD638A545B6131092FF421EF /* .. */, + 539F7CF67FD05F88F514F143A59BFA73 /* Documents */, ); name = ..; - path = "../../../../../../../../.pub-cache/hosted/pub.dev/shared_preferences_foundation-2.4.0/darwin/shared_preferences_foundation/Sources"; + path = ..; sourceTree = ""; }; - AE27E0D3ED3DF95B037E97C3B4D29A08 /* .symlinks */ = { + ACFDEAF8F43A00FAF7ED49DC334BF531 /* broxus */ = { isa = PBXGroup; children = ( - 51A2D0C3D398BC54D356FA681E9DD073 /* plugins */, + 08ED116F61969CFCD73A107D8A2510E7 /* ever_wallet_flutter_new */, ); - name = .symlinks; - path = .symlinks; + name = broxus; + path = broxus; + sourceTree = ""; + }; + AD36D2FF9FED20DEA7C904AF9EA52BCE /* ios */ = { + isa = PBXGroup; + children = ( + 0C31DC38EB5ED1B3D1A7F427B59530CC /* integration_test */, + ); + name = ios; + path = ios; sourceTree = ""; }; AE520FA28362C25430CFB454E730E74C /* Sentry */ = { @@ -7198,193 +7415,209 @@ path = Sentry; sourceTree = ""; }; - AE5DFACAE0D71374C0305A763B7B98B4 /* Frameworks */ = { + AE5AD8E996D4323F307B04C1A0B4A172 /* Support Files */ = { isa = PBXGroup; children = ( - C3962D31E7C7002958B8791D527B7E82 /* MLKitBarcodeScanning.framework */, + AB8278C5DB9AC95D8633734C4A489C67 /* path_provider_foundation.modulemap */, + E01D7B3F02E734AC7115492E027971D4 /* path_provider_foundation-dummy.m */, + 21F8595F28973AA5A212B385EAECF2CF /* path_provider_foundation-Info.plist */, + 542FB5B8424B41163A50F9D7DE10133E /* path_provider_foundation-prefix.pch */, + 2FC9E549F58399B23CB5D799C1DA659E /* path_provider_foundation-umbrella.h */, + F69566DAE9F9C879A66CB81ED7B13590 /* path_provider_foundation.debug.xcconfig */, + 2529F7B6D57D43838BFCB332D2EDFE47 /* path_provider_foundation.release.xcconfig */, + FE7720A642B74B8235FEBEC0016D014B /* ResourceBundle-path_provider_foundation_privacy-path_provider_foundation-Info.plist */, ); - name = Frameworks; + name = "Support Files"; + path = "../../../../Pods/Target Support Files/path_provider_foundation"; sourceTree = ""; }; - AE78A239E79E42D159AC159D40605FC2 /* ios */ = { + AE5DFACAE0D71374C0305A763B7B98B4 /* Frameworks */ = { isa = PBXGroup; children = ( - 3081ECA59DD51659989DBD8037294A4D /* PrivacyInfo.xcprivacy */, + C3962D31E7C7002958B8791D527B7E82 /* MLKitBarcodeScanning.framework */, ); - name = ios; - path = ios; + name = Frameworks; sourceTree = ""; }; - AEBFE66E8801B2735362CD3DB78D4E96 /* Documents */ = { + AF944CB8E04A7299D3CF14D746E78593 /* Documents */ = { isa = PBXGroup; children = ( - 50741413F28F7AFE153DBA561EE8884B /* projects */, + 8E49E5007270E9EF7ED95D642BA5E558 /* projects */, ); name = Documents; path = Documents; sourceTree = ""; }; - AEE4F8C3604E3458DDCD6329BBA2B6EB /* Sources */ = { + AFAB90FD5F91B61E9A206423A21D4E75 /* Pod */ = { isa = PBXGroup; children = ( - D99D84BC63846EBF3A2041FC815EC398 /* url_launcher_ios */, + FDEE844294408B42D71BA268CBCF825F /* LICENSE */, + 02FA38436AAFE66E90DF414A30BE7746 /* mobile_scanner.podspec */, ); - name = Sources; - path = Sources; + name = Pod; sourceTree = ""; }; - B042ECD43C630C8AED5DB29C9AD3E697 /* Resources */ = { + AFCB4E4E9B5E71114CC2B9F30FE40313 /* projects */ = { isa = PBXGroup; children = ( - E38A7AB5EA3A7152A8CFB893C37DED8C /* PrivacyInfo.xcprivacy */, + A3B9364E0FC67D7C856AD6D562E3ECC8 /* broxus */, ); - name = Resources; - path = Resources; + name = projects; + path = projects; sourceTree = ""; }; - B04CF51A2019180A8D9A145D30B0CE90 /* flutter_email_sender */ = { + B0459C1043BA044DADE67B1BAD5167A1 /* plugins */ = { isa = PBXGroup; children = ( - 82C5CB7B405DA2B79292587606D31546 /* ios */, + 319AFC03864A310EB1AE9AF75F08BBCE /* url_launcher_ios */, ); - name = flutter_email_sender; - path = flutter_email_sender; + name = plugins; + path = plugins; sourceTree = ""; }; - B082DDF64692C30497D87F62F9463B36 /* plugins */ = { + B06DC88F103EEC36ABA929E6C01B4B43 /* plugins */ = { isa = PBXGroup; children = ( - B04CF51A2019180A8D9A145D30B0CE90 /* flutter_email_sender */, + 8C2191655FDC3DFC0AF7E10EF2BEDF63 /* flutter_nekoton_bridge */, ); name = plugins; path = plugins; sourceTree = ""; }; - B0B5915CD080EC0ABF41EF2F9EB8BD27 /* Pod */ = { + B0C2672B355E204262B0CF51F38C638C /* projects */ = { + isa = PBXGroup; + children = ( + 4C6E260108DD5349DB059EF07CFB74B0 /* broxus */, + ); + name = projects; + path = projects; + sourceTree = ""; + }; + B0EE412F63F3C544F741BBFF38A49F05 /* Pod */ = { isa = PBXGroup; children = ( - 484272E098EB5F841B81880845C7F416 /* LICENSE */, - 0839238B639FEA11BCC1C9A453A162F7 /* shared_preferences_foundation.podspec */, + D3EC8541E824C5181E16C20E6491F74F /* flutter_native_splash.podspec */, + 0378403EECA7D1757ADD7F980E9968FA /* LICENSE */, ); name = Pod; sourceTree = ""; }; - B21B82B3B69E5E6C3E41AD386A1ABAAE /* integration_test */ = { + B11CA65BAF4F535F08B7714EC7CAD04C /* broxus */ = { isa = PBXGroup; children = ( - 1872FE4C16B8CC3E627909F553A26548 /* .. */, - 8432A060E51D72563C02D69B3F920D1C /* Pod */, - F90F7C17A9551B0C81496FB09B262EB7 /* Support Files */, + 945BA454E043C027297179AF51A5E5C0 /* ever_wallet_flutter_new */, ); - name = integration_test; - path = ../.symlinks/plugins/integration_test/ios; + name = broxus; + path = broxus; sourceTree = ""; }; - B2CD13C06C9018463B32D54B85B311F5 /* .. */ = { + B149EDFEB24176B5A85E013F2A44D2F6 /* .. */ = { isa = PBXGroup; children = ( - 4F4D91EE90EED277ABF44D1843E70394 /* .. */, + 6247ED605B3DB27533CF55A73ACC578E /* .. */, ); name = ..; path = ..; sourceTree = ""; }; - B2F5FCEB5940D372B0E729B8B5439033 /* shared_preferences_foundation */ = { + B2A7F58A4711801E1F33E81C08FCD07B /* plugins */ = { isa = PBXGroup; children = ( - FD6607AA8A6E9E0FA2124B55E6414517 /* messages.g.swift */, - ACD6155C7CB3E227EEF3EC84F925870A /* SharedPreferencesPlugin.swift */, + 4CE08FDDC22A8DC37B90530334E637ED /* path_provider_foundation */, ); - name = shared_preferences_foundation; - path = shared_preferences_foundation; + name = plugins; + path = plugins; sourceTree = ""; }; - B305278AD896C393F58A9D1DBA85C211 /* projects */ = { + B2B96B7B47A42B015C0A2B8B7C49830B /* ever_wallet_flutter_new */ = { isa = PBXGroup; children = ( - 1AC019B484BDD4FF3947F45DAE64ABB3 /* ever_wallet_flutter_new */, + 409EFF1D205CC511FEAD05723626C4FD /* ios */, ); - name = projects; - path = projects; + name = ever_wallet_flutter_new; + path = ever_wallet_flutter_new; sourceTree = ""; }; - B309C0515869E9B36ECC71C9E006CA7D /* .. */ = { + B30F1E88E9F16558E41B52CC69F89748 /* plugins */ = { isa = PBXGroup; children = ( - BD65CAF6DD78F9EC32C8BB8207EC4538 /* .. */, + 7EE22DC85D2B7C7A3D11ABCDABEBA580 /* flutter_native_splash */, ); - name = ..; - path = ..; + name = plugins; + path = plugins; sourceTree = ""; }; - B363E2B0F3FCDCB6428395A86A93C9DF /* integration_test */ = { + B37C6A375FBDEA05AF15A0A229CB55A5 /* .. */ = { isa = PBXGroup; children = ( - 113F34E3469104B0C308671856B1AF42 /* ios */, + 8860A177DE58C11F03EF63841F4638C3 /* .. */, ); - name = integration_test; - path = integration_test; + name = ..; + path = "../../../../../../../../../.pub-cache/hosted/pub.dev/permission_handler_apple-9.4.5/ios"; sourceTree = ""; }; - B37B3B59BAA89C9AD8C80E38B8B0F9F9 /* .. */ = { + B4825E18CFC7692F659DC3EDB99F80BB /* .. */ = { isa = PBXGroup; children = ( - 1E6786E7C3CEDB55D4F52CE9B15EB9BA /* .. */, + EA0CFA52FD5631D2A780C5CA371B44AB /* .. */, ); name = ..; - path = ..; + path = "../../../../../../../../../.pub-cache/hosted/pub.dev/shared_preferences_foundation-2.4.0/darwin/shared_preferences_foundation/Sources"; sourceTree = ""; }; - B465B04EFD638A545B6131092FF421EF /* .. */ = { + B4DB12D01EEF21A3360B715BCB267F27 /* ios */ = { isa = PBXGroup; children = ( - 2ADF0C01FFD572B0DF88E5AB6940AE58 /* .. */, + 2DF5B616486A184B049F085115F3F548 /* Classes */, ); - name = ..; - path = ..; + name = ios; + path = ios; sourceTree = ""; }; - B470C26B2ED3A77E1CCB46281F0DF772 /* projects */ = { + B4EA2D98E0D16723B7016478041661D9 /* plugins */ = { isa = PBXGroup; children = ( - E17C65B8FB3C31EAD9D7CA7AA583DC83 /* ever_wallet_flutter_new */, + 152FF8E6CEE96BF7447FDE86C8367917 /* connectivity_plus */, ); - name = projects; - path = projects; + name = plugins; + path = plugins; + sourceTree = ""; + }; + B57C8C90B1D038F97A7EDD15E95D23B7 /* ios */ = { + isa = PBXGroup; + children = ( + 062C9203CE3B3EA2B167CD3D992B5027 /* image_picker_ios */, + ); + name = ios; + path = ios; sourceTree = ""; }; - B48434B8C4E2E7291C8E6209C24799D6 /* .. */ = { + B5CEAB55A4A6C0EA2EA5ED353B8876C8 /* .. */ = { isa = PBXGroup; children = ( - 4D050FB547D8C458143703F1F350388C /* .. */, + 5658A070BD9450556C9D348111E2B497 /* Documents */, ); name = ..; path = ..; sourceTree = ""; }; - B4FFC18F32F1BF85A9FFA88A65ADF0E5 /* Support Files */ = { + B5DB07D7A77989BB5BCAE3C1278C0BEC /* ios */ = { isa = PBXGroup; children = ( - 58D00FC7880D40B5F8C5E05D5972683E /* flutter_native_splash.modulemap */, - 7920792C7A4BB2A08AFE666FEDC9D04F /* flutter_native_splash-dummy.m */, - A6B541FFC9B4F7B26CA596C21FFF42C6 /* flutter_native_splash-Info.plist */, - C23538166A629A84EA60E4CF3F5C4C84 /* flutter_native_splash-prefix.pch */, - 403D70F75034FFC5A70FF437BE21457E /* flutter_native_splash-umbrella.h */, - 30F98EB803FD5C328558272910C8246D /* flutter_native_splash.debug.xcconfig */, - 3C623764A02C0B6BA3A628060F65377B /* flutter_native_splash.release.xcconfig */, - CA7F8503C36C7C34F17DC6899B8AD08E /* ResourceBundle-flutter_native_splash_privacy-flutter_native_splash-Info.plist */, + 9D33218E7C3B4B416D8D5B78F1DEA970 /* .symlinks */, ); - name = "Support Files"; - path = "../../../../Pods/Target Support Files/flutter_native_splash"; + name = ios; + path = ios; sourceTree = ""; }; - B533B462E17CA54C4D856682D0E6CF3B /* .. */ = { + B61083D66E0F2F20B0AAE0CD2751BC57 /* shared_preferences_foundation */ = { isa = PBXGroup; children = ( - 0F2F72A47BE472EBBA42A6CBDF59CD52 /* Documents */, + 79A14164DD8D174653AA89AFD915C64C /* messages.g.swift */, + 3349BE4FC383B4B5161416B3BFFA8B21 /* SharedPreferencesPlugin.swift */, ); - name = ..; - path = .; + name = shared_preferences_foundation; + path = shared_preferences_foundation; sourceTree = ""; }; B617098E818590953F7E8FADD8133C54 /* GoogleUtilities */ = { @@ -7400,88 +7633,78 @@ path = GoogleUtilities; sourceTree = ""; }; - B6CA4AC0E122CB4D7D33A2E5E55754DD /* .. */ = { + B62E14491928EE11E00A06F922AC41B2 /* connectivity_plus */ = { isa = PBXGroup; children = ( - 0BEFD4974C7DD0BEADE98AED9DCFEA27 /* .. */, + C77F31432DBC3A97F9EE980205E760D9 /* darwin */, ); - name = ..; - path = ..; + name = connectivity_plus; + path = connectivity_plus; sourceTree = ""; }; - B71F9EA891DEBC9334272B0BF7967D1B /* flutter_nekoton_bridge */ = { + B62E8BAAEDAFBF6D52D8FFD9558C811D /* shared_preferences_foundation */ = { isa = PBXGroup; children = ( - 555C8F6074F379C5365A385BD44A9EB5 /* ios */, + 10FFE8812ED0A019E0C80DC3FFEABCAE /* darwin */, ); - name = flutter_nekoton_bridge; - path = flutter_nekoton_bridge; + name = shared_preferences_foundation; + path = shared_preferences_foundation; sourceTree = ""; }; - B741D397CD3BC8CD2880777DA658DC63 /* package_info_plus */ = { + B6AE0E7E2368232E3B38B81576260C08 /* flutter_inappwebview */ = { isa = PBXGroup; children = ( - D652E9BFAF83E8CAFAB952E694BDAFB5 /* .. */, - 3CCF2B112D1858EBB38E5750E15D1225 /* Pod */, - A7DFECFF86F565EC5D3F548DF012F4B9 /* Support Files */, + 2F3C1E264C8D643AC4980EA73E4C452E /* ios */, ); - name = package_info_plus; - path = ../.symlinks/plugins/package_info_plus/ios; + name = flutter_inappwebview; + path = flutter_inappwebview; sourceTree = ""; }; - B819B7715AB31FA224F15DF68E29DB2A /* .symlinks */ = { + B6DDEEDDB7D1E4581DA7E35BA14FA779 /* .symlinks */ = { isa = PBXGroup; children = ( - 2B4F57811C818A55AA68F4D72F29AFD1 /* plugins */, + DC60FBB4CE8FD78884C0FCCD4A4BF85B /* plugins */, ); name = .symlinks; path = .symlinks; sourceTree = ""; }; - B869FB62472E8B7A2F40A75DCCE2B357 /* .. */ = { - isa = PBXGroup; - children = ( - B37B3B59BAA89C9AD8C80E38B8B0F9F9 /* .. */, - ); - name = ..; - path = "../../../../../../../../.pub-cache/git/nekoton_bridge-39a53e71ffec0668e4384a61c3fc5a9695b7687c/packages/flutter_nekoton_bridge/ios"; - sourceTree = ""; - }; - B86CC986A91A1E26BA199EA29458710C /* plugins */ = { + B6F032710AB143F762A9688823A5C3D0 /* shared_preferences_foundation */ = { isa = PBXGroup; children = ( - 2E48BF3345F7AFA5B08B16AC7FC0B781 /* sentry_flutter */, + 2247D92575314E4CA6BCEFB27E23731E /* Sources */, ); - name = plugins; - path = plugins; + name = shared_preferences_foundation; + path = shared_preferences_foundation; sourceTree = ""; }; - B8990DBF0CE2DBEAF1D962DF8065D64C /* image_picker_ios */ = { + B78CB9893DE8688687E8D4684005EE5F /* darwin */ = { isa = PBXGroup; children = ( - 924AA65E111446AF803AE28FD6856CE0 /* Resources */, + B6F032710AB143F762A9688823A5C3D0 /* shared_preferences_foundation */, ); - name = image_picker_ios; - path = image_picker_ios; + name = darwin; + path = darwin; sourceTree = ""; }; - B89D16126A0A6D59BC06C543905FC4D7 /* Documents */ = { + B83931F2525A2C7E228C82F13992B3DC /* url_launcher_ios */ = { isa = PBXGroup; children = ( - 5FA0621D00450144AC70E18880113AB1 /* projects */, + 936BA181ABF1C74123E143D293552F20 /* .. */, + 83460744474EA9A623DBA362D41635F3 /* Pod */, + 48853ADC1A1C6F4F439FC301AE7AFE45 /* Support Files */, ); - name = Documents; - path = Documents; + name = url_launcher_ios; + path = ../.symlinks/plugins/url_launcher_ios/ios; sourceTree = ""; }; - B9212ACA640A36C965006E44A43B9E15 /* Pod */ = { + B8E0D678087DC43886C8BDFC5CE2A356 /* ever_wallet_flutter_new */ = { isa = PBXGroup; children = ( - 6AC2CDBDA2C84742D8442B75D06690C1 /* LICENSE */, - BC1032B9ADB39C250938069D3FA1A3BE /* README.md */, - 6A13097C99ED99D800EFB8A72E7A69EE /* sqflite.podspec */, + 951250FBB9CC2F2FBB54C22F4C075CCF /* ios */, ); - name = Pod; + name = ever_wallet_flutter_new; + path = ever_wallet_flutter_new; sourceTree = ""; }; B93E91040372B9AC85348F04A7222CE9 /* Targets Support Files */ = { @@ -7500,68 +7723,51 @@ name = Frameworks; sourceTree = ""; }; - BABBFC38A1871DB083C01DFD1A7C4A40 /* .. */ = { + B9761A57BAE2C06C9E557C14BA341F7E /* flutter_secure_storage */ = { isa = PBXGroup; children = ( - 30824A5DB87FD97891B761BE413C2946 /* .. */, + E600D3B8C335754D9D204D39020B1931 /* .. */, + 0AE14A2CADA5770D4F9A02391E6D15B0 /* Pod */, + 710728B156D622956202ED006528D3F9 /* Support Files */, ); - name = ..; - path = ..; - sourceTree = ""; - }; - BB09F130CF73DD1E2CB2F741BD586319 /* integration_test */ = { - isa = PBXGroup; - children = ( - F759AD81A6C764F0F553F05FB85FFD3F /* Sources */, - ); - name = integration_test; - path = integration_test; - sourceTree = ""; - }; - BB2C004090C3FE8C6DDB498899045BB9 /* url_launcher_ios */ = { - isa = PBXGroup; - children = ( - 47347C6962E93A4874FB5E3D87D33364 /* ios */, - ); - name = url_launcher_ios; - path = url_launcher_ios; + name = flutter_secure_storage; + path = ../.symlinks/plugins/flutter_secure_storage/ios; sourceTree = ""; }; - BB4E03DC14C894412AAA07323BB55702 /* .. */ = { + BA18F1B7CBD08C07E850AB7DE0622C01 /* .symlinks */ = { isa = PBXGroup; children = ( - FB55FCC080FBC31F6CF7E24F290114F4 /* .. */, + 1C4F111346DC21DCD8A1A1514673BBDD /* plugins */, ); - name = ..; - path = ..; + name = .symlinks; + path = .symlinks; sourceTree = ""; }; - BD3301DBF4E6F3B64F52801671B64C9D /* Pod */ = { + BA5B3A571D9D6F0E0F32EEEDA76E55F4 /* projects */ = { isa = PBXGroup; children = ( - 759BB05602B1633C8A1E5DA452EAB098 /* flutter_nekoton_bridge.podspec */, - C0F1CB1E34E585EB73430270BF119BA0 /* LICENSE */, + B11CA65BAF4F535F08B7714EC7CAD04C /* broxus */, ); - name = Pod; + name = projects; + path = projects; sourceTree = ""; }; - BD49F91741C710B0958D1DE92082B921 /* .. */ = { + BBC5A4F7EF4223AFEC7F3B4245C1AADE /* Documents */ = { isa = PBXGroup; children = ( - 517F934F43E8F6CBE2B1BF9CED3AC693 /* Documents */, + BA5B3A571D9D6F0E0F32EEEDA76E55F4 /* projects */, ); - name = ..; - path = ..; + name = Documents; + path = Documents; sourceTree = ""; }; - BD65CAF6DD78F9EC32C8BB8207EC4538 /* .. */ = { + BD01A4D5D31D12F7BD30A98DA4C01C77 /* projects */ = { isa = PBXGroup; children = ( - 40AFD51931311EBCFCE940B2B5D5B59A /* .. */, - 7EEA0226D5BBA734A5E37AC7E20D2DBC /* Documents */, + 0C26CD9F69CE988187467C052D116D8E /* broxus */, ); - name = ..; - path = ..; + name = projects; + path = projects; sourceTree = ""; }; BD7777AACF0BAEAC470E7A74966C65B2 /* GTMSessionFetcher */ = { @@ -7574,73 +7780,71 @@ path = GTMSessionFetcher; sourceTree = ""; }; - BDA56A2B3EECB5469111C6B05DA606C5 /* Sources */ = { - isa = PBXGroup; - children = ( - A0D6EC62251B9F12C848AB54AE3E42DF /* path_provider_foundation */, - ); - name = Sources; - path = Sources; - sourceTree = ""; - }; BE01E65E8831DB1F65C18DF1B85FF74F /* Development Pods */ = { isa = PBXGroup; children = ( - C9B716326C5A20279B478B21E157D999 /* connectivity_plus */, + 51E05CA3A181BF643DB1FB4B5C475B08 /* connectivity_plus */, 1F28E2A087CDFEF8920F7D6D01FDCD32 /* Flutter */, - 02B7BC2DB50571498F7D0E2F35CDB9E0 /* flutter_email_sender */, - E6EEE6A45F2D84B2583D75D73EA636FB /* flutter_inappwebview */, - 795029924F28936808D5B8E06854C5CD /* flutter_keyboard_visibility */, - 5579ED0E4803A03329BB462B571DD273 /* flutter_native_splash */, - EB84402C4A7A4BCBA109A81EB27A5015 /* flutter_nekoton_bridge */, - 7F726E56571C9A14BC1D77540724D35C /* flutter_secure_storage */, - 546692EC0C526C8CB50274E5979AB303 /* image_picker_ios */, - B21B82B3B69E5E6C3E41AD386A1ABAAE /* integration_test */, - E6A167985E71C8E1A546880470C17023 /* local_auth_darwin */, - 2FAE0E016988C5013CD68C42840833A2 /* mobile_scanner */, - B741D397CD3BC8CD2880777DA658DC63 /* package_info_plus */, - 1EF12821BC50E198C2E4AFAF8CE246D2 /* path_provider_foundation */, - 9DB003F94120F7B067FEFE8AD9CE2572 /* permission_handler_apple */, - 0153F0ACE584BDCD4F43F2D31A79190F /* sentry_flutter */, - 4264F0C092DA0BFEE61BCBF05F3DD877 /* share_plus */, - 08F649B4A31471F70B295F3A09F8F9A1 /* shared_preferences_foundation */, - 3704486F73B21DA6E5BFDB96DF7CEA30 /* sqflite */, - 76EB7995BDAD28437FFE1D59BA175725 /* url_launcher_ios */, + 4D8586630A433EF4F808ED8EFB9AB2FB /* flutter_email_sender */, + A9A36747246DEE0CAA233C4E4A51A007 /* flutter_inappwebview */, + CADB829341EB5F02D70BF3A99F893648 /* flutter_keyboard_visibility */, + 2AABA95DFDDDFCC648CCD75C0DE51049 /* flutter_native_splash */, + 4648CE49424C10F4F36AD54C7BE9EDBB /* flutter_nekoton_bridge */, + B9761A57BAE2C06C9E557C14BA341F7E /* flutter_secure_storage */, + 75080B91311341B458DB3826FE851DA6 /* image_picker_ios */, + 77CFE9D4372B490BF36F042FD4A37177 /* integration_test */, + 51720516404306BBBA665846DEF5405D /* local_auth_darwin */, + 6A524BC824505B56179AC6635BD1A12E /* mobile_scanner */, + D00AB724E9FF196BF25FADF4C5BF4A1E /* package_info_plus */, + A7A7583C9C83C0CB0AD21DD0C7491AF4 /* path_provider_foundation */, + 400C59DFADBF62BB34F0027800ABD05E /* permission_handler_apple */, + 07368BF1BCC272756722FE45C88E878A /* sentry_flutter */, + 5CF704EE56C65EAE2C45B02C114472C8 /* share_plus */, + A3E49B63B71356F1CB698ABE441D14EE /* shared_preferences_foundation */, + 448FF397161705100B397218DFE3BA00 /* sqflite */, + B83931F2525A2C7E228C82F13992B3DC /* url_launcher_ios */, ); name = "Development Pods"; sourceTree = ""; }; - BEFF07B6073F8A3AC5B3397A4900C822 /* Pod */ = { + BE05982E378061DFEED5E907C7454CDE /* projects */ = { isa = PBXGroup; children = ( - 8496C60AE2BDC145A9D7FE0460C9D0E6 /* flutter_secure_storage.podspec */, - DB4DB48F93771B03120B7A2E641C8951 /* LICENSE */, + FF2755E8FEBAA7CA315951A294440CF2 /* broxus */, ); - name = Pod; + name = projects; + path = projects; sourceTree = ""; }; - BF7C58305D0B6109C26AA453FBAA82C6 /* darwin */ = { + BE799D200DC23A3BC08C7308B953E135 /* share_plus */ = { isa = PBXGroup; children = ( - 43384D6978CA1D533CD4992F34E65C8F /* path_provider_foundation */, + 9CE3291E5FAE6BDE663EB550CF546296 /* ios */, ); - name = darwin; - path = darwin; + name = share_plus; + path = share_plus; sourceTree = ""; }; - BF7EA574DCD72DF1D9B38D2CB093EC64 /* .symlinks */ = { + BEC87721F1DE10A611FF4333DD6CD8F4 /* Support Files */ = { isa = PBXGroup; children = ( - 5372829D8E9E74426B5EA90F58D16210 /* plugins */, + DE0E6D0E76E077F56FC8E9332CDB74A4 /* ResourceBundle-share_plus_privacy-share_plus-Info.plist */, + 2593FA2B6F5F1921C6F13C99E9C8BDFC /* share_plus.modulemap */, + 511D3890F85458361D15DA4B6D2E2A1C /* share_plus-dummy.m */, + 75BBB29726254FDE5B68C8558DF83EC2 /* share_plus-Info.plist */, + 18C6F37B21993F5457242E888D684C85 /* share_plus-prefix.pch */, + E8751A9FB91731B86BF6CF616801081E /* share_plus-umbrella.h */, + 8245B503917DB437609D1F307FE126A4 /* share_plus.debug.xcconfig */, + 196B9320A9BD7C09E7C5420F49D709B3 /* share_plus.release.xcconfig */, ); - name = .symlinks; - path = .symlinks; + name = "Support Files"; + path = "../../../../Pods/Target Support Files/share_plus"; sourceTree = ""; }; - BF96EF41262696BB603F1DF6727400A5 /* .. */ = { + BF0EB2AB27775E579D7928DB306B8DB1 /* .. */ = { isa = PBXGroup; children = ( - DB3E0E4EE9427DDFA772FAC454D64904 /* .. */, + 5A238B4BEF453756580C3BAF7B08DA1F /* .. */, ); name = ..; path = ..; @@ -7656,105 +7860,84 @@ name = Logger; sourceTree = ""; }; - C01BC85221CA2A9249BC23E64552E416 /* ios */ = { + C054FED768FB180ACC39098972A198A2 /* projects */ = { isa = PBXGroup; children = ( - C9D38AD0A17CCF84A464A4F89CDB1E53 /* image_picker_ios */, + 8C19812130A7F42E3050C9081DE11288 /* broxus */, ); - name = ios; - path = ios; + name = projects; + path = projects; sourceTree = ""; }; - C0790838D850B614F6A17B27F3CBB081 /* local_auth_darwin */ = { + C0A35077AF347A082D61BF1BCE428DDE /* Support Files */ = { isa = PBXGroup; children = ( - 1A7A21939086A4EFABB4C1E8E07C2B17 /* Sources */, + 2B2D7F63ABD2F94CA6F5437CBB5143EF /* ResourceBundle-shared_preferences_foundation_privacy-shared_preferences_foundation-Info.plist */, + 6091F2C543B2643DFF7BDD085FDDFF0E /* shared_preferences_foundation.modulemap */, + C9F72EF56A02B79911A1752DC4DC3B92 /* shared_preferences_foundation-dummy.m */, + B5498AD13803D5AD01D0354F23BB3D29 /* shared_preferences_foundation-Info.plist */, + 527F971F891855D07CDF130650B194F5 /* shared_preferences_foundation-prefix.pch */, + 66FD748DD8BE8D76D427D6B35DDEB846 /* shared_preferences_foundation-umbrella.h */, + C855B0903105AC46A0D025FA2287F884 /* shared_preferences_foundation.debug.xcconfig */, + D1CCD0C16DFF0194B0A936A205ED4ED0 /* shared_preferences_foundation.release.xcconfig */, ); - name = local_auth_darwin; - path = local_auth_darwin; + name = "Support Files"; + path = "../../../../Pods/Target Support Files/shared_preferences_foundation"; sourceTree = ""; }; - C0D77AA3D7B22437E6470909FDA5E3C4 /* plugins */ = { + C0D417CC4080085687129A31FFE8D13E /* projects */ = { isa = PBXGroup; children = ( - 2AAC81BCB668B7226E230D87D73C43EC /* permission_handler_apple */, + 28242348CA1CEC32B05E0DBCA27F5675 /* broxus */, ); - name = plugins; - path = plugins; + name = projects; + path = projects; sourceTree = ""; }; - C0FD3AC5040172A45C3DC4DBF2170894 /* .. */ = { + C11F7E100E0ECB8CA8A17088F4298430 /* path_provider_foundation */ = { isa = PBXGroup; children = ( - DFC8C21E7D76149C10C6475CE9D6080D /* .. */, + 801D72C9BB5A2EA4D51ADF21FCC1E3A7 /* darwin */, ); - name = ..; - path = ..; + name = path_provider_foundation; + path = path_provider_foundation; sourceTree = ""; }; - C1190A8572DA2DECB0D9BF5CD9DDBAE6 /* darwin */ = { + C18CA5ED7318E515054A974433F00F77 /* GoogleMLKit */ = { isa = PBXGroup; children = ( - 14D3318652D3E88B1F58FCE0D1C4760C /* PrivacyInfo.xcprivacy */, + 2CD460CEC1B3B1142E0F8CF3F62B65F6 /* MLKitCore */, + F3409F6589AE966507177A6F541ADC92 /* Support Files */, ); - name = darwin; - path = darwin; + name = GoogleMLKit; + path = GoogleMLKit; sourceTree = ""; }; - C13DF571B7EBA263CFA19C169D8B7B76 /* plugins */ = { + C1C0E5C8F80EDC5D8FA083125C649F92 /* ever_wallet_flutter_new */ = { isa = PBXGroup; children = ( - 24DC9A7BFA221B270CEB600B8BA1C602 /* shared_preferences_foundation */, + 2683AA35C4025CB8558192C4794EC28E /* ios */, ); - name = plugins; - path = plugins; + name = ever_wallet_flutter_new; + path = ever_wallet_flutter_new; sourceTree = ""; }; - C18CA5ED7318E515054A974433F00F77 /* GoogleMLKit */ = { + C207810D75F3D5C6B5F40F03330D721C /* .. */ = { isa = PBXGroup; children = ( - 2CD460CEC1B3B1142E0F8CF3F62B65F6 /* MLKitCore */, - F3409F6589AE966507177A6F541ADC92 /* Support Files */, - ); - name = GoogleMLKit; - path = GoogleMLKit; - sourceTree = ""; - }; - C1F8E4DC0BE0D2552CDC8D28E7107E56 /* PluginScriptsJS */ = { - isa = PBXGroup; - children = ( - 56BF85BDECFE43E05FFEAD16C9E7AAF6 /* CallAsyncJavaScriptBelowIOS14WrapperJS.swift */, - D9CAAEA69D89F0077E6C264A580054E8 /* ConsoleLogJS.swift */, - 8C0579FC7A2A3467BD6A6FF0726E8F11 /* EnableViewportScaleJS.swift */, - 0DFFFBACD219B36433C22F177CCB17F9 /* FindElementsAtPointJS.swift */, - 03B3CBE8719F6F4CECE5D7FFF9E17C8E /* FindTextHighlightJS.swift */, - 03FA97B7884F29821200BEFB1523A9DD /* InterceptAjaxRequestJS.swift */, - 99CF0EBD4A7377A9C5F8A3F74A514AB7 /* InterceptFetchRequestJS.swift */, - A574953E2B2D586D0DECAB6F76B78E3B /* JavaScriptBridgeJS.swift */, - 219397827D65EF950553FF08B64A822E /* LastTouchedAnchorOrImageJS.swift */, - ADC1C48865554BD13C9D90759923D77D /* OnLoadResourceJS.swift */, - C6A847047D630B9186D3CEE39351C4F2 /* OnWindowBlurEventJS.swift */, - 99A57E3C9CD0190D5FFF90392A894D72 /* OnWindowFocusEventJS.swift */, - 0BE5DF8A50A053A75A3666A46815DD01 /* OriginalViewPortMetaTagContentJS.swift */, - A11FDB2BA7D2D12BDD8D969E4CC4BCA0 /* PluginScriptsUtil.swift */, - 075A07B70395CC8477DDA1E9DE788156 /* PrintJS.swift */, - 9E4E9B138AD3A7B83BB97A5DD80597A1 /* PromisePolyfillJS.swift */, - CD2E0CA16CC75E0274DCBCBECFAC8B92 /* SupportZoomJS.swift */, - 95E6F1C458A71568294E3E340915CA8C /* WebMessageChannelJS.swift */, - 424C5202794B80D8D29440538BA84624 /* WebMessageListenerJS.swift */, - 99E468BFBE752B6CB1D6A88E1627789D /* WindowIdJS.swift */, + 5FE6BF9B397E09E6F53F8B9A582B7638 /* .. */, ); - name = PluginScriptsJS; - path = PluginScriptsJS; + name = ..; + path = "../../../../../../../../../.pub-cache/hosted/pub.dev/package_info_plus-8.0.0/ios"; sourceTree = ""; }; - C21D5EE7DAAA94B9EF94EF46A68766C2 /* ios */ = { + C23A844F50C846438C5356E6FB830D5E /* .. */ = { isa = PBXGroup; children = ( - 5E54780159270CFB2CF234D4D201070E /* .symlinks */, + A90859C9A4DF21C815735C7B49BB2160 /* .. */, ); - name = ios; - path = ios; + name = ..; + path = ..; sourceTree = ""; }; C241C8BAFE4F08FFFB9DED80F7642800 /* Support Files */ = { @@ -7767,6 +7950,24 @@ path = "../Target Support Files/MLKitBarcodeScanning"; sourceTree = ""; }; + C37F6C773B22DBD29DCE4FB6CA9935E8 /* .. */ = { + isa = PBXGroup; + children = ( + 0CE093F8D156AA7379CD444A72E6B0D5 /* .. */, + ); + name = ..; + path = ..; + sourceTree = ""; + }; + C3B2EC5D4F4DF8062B632BDCFED45620 /* Pod */ = { + isa = PBXGroup; + children = ( + 70C07DE4A1760889FC2156DACBF6F5E9 /* LICENSE */, + C7EE5B37E4285A10B969AB7D05BC031F /* permission_handler_apple.podspec */, + ); + name = Pod; + sourceTree = ""; + }; C3EBC39360586E3D043C3AE4E879EE2D /* Support Files */ = { isa = PBXGroup; children = ( @@ -7782,24 +7983,33 @@ path = "../Target Support Files/GoogleUtilities"; sourceTree = ""; }; - C48EC8329A5F4CF1A63129DA8EB1C7F8 /* ever_wallet_flutter_new */ = { + C4179DE4DA58C96C47AC4B65EF04E05E /* plugins */ = { isa = PBXGroup; children = ( - 934F4478C8031420617FB5EB54C86743 /* ios */, + B62E14491928EE11E00A06F922AC41B2 /* connectivity_plus */, ); - name = ever_wallet_flutter_new; - path = ever_wallet_flutter_new; + name = plugins; + path = plugins; sourceTree = ""; }; - C4EE834E8159A5FDBBC27DD56BFE0C4D /* plugins */ = { + C481499C219CC15C6FCA40EB3B736EDD /* plugins */ = { isa = PBXGroup; children = ( - 4E4B70F7773D36F02EA9773C8720794C /* local_auth_darwin */, + BE799D200DC23A3BC08C7308B953E135 /* share_plus */, ); name = plugins; path = plugins; sourceTree = ""; }; + C4B0DBF22C5FC8A365D56C8A6327D649 /* Resources */ = { + isa = PBXGroup; + children = ( + B4A26C540B5560BCBD136D125899F5F7 /* PrivacyInfo.xcprivacy */, + ); + name = Resources; + path = Resources; + sourceTree = ""; + }; C4F6AB9954D41C093C5881B5BF5C9924 /* Frameworks */ = { isa = PBXGroup; children = ( @@ -7808,6 +8018,24 @@ name = Frameworks; sourceTree = ""; }; + C4FF59D41C000056EFC2690A3C04AFFF /* broxus */ = { + isa = PBXGroup; + children = ( + B8E0D678087DC43886C8BDFC5CE2A356 /* ever_wallet_flutter_new */, + ); + name = broxus; + path = broxus; + sourceTree = ""; + }; + C5DD2D159D5EBF8C3217B79DA8F66932 /* ios */ = { + isa = PBXGroup; + children = ( + B6DDEEDDB7D1E4581DA7E35BA14FA779 /* .symlinks */, + ); + name = ios; + path = ios; + sourceTree = ""; + }; C637C662576797DA5DD117ABB320D6DB /* Environment */ = { isa = PBXGroup; children = ( @@ -7846,13 +8074,50 @@ path = MLKitBarcodeScanning; sourceTree = ""; }; - C727C1C16153A5FA045EDFE1A4EF3274 /* ever_wallet_flutter_new */ = { + C6846BF1D8A33502F2D54E136655A943 /* .symlinks */ = { isa = PBXGroup; children = ( - FE5D712407A2C87B32CFA52C446456FF /* ios */, + ECA5F13E7D706D11F6DAD83079C8F0A8 /* plugins */, ); - name = ever_wallet_flutter_new; - path = ever_wallet_flutter_new; + name = .symlinks; + path = .symlinks; + sourceTree = ""; + }; + C721700B711290710D02D24C43F18BEB /* .. */ = { + isa = PBXGroup; + children = ( + 8C3FEAAD3DDFE597198558957BF7C084 /* .. */, + ); + name = ..; + path = ..; + sourceTree = ""; + }; + C7365A7CBDA0BA0A2CDFF0653A6BCEF3 /* .. */ = { + isa = PBXGroup; + children = ( + D8C6C7D443F2B4E4F6BAD8A5ED7DC2DE /* .. */, + 72A0D0171EE2A71FCAEC418A966F97DB /* Documents */, + ); + name = ..; + path = ..; + sourceTree = ""; + }; + C73F345AB989BA13F649331F34241E33 /* .. */ = { + isa = PBXGroup; + children = ( + 905BA016C66BFFEF53CD18DEEA9A4F3C /* .. */, + ); + name = ..; + path = ../../../../../../../../../flutter/packages/integration_test/ios/integration_test/Sources; + sourceTree = ""; + }; + C77F31432DBC3A97F9EE980205E760D9 /* darwin */ = { + isa = PBXGroup; + children = ( + A840957EBE54638AEDC5685C941E4FBA /* Classes */, + ); + name = darwin; + path = darwin; sourceTree = ""; }; C82A69A30919DA2E1BB0CF496337C7BB /* HybridSDK */ = { @@ -8445,103 +8710,40 @@ name = HybridSDK; sourceTree = ""; }; - C8D9603CFE59F601297F2D49DA7CF1B8 /* Pod */ = { + C85D4E712572FF6D21C0251DCD861718 /* Support Files */ = { isa = PBXGroup; children = ( - 7DB7BB1F0CA758B53DC7D3D90B226F73 /* LICENSE */, - 7EBEDD46265454463E525770FEA4E99B /* share_plus.podspec */, - ); - name = Pod; - sourceTree = ""; - }; - C8F365FF3F6029AFAFF366506ECB7765 /* ever_wallet_flutter_new */ = { - isa = PBXGroup; - children = ( - 2673852DB092264F5EFB94B933B772D2 /* ios */, - ); - name = ever_wallet_flutter_new; - path = ever_wallet_flutter_new; - sourceTree = ""; - }; - C90711314B0EFCC767E58DF0C559FA03 /* Documents */ = { - isa = PBXGroup; - children = ( - DEC46513F3C9E7AF1BD3AA1B8BEDA21D /* projects */, - ); - name = Documents; - path = Documents; - sourceTree = ""; - }; - C9B716326C5A20279B478B21E157D999 /* connectivity_plus */ = { - isa = PBXGroup; - children = ( - 2CE009582FE954A0A97D297342CD1356 /* .. */, - 4FF47F6BE28B38BBF4894EC8A9CA0F6D /* Pod */, - 6DFBE931308A6109A1385C3158118107 /* Support Files */, - ); - name = connectivity_plus; - path = ../.symlinks/plugins/connectivity_plus/darwin; - sourceTree = ""; - }; - C9D38AD0A17CCF84A464A4F89CDB1E53 /* image_picker_ios */ = { - isa = PBXGroup; - children = ( - CABCFE176FED9A8C43D90D3657E589B5 /* Sources */, - ); - name = image_picker_ios; - path = image_picker_ios; - sourceTree = ""; - }; - C9E74593618FE6ABDBB471A8A6D50749 /* Support Files */ = { - isa = PBXGroup; - children = ( - E3A3683FADFEF0AD0C2F7F0C03E8E58D /* local_auth_darwin.modulemap */, - DED3FFFD78288FF0B9B9C88CDBC72796 /* local_auth_darwin-dummy.m */, - 72D935EEE6C23CB8210B9965DA50E920 /* local_auth_darwin-Info.plist */, - 934D91CFC9F62D462E93B51685A8F25F /* local_auth_darwin-prefix.pch */, - E13A84A08DCD1686D5C1AF21CC955FF5 /* local_auth_darwin-umbrella.h */, - 5776D1A94BB0D848208043448BFE7DA0 /* local_auth_darwin.debug.xcconfig */, - 06772A7CF38F34E24C0E8F60729C6339 /* local_auth_darwin.release.xcconfig */, - 01FC54BC1458F546124A97D5FB12492A /* ResourceBundle-local_auth_darwin_privacy-local_auth_darwin-Info.plist */, + 38BE9AD85B58BE60893587F92E89D71A /* flutter_email_sender.modulemap */, + DCEBE7B67D6D1240D112F878993B0E9A /* flutter_email_sender-dummy.m */, + EA265078B145E53326EA87E8EF6EA80B /* flutter_email_sender-Info.plist */, + 3BF7759A59E0ABE43D92ADAB110FE7FD /* flutter_email_sender-prefix.pch */, + C66BCB9A4609E95B4E614ACE31A5AE7A /* flutter_email_sender-umbrella.h */, + FB633F8BFD9D6596E94916C974E76A66 /* flutter_email_sender.debug.xcconfig */, + 59E64776226CA679807D58D84423DF5F /* flutter_email_sender.release.xcconfig */, + 181F9761EDE7EE132BFC0CDD5947C064 /* ResourceBundle-flutter_email_sender-flutter_email_sender-Info.plist */, ); name = "Support Files"; - path = "../../../../Pods/Target Support Files/local_auth_darwin"; - sourceTree = ""; - }; - CA553D30FBDA7F3467D8086337D4C334 /* shared_preferences_foundation */ = { - isa = PBXGroup; - children = ( - 19D82141F81642670A0E953D3258B52F /* Sources */, - ); - name = shared_preferences_foundation; - path = shared_preferences_foundation; - sourceTree = ""; - }; - CA9CC116AA714586434E6F121BFEF14E /* Documents */ = { - isa = PBXGroup; - children = ( - 90FCBADF231F55543E817B16284065C2 /* projects */, - ); - name = Documents; - path = Documents; + path = "../../../../Pods/Target Support Files/flutter_email_sender"; sourceTree = ""; }; - CAAB1BE47E4DC612CD11281B1BC3A25A /* ios */ = { + C95F4EFC7EE24A95BA7093038DEA66E2 /* plugins */ = { isa = PBXGroup; children = ( - F3308E732E392E5E064F71136927EB68 /* .symlinks */, + 520F8D822F9D00D634CFF36235D2CC6A /* mobile_scanner */, ); - name = ios; - path = ios; + name = plugins; + path = plugins; sourceTree = ""; }; - CABCFE176FED9A8C43D90D3657E589B5 /* Sources */ = { + CADB829341EB5F02D70BF3A99F893648 /* flutter_keyboard_visibility */ = { isa = PBXGroup; children = ( - 325D08501F895E9218E44E39D99887D4 /* image_picker_ios */, + D14828A142BD04165E097DD199C8DF0F /* .. */, + EFA2A0442CD4F5F9AE165FDE66EA36A2 /* Pod */, + F749495FD549EE63D7B988846670824D /* Support Files */, ); - name = Sources; - path = Sources; + name = flutter_keyboard_visibility; + path = ../.symlinks/plugins/flutter_keyboard_visibility/ios; sourceTree = ""; }; CB4B305A569725F56481A2F7D7ABADB6 /* Defines */ = { @@ -8552,24 +8754,6 @@ name = Defines; sourceTree = ""; }; - CB557C2B00723227BD61C277C1EFECC7 /* .. */ = { - isa = PBXGroup; - children = ( - 9195DC575C6143D20A9AA0EA50768673 /* .. */, - ); - name = ..; - path = ..; - sourceTree = ""; - }; - CB68AF9A4B8E2A9F0B378CD3705AE2C6 /* plugins */ = { - isa = PBXGroup; - children = ( - 15E9D24600373CBC336A093A514E76DD /* shared_preferences_foundation */, - ); - name = plugins; - path = plugins; - sourceTree = ""; - }; CBA482D1B250677929D4D3794A425FD4 /* Products */ = { isa = PBXGroup; children = ( @@ -8624,31 +8808,41 @@ name = Products; sourceTree = ""; }; - CD5D0C906DE2958A2D1D9077D9B9692B /* ever_wallet_flutter_new */ = { + CBAD9BE9CF46E0B1B0952AF3DB976C29 /* projects */ = { isa = PBXGroup; children = ( - 369DCDE64053562FDC3A3FBA9EA1ACBD /* ios */, + ABA1AE84149E974C4393CAA9F2D3FD28 /* broxus */, ); - name = ever_wallet_flutter_new; - path = ever_wallet_flutter_new; + name = projects; + path = projects; sourceTree = ""; }; - CDC5808C5E952BF49700C5FBA7A35C01 /* ever_wallet_flutter_new */ = { + CC2ED098DBAB0842277C59A20C1220FC /* Pod */ = { isa = PBXGroup; children = ( - 6EC89CC213FC75662F7B64EAF24CB94B /* ios */, + A922DBFD2E2C91DE130E353E002139D9 /* LICENSE */, + 98A2B070D911E544EA806C7D88C580B0 /* README.md */, + 993FE713FF1946854C1C32793C1D9F9F /* sqflite.podspec */, ); - name = ever_wallet_flutter_new; - path = ever_wallet_flutter_new; + name = Pod; sourceTree = ""; }; - CDE97E84FDD4D3F2CE6EDED594EFAD2F /* projects */ = { + CDB594257FDA819BB9FA95826CCDCED2 /* .. */ = { isa = PBXGroup; children = ( - 31AB55E7808FAE1F6ED5AD90F42BE839 /* ever_wallet_flutter_new */, + 9A63ED6E9260F97BD310EBDD02F5AE4C /* .. */, ); - name = projects; - path = projects; + name = ..; + path = "../../../../../../../../../.pub-cache/hosted/pub.dev/share_plus-9.0.0/ios"; + sourceTree = ""; + }; + CE5BD7A8F6A85A1C006EE4E7D60E2E51 /* .. */ = { + isa = PBXGroup; + children = ( + DAA72EE23081C77B5555783FF10951B7 /* .. */, + ); + name = ..; + path = ..; sourceTree = ""; }; CEA19F9B52E98141CE7081E2BF4F8F2A /* PromisesObjC */ = { @@ -8701,21 +8895,6 @@ path = PromisesObjC; sourceTree = ""; }; - CEC41105CE362888BE688200A74945AD /* Support Files */ = { - isa = PBXGroup; - children = ( - 65F7EFA91B766FF90C7630E9FE96EB58 /* flutter_keyboard_visibility.modulemap */, - A4F4C450535A5C9367D63B8C4834A43E /* flutter_keyboard_visibility-dummy.m */, - 9A9DB310251035E404BD8190BD3A156A /* flutter_keyboard_visibility-Info.plist */, - E5ED39D4498DE49A24D330F3989509D1 /* flutter_keyboard_visibility-prefix.pch */, - BEEEEB6AB23D0D20DAD95CA5BC5D3C6F /* flutter_keyboard_visibility-umbrella.h */, - 1372971D81F12D53D144676DF82636DC /* flutter_keyboard_visibility.debug.xcconfig */, - 79066AF4601F7FFEE6681FB7DA45FA72 /* flutter_keyboard_visibility.release.xcconfig */, - ); - name = "Support Files"; - path = "../../../../Pods/Target Support Files/flutter_keyboard_visibility"; - sourceTree = ""; - }; CF1408CF629C7361332E53B88F7BD30C = { isa = PBXGroup; children = ( @@ -8728,827 +8907,832 @@ ); sourceTree = ""; }; - D00C1CF58D67C7BDDCF3F1D581B2156B /* ios */ = { - isa = PBXGroup; - children = ( - 01435C5E18D7A943D0D4E72FC25BBA07 /* Classes */, - A1253958BA8975D93C40CCB3E51F85C1 /* Storyboards */, - ); - name = ios; - path = ios; - sourceTree = ""; - }; - D028B87A6603D7432208003D27D09C52 /* ios */ = { - isa = PBXGroup; - children = ( - 86BDD3D77B2681198E03CBFBB54B0DC5 /* Classes */, - ); - name = ios; - path = ios; - sourceTree = ""; - }; - D11CD726DEDB2FB9A6B080D79B9B869D /* Classes */ = { + CF20F6EBEB8AC9AB0A92CC7C4342A82F /* .. */ = { isa = PBXGroup; children = ( - C93FD92E9ED30CF5A017229F700ECA1E /* FPPSharePlusPlugin.h */, - 29DA425C210D008D04B135B3B2E6EC11 /* FPPSharePlusPlugin.m */, - ); - name = Classes; - path = Classes; - sourceTree = ""; - }; - D16A7AF636C47C3E0B2A1191CDC233F1 /* .. */ = { - isa = PBXGroup; - children = ( - 087F0A66F8D5433C9E7594DAC5B333CB /* .. */, + 19A420E64FC5E5F5E0C110BD3254F9CF /* .. */, + DFD6ED3DABF7E5CDF4E7824BD33099A1 /* Documents */, ); name = ..; path = ..; sourceTree = ""; }; - D21FC4F513397AA94E5C377578727390 /* ever_wallet_flutter_new */ = { + D00AB724E9FF196BF25FADF4C5BF4A1E /* package_info_plus */ = { isa = PBXGroup; children = ( - 5DBEC73D85E76C37405712954BAE7A07 /* ios */, + C207810D75F3D5C6B5F40F03330D721C /* .. */, + 3D6815AC1B5EFE27602512E5ABF887BC /* Pod */, + 1F766C0DF2CCB25C39AD56004FDF3EE5 /* Support Files */, ); - name = ever_wallet_flutter_new; - path = ever_wallet_flutter_new; + name = package_info_plus; + path = ../.symlinks/plugins/package_info_plus/ios; sourceTree = ""; }; - D241BE68138D8CA61D89AFF63D6E9EB4 /* encode */ = { + D025A02EEBFB1A3AD50E0089646A29CF /* darwin */ = { isa = PBXGroup; children = ( + 3C0F9967A3A60858BF2C4AF46CEBE367 /* local_auth_darwin */, ); - name = encode; + name = darwin; + path = darwin; sourceTree = ""; }; - D25297CC3C132B4F7C93A58E5D8427F0 /* Support Files */ = { + D0D804DDDCBE375A5A78CE2018933C4F /* projects */ = { isa = PBXGroup; children = ( - 8850F4B4134E77FECDF2BFB97B71493C /* ResourceBundle-url_launcher_ios_privacy-url_launcher_ios-Info.plist */, - F3FA80221A20AB6E73FFDEE10540F079 /* url_launcher_ios.modulemap */, - 6AAFB65C4BA5A2F7AF16F48ED6216196 /* url_launcher_ios-dummy.m */, - F48B843ED6FB9E48254C899800B5603B /* url_launcher_ios-Info.plist */, - 3751BCA2061A295E0ECE68E6961F9827 /* url_launcher_ios-prefix.pch */, - 33ED185898BC40DA8511D7A11943E448 /* url_launcher_ios-umbrella.h */, - 154DBF6E97523835F2CB9615BB62FE8E /* url_launcher_ios.debug.xcconfig */, - 73DB9045D22A4FBE50F8FACF34C6F052 /* url_launcher_ios.release.xcconfig */, + A216E7423003059B7A3F615AE50594FC /* broxus */, ); - name = "Support Files"; - path = "../../../../Pods/Target Support Files/url_launcher_ios"; + name = projects; + path = projects; sourceTree = ""; }; - D407211E25419D5B1344F1738162631C /* Classes */ = { + D0F206D97BB26877A6D1AFACD23D37F7 /* image_picker_ios */ = { isa = PBXGroup; children = ( - D41102F713F218B3893FF145EBA97E38 /* FlutterKeyboardVisibilityPlugin.h */, - 04A761A51931839778D46A342EC2AED7 /* FlutterKeyboardVisibilityPlugin.m */, + 6A3057AB7A63DB33FDEDBF7D67411785 /* FLTImagePickerImageUtil.h */, + ADE80D35938A01D1B97F72775005E152 /* FLTImagePickerMetaDataUtil.h */, + AB40EA8C7339437233C6A9E594323AFE /* FLTImagePickerPhotoAssetUtil.h */, + 23876EBC4B1AAF5172EFEED5D6693224 /* FLTImagePickerPlugin.h */, + 06CBC8E9472E758BFF443CF6F8D020A0 /* FLTImagePickerPlugin_Test.h */, + 2989BF63F29DE22D7EE8160CEE408FBD /* FLTPHPickerSaveImageToPathOperation.h */, + 2CE07805643913C600386506AB396BBE /* messages.g.h */, ); - name = Classes; - path = Classes; + name = image_picker_ios; + path = image_picker_ios; sourceTree = ""; }; - D4D3CE18941620A1BE9500FCD5CB88F0 /* .. */ = { + D14828A142BD04165E097DD199C8DF0F /* .. */ = { isa = PBXGroup; children = ( - 411060734B3B87243F5E11E173621897 /* .. */, + 5E39CC93FD1DE9CAFD07274DE75CDDBD /* .. */, ); name = ..; - path = "../../../../../../../../.pub-cache/hosted/pub.dev/flutter_email_sender-6.0.3/ios"; + path = "../../../../../../../../../.pub-cache/hosted/pub.dev/flutter_keyboard_visibility-5.4.1/ios"; sourceTree = ""; }; - D535BAF61401A10EE189906D37CCDD50 /* .. */ = { + D150502CB0E6668740EB51FB2E7ED06B /* Support Files */ = { isa = PBXGroup; children = ( - EA490D43428250B02CF2C22D088688DB /* .. */, + 8765FD80FACD308D8334EC555CCFE96A /* permission_handler_apple.modulemap */, + ABB5C16C612BB704BA7E586B7051B005 /* permission_handler_apple-dummy.m */, + BA69F6DB734565BF6FA3F84966FCF3A1 /* permission_handler_apple-Info.plist */, + EDB07A52BBC8FED3BA2B304E0A832090 /* permission_handler_apple-prefix.pch */, + F1C60D72E00A9ABD9DE9614DE151EF63 /* permission_handler_apple-umbrella.h */, + 8D9AF5D5743BDE9F45CA5E3010022DD8 /* permission_handler_apple.debug.xcconfig */, + 4BB6D83A83366DD3295B456FF36F5E3F /* permission_handler_apple.release.xcconfig */, + 0C64E31F3F902F928B941D77A1E623BB /* ResourceBundle-permission_handler_apple_privacy-permission_handler_apple-Info.plist */, ); - name = ..; - path = ..; + name = "Support Files"; + path = "../../../../Pods/Target Support Files/permission_handler_apple"; sourceTree = ""; }; - D57A3E5AD67213F010891B4828A067AD /* .. */ = { + D15EB5C7B31434C75D90C22805420CA4 /* .symlinks */ = { isa = PBXGroup; children = ( - 6A2B8E335A805CD7A87DBBF897C6D2D3 /* .. */, + B0459C1043BA044DADE67B1BAD5167A1 /* plugins */, ); - name = ..; - path = ..; + name = .symlinks; + path = .symlinks; sourceTree = ""; }; - D652E9BFAF83E8CAFAB952E694BDAFB5 /* .. */ = { + D198138F9ED51251A25E832DCCC09DBB /* .symlinks */ = { isa = PBXGroup; children = ( - EC10FBB6F82ED02DF0AFB64A23CE8119 /* .. */, + 8E2D8E9BB8DA42CCE14AC22AEFDA5A30 /* plugins */, ); - name = ..; - path = "../../../../../../../../.pub-cache/hosted/pub.dev/package_info_plus-8.0.0/ios"; + name = .symlinks; + path = .symlinks; sourceTree = ""; }; - D682F31F70621AABC92C6ADD3C69709B /* Documents */ = { + D241BE68138D8CA61D89AFF63D6E9EB4 /* encode */ = { isa = PBXGroup; children = ( - 24B8E43D11632552B51D30C3A7B05B38 /* projects */, ); - name = Documents; - path = Documents; + name = encode; sourceTree = ""; }; - D6C5DD0F9F563A97DBEF26D5FF5F9A8B /* projects */ = { + D2D44A5762B40B2307D0847A3998474B /* share_plus */ = { isa = PBXGroup; children = ( - 1C076CDDBD5C0AC475A581A1A5AC945C /* ever_wallet_flutter_new */, + 458CD98F94B58F32DE2099424C5C8AA6 /* ios */, ); - name = projects; - path = projects; + name = share_plus; + path = share_plus; sourceTree = ""; }; - D75BEB7AEE76F780574A6A1DE161BE13 /* Resources */ = { + D2F755B96A236EF83AE2AF8915424585 /* .. */ = { isa = PBXGroup; children = ( - 99C8C4CCFC25379F6DB567D12FD279FF /* PrivacyInfo.xcprivacy */, + 35861D11ADF7698EC0CA5071D33E139B /* .. */, ); - name = Resources; - path = Resources; + name = ..; + path = ..; sourceTree = ""; }; - D78AE21B0EDDBE3FB1C1E6063052EEDD /* ios */ = { + D36B1D231E8A0A4244C5F10C17EF7E0F /* ios */ = { isa = PBXGroup; children = ( - 9401A330121336577C5BBF9699A6E2A7 /* Classes */, - 24E22A76E70BB5AF1DE45BA913862DB0 /* Resources */, + 7DC252CE753AF9AEF6C04CD89B769C6C /* .symlinks */, ); name = ios; path = ios; sourceTree = ""; }; - D808128AE527E0500E6169D1D35A8273 /* ever_wallet_flutter_new */ = { + D3E416A93EDAF7041FD81E3FADC65E02 /* .symlinks */ = { isa = PBXGroup; children = ( - 85A768067D03B39E7555C2E78F5657CB /* ios */, + 11FDA63D6EAF005478B798D492D5BF0B /* plugins */, ); - name = ever_wallet_flutter_new; - path = ever_wallet_flutter_new; - sourceTree = ""; - }; - D849E94BC6A500378954B749072C2FAB /* projects */ = { - isa = PBXGroup; - children = ( - D808128AE527E0500E6169D1D35A8273 /* ever_wallet_flutter_new */, - ); - name = projects; - path = projects; + name = .symlinks; + path = .symlinks; sourceTree = ""; }; - D876C637CCB502810383BED20757CB28 /* .. */ = { + D44A4FB5EC34E07F1E00C19C75CAF90A /* ios */ = { isa = PBXGroup; children = ( - 87028EF8175F9E605350BFB5B59BD389 /* .. */, + FEC132E12C7A6E244D0824067A125DBB /* .symlinks */, ); - name = ..; - path = "../../../../../../../../.pub-cache/hosted/pub.dev/local_auth_darwin-1.3.1/darwin/local_auth_darwin/Sources"; + name = ios; + path = ios; sourceTree = ""; }; - D9326B032D90EFE126AB085D53B8DCF7 /* ever_wallet_flutter_new */ = { + D4C8B88505D2C625062B3838CBF229E2 /* plugins */ = { isa = PBXGroup; children = ( - 6C8BE3B333505286B775CB4946CC2B1C /* ios */, + A257FCDE04E8D7224F6ED2061924E299 /* package_info_plus */, ); - name = ever_wallet_flutter_new; - path = ever_wallet_flutter_new; + name = plugins; + path = plugins; sourceTree = ""; }; - D99D84BC63846EBF3A2041FC815EC398 /* url_launcher_ios */ = { + D5AB7A3B2F03332F0EA5C6702CC15A91 /* Pod */ = { isa = PBXGroup; children = ( - 0399E5A90DDB82EA9AF62B4590048A63 /* Launcher.swift */, - 4038A0998F79A73BFA9DF39D51652B5A /* messages.g.swift */, - BD3855EE456C6CA265D29A55B564D603 /* URLLauncherPlugin.swift */, - D4CBAAA489729E21117B24FFAF1AFF19 /* URLLaunchSession.swift */, + A9A56A0A8929E98EA42DEAAE4601D50B /* flutter_nekoton_bridge.podspec */, + 226BF539BB3C91B96614305CD7A83F07 /* LICENSE */, ); - name = url_launcher_ios; - path = url_launcher_ios; + name = Pod; sourceTree = ""; }; - D9B39EF1B81FD906A2F7F1CB9BFD450C /* Documents */ = { + D5E05C7409DC8E43A798AC52FECA38BC /* ios */ = { isa = PBXGroup; children = ( - 3540DA93500F5250A42A8C11A5569183 /* projects */, + D3E416A93EDAF7041FD81E3FADC65E02 /* .symlinks */, ); - name = Documents; - path = Documents; + name = ios; + path = ios; sourceTree = ""; }; - DA108AF942C12FDDCA22BBB6FB6BEBAE /* .. */ = { + D66B6AAC8840D589B2037B670896EFD7 /* .. */ = { isa = PBXGroup; children = ( - B2CD13C06C9018463B32D54B85B311F5 /* .. */, + E20F1647FC3E95718000CE4EC96D682A /* .. */, ); name = ..; path = ..; sourceTree = ""; }; - DAB03BD63302318C3F2538DD0E98BBF8 /* ios */ = { + D782F0FEA0675D9B767D7418E53BE30F /* .. */ = { isa = PBXGroup; children = ( - 39C3A7DE39F95E969B5AA02C450C22F4 /* .symlinks */, + 5F11D9B10645809DDF5B821080469EDF /* .. */, ); - name = ios; - path = ios; + name = ..; + path = ..; sourceTree = ""; }; - DABDF2540D60AE115239CC3DF805C082 /* Documents */ = { + D7BFC2BA1A7D8E7F4C1F50226A5FBC62 /* Classes */ = { isa = PBXGroup; children = ( - 5D720D37D59CDEC90B62DD8781142189 /* projects */, + F860B634A7BF0DB4DEB82650F4966046 /* FlutterKeyboardVisibilityPlugin.h */, + AC0F441B360786B7CF53EDF77AF08FC5 /* FlutterKeyboardVisibilityPlugin.m */, ); - name = Documents; - path = Documents; + name = Classes; + path = Classes; sourceTree = ""; }; - DB036F9464A2F6A0D86E080E7D8132A7 /* .. */ = { + D83D9921630B2DF46EAEF02951F90700 /* .. */ = { isa = PBXGroup; children = ( - 2EB29B7407E436DC05982AA1F2C614F8 /* .. */, + ED1CF6D94B6052A12E11FC55AEC8A6E2 /* .. */, ); name = ..; path = ..; sourceTree = ""; }; - DB3E0E4EE9427DDFA772FAC454D64904 /* .. */ = { + D8BE2953EFA64E56DD6157D4CB94836F /* .. */ = { isa = PBXGroup; children = ( - 618A8744DDBBCA21D457DCEB72C360A1 /* .. */, + 16CFDDB31420BDF9DE976A55EF9AA0F6 /* .. */, ); name = ..; path = ..; sourceTree = ""; }; - DB8122A05918B51410CDB47818EE3CFC /* plugins */ = { + D8C6C7D443F2B4E4F6BAD8A5ED7DC2DE /* .. */ = { isa = PBXGroup; children = ( - BB2C004090C3FE8C6DDB498899045BB9 /* url_launcher_ios */, + F919EE2457C1AE02A962F780E591B604 /* Documents */, ); - name = plugins; - path = plugins; + name = ..; + path = .; sourceTree = ""; }; - DC2C720542D89FF87286ECEF3C19A3F7 /* .. */ = { + DAA0361404B96EE00C6CA9D26C2ED07C /* shared_preferences_foundation */ = { isa = PBXGroup; children = ( - C90711314B0EFCC767E58DF0C559FA03 /* Documents */, + 4559C4B75C9221A2F4C4C1A09C9DA359 /* Sources */, ); - name = ..; - path = .; + name = shared_preferences_foundation; + path = shared_preferences_foundation; sourceTree = ""; }; - DCB907A112F7983A8C983A60678CB26E /* .. */ = { + DAA72EE23081C77B5555783FF10951B7 /* .. */ = { isa = PBXGroup; children = ( - 8DA0F366985817A1AE7ED106BC54CE10 /* .. */, + E4B63457CA4C486E3C3CF23AA079B240 /* .. */, ); name = ..; path = ..; sourceTree = ""; }; - DD3EC4FC2346AAC11E7A5EE72E0780A9 /* package_info_plus */ = { + DAF5D1BC50F304240F06AB430CD5B136 /* package_info_plus */ = { isa = PBXGroup; children = ( - 5E0C9E0A94389E978D5FB6B2D56B6464 /* ios */, + A5F367DE310667B28390D05D5B5D7964 /* ios */, ); name = package_info_plus; path = package_info_plus; sourceTree = ""; }; - DD8C81203C435A24C865431432EBC1F3 /* .. */ = { + DB1236E875ED88D125E775424D5589A9 /* Pod */ = { isa = PBXGroup; children = ( - 4EB2642DC1D61B70D32AABF2856F605C /* Documents */, + C6A016D8838E91F16E054389FD5C5045 /* flutter_email_sender.podspec */, + 97362DAF7874FD92F260621B9A447890 /* LICENSE */, ); - name = ..; - path = ..; + name = Pod; sourceTree = ""; }; - DE0B2476E05F41E14584159C6F3D192C /* plugins */ = { + DB7AF5FC2EB10F187BFF0F9C15406CA0 /* Documents */ = { isa = PBXGroup; children = ( - 98688BDBB97C46459F3EE89CAB481632 /* flutter_inappwebview */, + A73948E3EB49C364D7B809CAA1A71D72 /* projects */, ); - name = plugins; - path = plugins; + name = Documents; + path = Documents; sourceTree = ""; }; - DE772664D65E682EC1EC202F1FB6A474 /* .symlinks */ = { + DB8F8242FD9D4B1F31564478828E5059 /* ever_wallet_flutter_new */ = { isa = PBXGroup; children = ( - B86CC986A91A1E26BA199EA29458710C /* plugins */, + D36B1D231E8A0A4244C5F10C17EF7E0F /* ios */, ); - name = .symlinks; - path = .symlinks; + name = ever_wallet_flutter_new; + path = ever_wallet_flutter_new; sourceTree = ""; }; - DEC46513F3C9E7AF1BD3AA1B8BEDA21D /* projects */ = { + DBC0E11516151049282517CA18AED0C0 /* .. */ = { isa = PBXGroup; children = ( - 36848DFA0B1883377F93154A85D3E748 /* ever_wallet_flutter_new */, + 2779201B5096C342E861D8CE51924014 /* .. */, ); - name = projects; - path = projects; + name = ..; + path = ..; sourceTree = ""; }; - DFC8C21E7D76149C10C6475CE9D6080D /* .. */ = { + DBD094DB5F4CD109065FF3AF27CB4852 /* plugins */ = { isa = PBXGroup; children = ( - 87835AED761D4C64B11A755C626BA35A /* Documents */, + 953D2687F013ECB8A0BF3324710BC227 /* flutter_email_sender */, ); - name = ..; - path = ..; + name = plugins; + path = plugins; sourceTree = ""; }; - E041EC00D218C2E047B4AA6A1F6458E2 /* plugins */ = { + DC38A9483EAF82BE75D06B92FBCE56AC /* url_launcher_ios */ = { isa = PBXGroup; children = ( - 69DABAA61AE472B40A26DF740C80590B /* url_launcher_ios */, + 9C2C459C5C2A226F2B21B89DC502FB90 /* Resources */, ); - name = plugins; - path = plugins; + name = url_launcher_ios; + path = url_launcher_ios; sourceTree = ""; }; - E17C65B8FB3C31EAD9D7CA7AA583DC83 /* ever_wallet_flutter_new */ = { + DC470C9061E52A3280B40ADDC0C59875 /* Documents */ = { isa = PBXGroup; children = ( - 7A765EB408AC4181250509C6EB1756E1 /* ios */, + 12D6569CB9D94B7A67C0D27BA9A6E49D /* projects */, ); - name = ever_wallet_flutter_new; - path = ever_wallet_flutter_new; + name = Documents; + path = Documents; sourceTree = ""; }; - E191C5442D3FBB783FA48F6743235FE9 /* Pods */ = { + DC60FBB4CE8FD78884C0FCCD4A4BF85B /* plugins */ = { isa = PBXGroup; children = ( - 9A0DFEB3EA710426A3F24089743A23C7 /* GoogleDataTransport */, - C18CA5ED7318E515054A974433F00F77 /* GoogleMLKit */, - 41A6982E914F20D1205BC87791574111 /* GoogleToolboxForMac */, - B617098E818590953F7E8FADD8133C54 /* GoogleUtilities */, - 752374FA0E1F6A78815A1F18A09A7FBF /* GoogleUtilitiesComponents */, - BD7777AACF0BAEAC470E7A74966C65B2 /* GTMSessionFetcher */, - 412CF82283E9E75D63D6D919CB728407 /* MLImage */, - C664B4C047B65FCEA6549DF5E3FD45E5 /* MLKitBarcodeScanning */, - 2BEF8F64AA53DAAEE82594735FCD552F /* MLKitCommon */, - 711C166128A470C5BC35A540672F5933 /* MLKitVision */, - 654E2E29326356F1004FE320E555F98E /* nanopb */, - 4AE59854D0CD29F7D08A5526CBED1B1C /* OrderedSet */, - CEA19F9B52E98141CE7081E2BF4F8F2A /* PromisesObjC */, - AE520FA28362C25430CFB454E730E74C /* Sentry */, + 8D7AD148B0471D7D94C5F3580517D3B6 /* permission_handler_apple */, ); - name = Pods; + name = plugins; + path = plugins; sourceTree = ""; }; - E1BB9DEC3417790E84D1977483BAD320 /* .. */ = { + DDF08DA4BC5D545A4823A72AD79BC2F5 /* .. */ = { isa = PBXGroup; children = ( - 75D3D1B7EDFAE972058046F4ADF9A641 /* .. */, + 358A5B6891040EF5696A0F3EE20D79E8 /* .. */, ); name = ..; - path = "../../../../../../../../.pub-cache/hosted/pub.dev/sqflite-2.3.3+1/darwin"; + path = ..; sourceTree = ""; }; - E2666036B7A366A4097D4E3EBB0ADC67 /* ever_wallet_flutter_new */ = { + DE6417B91FF06DC36EDB29D761909B59 /* ios */ = { isa = PBXGroup; children = ( - DAB03BD63302318C3F2538DD0E98BBF8 /* ios */, + E5AD2D6319A970FB3E48BF2BE0E0DF9B /* .symlinks */, ); - name = ever_wallet_flutter_new; - path = ever_wallet_flutter_new; + name = ios; + path = ios; sourceTree = ""; }; - E28BAC90E769B1F4BCDAB39F661FE1F7 /* Sources */ = { + DFD6ED3DABF7E5CDF4E7824BD33099A1 /* Documents */ = { isa = PBXGroup; children = ( - EED8290B09807EFA852CD1813ED4DC26 /* url_launcher_ios */, + C0D417CC4080085687129A31FFE8D13E /* projects */, ); - name = Sources; - path = Sources; + name = Documents; + path = ../Documents; sourceTree = ""; }; - E2E78829472900B6BBE6C53B193510F3 /* InAppBrowser */ = { + DFDD84AB3B8581EC16F2CF368A5E810C /* Documents */ = { isa = PBXGroup; children = ( - EFE5CAABA79A4B4E30B617147D990665 /* InAppBrowserDelegate.swift */, - C8009A9FB4A3A3657ADDCBB87B40FB78 /* InAppBrowserManager.swift */, - 6B43A3D667231EA08168FA15C64549BC /* InAppBrowserNavigationController.swift */, - 8549B08EA8C5372D1637A142DB166036 /* InAppBrowserOptions.swift */, - D17AD2224FC0C364BEAE0DF83E8812A4 /* InAppBrowserWebViewController.swift */, + 21D738DA5757DAB3118CA8F0B2915FC3 /* projects */, ); - name = InAppBrowser; - path = InAppBrowser; + name = Documents; + path = Documents; sourceTree = ""; }; - E55F4B9C6C0877A8EB52B0F0BCECA901 /* .symlinks */ = { + E05FDD2CCE7A7084930C32F01840E230 /* .symlinks */ = { isa = PBXGroup; children = ( - 5436104891F7EA9EFCD7657B0D24B7B3 /* plugins */, + 81C45723CE7044678B1942B4ABC66E87 /* plugins */, ); name = .symlinks; path = .symlinks; sourceTree = ""; }; - E6A167985E71C8E1A546880470C17023 /* local_auth_darwin */ = { + E07BEBBB99170511BF0355634CD9FEA4 /* local_auth_darwin */ = { isa = PBXGroup; children = ( - D876C637CCB502810383BED20757CB28 /* .. */, - 79F412A33D096F07728EA767524D3B80 /* Pod */, - C9E74593618FE6ABDBB471A8A6D50749 /* Support Files */, + 3C52C60804BA29D2462E0DCDAE3C4933 /* FLALocalAuthPlugin.h */, + B470E6A40DBE8968A48497CB9FCCB1AC /* FLALocalAuthPlugin_Test.h */, + 9B05DC9BC0848E482E4A3574EC43EB7A /* messages.g.h */, ); name = local_auth_darwin; - path = ../.symlinks/plugins/local_auth_darwin/darwin; + path = local_auth_darwin; sourceTree = ""; }; - E6EEE6A45F2D84B2583D75D73EA636FB /* flutter_inappwebview */ = { + E0EDD798B27B552ED7ADFD872E3649F1 /* plugins */ = { isa = PBXGroup; children = ( - AA8E8059C374933219736D7450F9DAA8 /* .. */, - 8E62E03769AF1BBE74975E441B0DF387 /* Pod */, - 1C132A9329D8079366280B42FD8EBCC2 /* Support Files */, + 9DCA531BF2BBA74CC5009AD0F0796752 /* image_picker_ios */, ); - name = flutter_inappwebview; - path = ../.symlinks/plugins/flutter_inappwebview/ios; + name = plugins; + path = plugins; sourceTree = ""; }; - E776B4F8DB6D7E2211C199322041B66E /* util */ = { + E191C5442D3FBB783FA48F6743235FE9 /* Pods */ = { isa = PBXGroup; children = ( - E4B87B692F3DD24C55B8A11F9DF2A035 /* Codec.h */, - 8AC7B3F81B45D5D6EBB4D5D685D05722 /* Codec.m */, + 9A0DFEB3EA710426A3F24089743A23C7 /* GoogleDataTransport */, + C18CA5ED7318E515054A974433F00F77 /* GoogleMLKit */, + 41A6982E914F20D1205BC87791574111 /* GoogleToolboxForMac */, + B617098E818590953F7E8FADD8133C54 /* GoogleUtilities */, + 752374FA0E1F6A78815A1F18A09A7FBF /* GoogleUtilitiesComponents */, + BD7777AACF0BAEAC470E7A74966C65B2 /* GTMSessionFetcher */, + 412CF82283E9E75D63D6D919CB728407 /* MLImage */, + C664B4C047B65FCEA6549DF5E3FD45E5 /* MLKitBarcodeScanning */, + 2BEF8F64AA53DAAEE82594735FCD552F /* MLKitCommon */, + 711C166128A470C5BC35A540672F5933 /* MLKitVision */, + 654E2E29326356F1004FE320E555F98E /* nanopb */, + 4AE59854D0CD29F7D08A5526CBED1B1C /* OrderedSet */, + CEA19F9B52E98141CE7081E2BF4F8F2A /* PromisesObjC */, + AE520FA28362C25430CFB454E730E74C /* Sentry */, ); - name = util; - path = util; + name = Pods; sourceTree = ""; }; - E7AB3A1599152F6A2D3DCD96D6290D04 /* Resources */ = { + E1DB576C5E47A972D934252EBFBBE271 /* broxus */ = { isa = PBXGroup; children = ( - 45613676B34FC0CE7FDF844DA5F6E623 /* PrivacyInfo.xcprivacy */, + 1209DE6702A201D2C2AC3227DFFCB994 /* ever_wallet_flutter_new */, ); - name = Resources; - path = Resources; + name = broxus; + path = broxus; sourceTree = ""; }; - E84C9DD5C170D4E6AC9DC16A8634FEC4 /* package_info_plus */ = { + E2012DB0B6ECE73BD6E5C589E34A50FB /* Documents */ = { isa = PBXGroup; children = ( - AE78A239E79E42D159AC159D40605FC2 /* ios */, + AFCB4E4E9B5E71114CC2B9F30FE40313 /* projects */, ); - name = package_info_plus; - path = package_info_plus; + name = Documents; + path = Documents; sourceTree = ""; }; - EA25147F646BDC781D9E31B5586F93A7 /* .. */ = { + E20F1647FC3E95718000CE4EC96D682A /* .. */ = { isa = PBXGroup; children = ( - C0FD3AC5040172A45C3DC4DBF2170894 /* .. */, + A813B7EB80A59644DE8AD76EF20BE6B6 /* .. */, ); name = ..; path = ..; sourceTree = ""; }; - EA490D43428250B02CF2C22D088688DB /* .. */ = { + E3E127FA49068599D4AAF0E2BE9F008A /* .. */ = { isa = PBXGroup; children = ( - A635F795CD1C9204D4422A488DA630BC /* .. */, + 330D933CEB28C78EBD1A456A55D208CF /* Documents */, ); name = ..; path = ..; sourceTree = ""; }; - EA7AC9A85AA83171371C48B2E12445B8 /* flutter_native_splash */ = { + E45C8DFA64CEB7B2CC42BF62E168D480 /* .. */ = { isa = PBXGroup; children = ( - 3E9A6D6B68F75CF4A18724D5D18FA996 /* ios */, + 82414D23BCEB9CEA29AB14A67B7E0BC2 /* .. */, ); - name = flutter_native_splash; - path = flutter_native_splash; + name = ..; + path = ..; sourceTree = ""; }; - EAE32DB8302AE068B19D82576315BC8B /* .symlinks */ = { + E45F7BB1B32CF99A8642AFD5508C4CB5 /* url_launcher_ios */ = { isa = PBXGroup; children = ( - 29ADC60E9A090255060AC308F2E1A9C4 /* plugins */, + 4D840DC817DFEA9BC7A3FB96C55C8DDA /* Sources */, ); - name = .symlinks; - path = .symlinks; + name = url_launcher_ios; + path = url_launcher_ios; sourceTree = ""; }; - EB469712739F0C15D8A2452DA7BC7AC8 /* .. */ = { + E4B63457CA4C486E3C3CF23AA079B240 /* .. */ = { isa = PBXGroup; children = ( - DB036F9464A2F6A0D86E080E7D8132A7 /* .. */, + C7365A7CBDA0BA0A2CDFF0653A6BCEF3 /* .. */, ); name = ..; path = ..; sourceTree = ""; }; - EB84402C4A7A4BCBA109A81EB27A5015 /* flutter_nekoton_bridge */ = { - isa = PBXGroup; - children = ( - B869FB62472E8B7A2F40A75DCCE2B357 /* .. */, - 204CADCEACAAB87C27C319EA61966DED /* Frameworks */, - BD3301DBF4E6F3B64F52801671B64C9D /* Pod */, - FEB870A013C533B204F6EF606EE24025 /* Support Files */, - ); - name = flutter_nekoton_bridge; - path = ../.symlinks/plugins/flutter_nekoton_bridge/ios; - sourceTree = ""; - }; - EC10FBB6F82ED02DF0AFB64A23CE8119 /* .. */ = { + E5154106BFD0AD60E6CD02A6AD1F0BD0 /* .. */ = { isa = PBXGroup; children = ( - F9318628C027BC571559DEB276E7B9A2 /* .. */, + 74F2482F35828423EC39D7CA6EAA8A6F /* .. */, ); name = ..; path = ..; sourceTree = ""; }; - ECFF07116957F81203DA86DFA1BE0435 /* plugins */ = { + E5AD2D6319A970FB3E48BF2BE0E0DF9B /* .symlinks */ = { isa = PBXGroup; children = ( - 1F9F3DC881C034B67D22A08865C793E0 /* connectivity_plus */, + B06DC88F103EEC36ABA929E6C01B4B43 /* plugins */, ); - name = plugins; - path = plugins; + name = .symlinks; + path = .symlinks; sourceTree = ""; }; - ED0F832C6F1B3E21979661E6117CE145 /* local_auth_darwin */ = { + E600D3B8C335754D9D204D39020B1931 /* .. */ = { isa = PBXGroup; children = ( - 3EAAF651C8D10A62E554DCB7A16416DF /* FLALocalAuthPlugin.m */, - 229207B0BCF93F9BE4844A97B8EADA13 /* messages.g.m */, - 54583B75B9F93710F3F3B46B3A4CA52F /* include */, + 465A325FA81BB7AE4B098971B6741C0E /* .. */, ); - name = local_auth_darwin; - path = local_auth_darwin; + name = ..; + path = "../../../../../../../../../.pub-cache/hosted/pub.dev/flutter_secure_storage-9.2.2/ios"; sourceTree = ""; }; - EDF51A130D20AF8CDDC6FC328E74F3E9 /* .symlinks */ = { + E6D2B7F7EA638141957C2A7A95698F16 /* .symlinks */ = { isa = PBXGroup; children = ( - 22B39A80DC00A0610C8AC2E12B000B8B /* plugins */, + 22232E47E12A57ED0B56D389A580D509 /* plugins */, ); name = .symlinks; path = .symlinks; sourceTree = ""; }; - EE429024F24081C5ED7EDFF00B2846AF /* .symlinks */ = { + E9B33C926DF5A89B0A32FDA025B276DC /* Documents */ = { isa = PBXGroup; children = ( - B082DDF64692C30497D87F62F9463B36 /* plugins */, + 754B4F7C303BFB050B3BB182AE59180E /* projects */, ); - name = .symlinks; - path = .symlinks; + name = Documents; + path = Documents; sourceTree = ""; }; - EE9A4805A1B07BD90D63C598AD3464BB /* ever_wallet_flutter_new */ = { + E9F9CC3C051E2A3ED9EFF30CD88A0E88 /* InAppBrowser */ = { isa = PBXGroup; children = ( - 1520608046DBCE6ADDB4D410CDEDF602 /* ios */, + F3AC465488CFBE96FA12C9E4156FB312 /* InAppBrowserDelegate.swift */, + 5EF045136117B2771000DF5537101A6F /* InAppBrowserManager.swift */, + 0FDDBCF20FC3DA317D3A5B5E5B73719A /* InAppBrowserNavigationController.swift */, + 5A077EFE50B468BC7B1023D2C4AD997E /* InAppBrowserOptions.swift */, + 2FB048EB9B80FF92C730A47691434788 /* InAppBrowserWebViewController.swift */, ); - name = ever_wallet_flutter_new; - path = ever_wallet_flutter_new; + name = InAppBrowser; + path = InAppBrowser; sourceTree = ""; }; - EEA349D9CA4714423144B8D0E96D75E4 /* .. */ = { + EA0CFA52FD5631D2A780C5CA371B44AB /* .. */ = { isa = PBXGroup; children = ( - 4A8FB80C423B8DF17BB06560FB8CF5BE /* .. */, + 065738ABFE86DD7E17FC5679776E7AF8 /* .. */, ); name = ..; path = ..; sourceTree = ""; }; - EED8290B09807EFA852CD1813ED4DC26 /* url_launcher_ios */ = { + EA7B39472143DBF8D24F44491ACE7C28 /* .. */ = { isa = PBXGroup; children = ( - A2E9A50E3766826BD357CE1FA87ADA17 /* Resources */, + 9CA24CC465E7D88ADE035EF6F6FA4F7F /* .. */, ); - name = url_launcher_ios; - path = url_launcher_ios; + name = ..; + path = ..; sourceTree = ""; }; - EEDF590DF56533973C2CD988EEBF2C63 /* projects */ = { + EAACCC5F7A134E3E97A7A212FB8E6D33 /* .. */ = { isa = PBXGroup; children = ( - E2666036B7A366A4097D4E3EBB0ADC67 /* ever_wallet_flutter_new */, + 49401958330BA18B4561C9B64C620691 /* .. */, ); - name = projects; - path = projects; + name = ..; + path = ..; sourceTree = ""; }; - EF0A54F66B1C10DB4449C9EDCC2CAE07 /* .. */ = { + EBABD90D6E9B2A21FC7A1CAF88929F75 /* .. */ = { isa = PBXGroup; children = ( - 560F4B60B6774DBC14584592F015A46E /* .. */, - 70F98EB2ED7C154C69F87452652B4409 /* Documents */, + 9244F3C9D81B18CC009EC453FC54EFFF /* .. */, ); name = ..; - path = ..; + path = "../../../../../../../../../.pub-cache/hosted/pub.dev/sentry_flutter-7.20.2/ios"; sourceTree = ""; }; - EF1BCE0821A0E04178F1E48128E9104E /* .symlinks */ = { + EC758CFD7E467EE4C3E51B8415439D69 /* ios */ = { isa = PBXGroup; children = ( - 65BD3D2A57C89A0BAB5EE866D0D081C4 /* plugins */, + 3862C0CE39074AC9BDB272BCD0A992D0 /* .symlinks */, ); - name = .symlinks; - path = .symlinks; + name = ios; + path = ios; sourceTree = ""; }; - EFB0E368FB57A1D48E2A7B65F72C8627 /* plugins */ = { + ECA5F13E7D706D11F6DAD83079C8F0A8 /* plugins */ = { isa = PBXGroup; children = ( - 8B3588AB1F7320B8126CE891FCED667D /* path_provider_foundation */, + FCAAF79FB2778F5E7F6169329932B191 /* flutter_secure_storage */, ); name = plugins; path = plugins; sourceTree = ""; }; - F1504975BE4519F0D5BF6D9BB2E11FEB /* .. */ = { + ECD62B4F9BC191412D46D184974BFC96 /* ever_wallet_flutter_new */ = { isa = PBXGroup; children = ( - 552710D55877C0AF6193D9D56C96C6DB /* .. */, + 6DAC3AACC7FC5EEAE3D95E5B6F437F96 /* ios */, ); - name = ..; - path = ..; + name = ever_wallet_flutter_new; + path = ever_wallet_flutter_new; sourceTree = ""; }; - F162EA1A1EB5331E9497A0C1ADCC9CC2 /* .. */ = { + ED1CF6D94B6052A12E11FC55AEC8A6E2 /* .. */ = { isa = PBXGroup; children = ( - 91718BCD618CB0EB3D964A1DE3B02704 /* .. */, + 64CF671086DAA81E8B4834E908DBF8DF /* .. */, ); name = ..; path = ..; sourceTree = ""; }; - F1687F7549D59AAFC19AF5EF56C131B7 /* projects */ = { + ED98872587C905FE7610E54EF0F6EA37 /* Sources */ = { isa = PBXGroup; children = ( - 8C3D0889EF100A6E8092EBEB718101AB /* ever_wallet_flutter_new */, + 799442719CAFA399302638A44A651793 /* url_launcher_ios */, ); - name = projects; - path = projects; + name = Sources; + path = Sources; sourceTree = ""; }; - F1D466E5C5C3FCA38B404BE62A368C92 /* projects */ = { + EF5AA122BA9B00211F4CB8249E960063 /* Support Files */ = { isa = PBXGroup; children = ( - FB3EED2435919037F6E7AC9CA243542E /* ever_wallet_flutter_new */, + 1FEC9B2165A31268AD21A6FDE5000E47 /* sentry_flutter.modulemap */, + DA12844A52F847283F7C5B1B0AE2EFDF /* sentry_flutter-dummy.m */, + 182428C3583489C33FCF4BF75215561A /* sentry_flutter-Info.plist */, + 11C40968328E2018287FAC6E61BE4B8F /* sentry_flutter-prefix.pch */, + 0B04FA279B07F968FEA7238CCE55189C /* sentry_flutter-umbrella.h */, + D604BE284D4FCCC28AE11F696FCA9D75 /* sentry_flutter.debug.xcconfig */, + 28C6A92040B7AE9155DE2648EB0D7296 /* sentry_flutter.release.xcconfig */, ); - name = projects; - path = projects; + name = "Support Files"; + path = "../../../../Pods/Target Support Files/sentry_flutter"; sourceTree = ""; }; - F3308E732E392E5E064F71136927EB68 /* .symlinks */ = { + EFA2A0442CD4F5F9AE165FDE66EA36A2 /* Pod */ = { isa = PBXGroup; children = ( - 4184EE107CB38A8B3D3FEEB0C01A8D65 /* plugins */, + 2F7E6319C06CF58444B55BFF82FE693C /* flutter_keyboard_visibility.podspec */, + 384E79FA840CE8F4CEDB1DE25781C94B /* LICENSE */, ); - name = .symlinks; - path = .symlinks; + name = Pod; sourceTree = ""; }; - F3409F6589AE966507177A6F541ADC92 /* Support Files */ = { + F08639E70318B6FC00098EBE08C1124F /* local_auth_darwin */ = { isa = PBXGroup; children = ( - 238A74F0ECBAAF92A731C6E80EB18C4C /* GoogleMLKit.debug.xcconfig */, - 52D3A45B276300DECC1173BE9A70A0A1 /* GoogleMLKit.release.xcconfig */, + D025A02EEBFB1A3AD50E0089646A29CF /* darwin */, ); - name = "Support Files"; - path = "../Target Support Files/GoogleMLKit"; + name = local_auth_darwin; + path = local_auth_darwin; sourceTree = ""; }; - F3FAE03F791D3FB68804C5C88334400B /* plugins */ = { + F1A8DE1AFDB4D0D8FF3D39C97FCD84B0 /* image_picker_ios */ = { isa = PBXGroup; children = ( - 12190247246F3C3BB224098A472C0A4A /* local_auth_darwin */, + E167B7652C5602C60BC1E17BDAE5B344 /* FLTImagePickerImageUtil.m */, + E61EFE537889E07B6DA8DB319EDD6503 /* FLTImagePickerMetaDataUtil.m */, + 17F0737683AB458FA39A0DF3DB75E0FA /* FLTImagePickerPhotoAssetUtil.m */, + 40A46BC81300CEBE4F557D47E588C7F8 /* FLTImagePickerPlugin.m */, + 1FA39D45CBD24AAC1A80A7911DD5D0E4 /* FLTPHPickerSaveImageToPathOperation.m */, + DED9BEE16168551A03D56EF51078154F /* messages.g.m */, + 2981CD9A7D587F3988F171D657380D6F /* include */, ); - name = plugins; - path = plugins; + name = image_picker_ios; + path = image_picker_ios; sourceTree = ""; }; - F505AE66898F6FA0A81E5FFDD847739F /* Pod */ = { + F251B83D30D91F9DDFF81D2EFBC9E168 /* ios */ = { isa = PBXGroup; children = ( - B7D69E90B081D8BDA584F725ADB82F6D /* image_picker_ios.podspec */, - C0139BE6201D69AA023560FFA46E773D /* ImagePickerPlugin.modulemap */, - 8B36BED62D36722B0023AEAE05390960 /* LICENSE */, + E45F7BB1B32CF99A8642AFD5508C4CB5 /* url_launcher_ios */, ); - name = Pod; + name = ios; + path = ios; + sourceTree = ""; + }; + F3409F6589AE966507177A6F541ADC92 /* Support Files */ = { + isa = PBXGroup; + children = ( + 238A74F0ECBAAF92A731C6E80EB18C4C /* GoogleMLKit.debug.xcconfig */, + 52D3A45B276300DECC1173BE9A70A0A1 /* GoogleMLKit.release.xcconfig */, + ); + name = "Support Files"; + path = "../Target Support Files/GoogleMLKit"; sourceTree = ""; }; - F56E22502908C3BE32AA8A428CFBC18C /* ever_wallet_flutter_new */ = { + F3AA0716D484864D7F21B3AA52494D29 /* ios */ = { isa = PBXGroup; children = ( - 453B83C52E143568459BAB829874D7DA /* ios */, + D15EB5C7B31434C75D90C22805420CA4 /* .symlinks */, ); - name = ever_wallet_flutter_new; - path = ever_wallet_flutter_new; + name = ios; + path = ios; sourceTree = ""; }; - F6073D6174CE2348B205D0DF82E11841 /* image_picker_ios */ = { + F3DB829111B67F5CA327227A61DA9F0C /* .. */ = { isa = PBXGroup; children = ( - C01BC85221CA2A9249BC23E64552E416 /* ios */, + DBC0E11516151049282517CA18AED0C0 /* .. */, ); - name = image_picker_ios; - path = image_picker_ios; + name = ..; + path = ..; sourceTree = ""; }; - F693C65AA91BA59D8063392FCB9C6D89 /* Pod */ = { + F413F93E0C39338512E2C24576A2FBB7 /* PluginScriptsJS */ = { + isa = PBXGroup; + children = ( + 2D62283B7381D5DE0A6CF1FF9E95E81D /* CallAsyncJavaScriptBelowIOS14WrapperJS.swift */, + 4F65D46F70D24038C4A35C7A47A79DAB /* ConsoleLogJS.swift */, + F4F2F4AC3B87F7672B35705CDCCB4686 /* EnableViewportScaleJS.swift */, + 4552809E6B3C3DABB1CAB59582D67B8D /* FindElementsAtPointJS.swift */, + FB392AD594041D414134E0A51014BFDF /* FindTextHighlightJS.swift */, + 76DF1E74961355D91ADBCD218AA47591 /* InterceptAjaxRequestJS.swift */, + 821470D1B6770146D8BBE717A950515A /* InterceptFetchRequestJS.swift */, + 25A4B4A7CB3DB7F03C50ABD164A35E23 /* JavaScriptBridgeJS.swift */, + 6C390E18D407C75134992C9623FB6D16 /* LastTouchedAnchorOrImageJS.swift */, + FE07DEE03B0ED4C45FDEB630488C8B62 /* OnLoadResourceJS.swift */, + 1C971C3735633EE7FDAEE71AADDBCAFF /* OnWindowBlurEventJS.swift */, + 86EC6DD73822E686A767E6331858E1B7 /* OnWindowFocusEventJS.swift */, + 452E7613985D693048389B9D08533845 /* OriginalViewPortMetaTagContentJS.swift */, + 2FA2500C68F5E432FC7A4423AEFC8B3D /* PluginScriptsUtil.swift */, + 65DF9762E599DE833A11517B62C9BA6D /* PrintJS.swift */, + FB23FDB6605E48398CC1A6C08C32BB22 /* PromisePolyfillJS.swift */, + 24CEE5AA14FFDCB36BD0D3163B43861C /* SupportZoomJS.swift */, + 46505DA302F7A14AE8349A3A258DB9E3 /* WebMessageChannelJS.swift */, + B9930922C1D6387FF165550732846EC0 /* WebMessageListenerJS.swift */, + 0E3E953DD36433BBB2B7A736009B7736 /* WindowIdJS.swift */, + ); + name = PluginScriptsJS; + path = PluginScriptsJS; + sourceTree = ""; + }; + F4B7E5701D6F287775ADB7292B83975B /* projects */ = { isa = PBXGroup; children = ( - B4638B91CF1CFB619E9A0308C8EBB430 /* Flutter.podspec */, + 97403DDA4DBE19692BBE29ECD2C14C76 /* broxus */, ); - name = Pod; + name = projects; + path = projects; sourceTree = ""; }; - F706D13C1DF49BD9A11F66BEA22EE94B /* .symlinks */ = { + F4CD1EAB66A7E6BF898D84663C84301F /* Documents */ = { isa = PBXGroup; children = ( - FD4B1413E7CA1F018519A36206B5EFBF /* plugins */, + BD01A4D5D31D12F7BD30A98DA4C01C77 /* projects */, ); - name = .symlinks; - path = .symlinks; + name = Documents; + path = Documents; sourceTree = ""; }; - F74C61CBE91BF99993D257F0CFF94526 /* ios */ = { + F538E966170D2AE17C8058CC63602327 /* ios */ = { isa = PBXGroup; children = ( - D407211E25419D5B1344F1738162631C /* Classes */, + 6D3D0D6DCF71C4EB18A89008D9400EC4 /* .symlinks */, ); name = ios; path = ios; sourceTree = ""; }; - F759AD81A6C764F0F553F05FB85FFD3F /* Sources */ = { + F5B64C0CC2B6C3E0FFA769E4C1258D7C /* Documents */ = { isa = PBXGroup; children = ( - A06FE16C2436A6186BE2AE4A5EE8DB4E /* integration_test */, + 44097D14C522ABC2567CD9F3A6786CFE /* projects */, ); - name = Sources; - path = Sources; + name = Documents; + path = Documents; sourceTree = ""; }; - F77728C691669D45E73FEF1479EF91B1 /* .. */ = { + F624BC1ABD2A6E1D96935E9E47A9DE41 /* projects */ = { isa = PBXGroup; children = ( - 82410EEC38599230920C982AABC96A99 /* .. */, + 4556064B13513E18D22E888A9B25A361 /* broxus */, ); - name = ..; - path = ..; + name = projects; + path = projects; sourceTree = ""; }; - F7832A787CD6FB8ACBFAA1321A6CAF3C /* projects */ = { + F693C65AA91BA59D8063392FCB9C6D89 /* Pod */ = { isa = PBXGroup; children = ( - CD5D0C906DE2958A2D1D9077D9B9692B /* ever_wallet_flutter_new */, + B4638B91CF1CFB619E9A0308C8EBB430 /* Flutter.podspec */, ); - name = projects; - path = projects; + name = Pod; sourceTree = ""; }; - F8FD4E9FAC9D5BE2A0EDF42AA371D9CB /* darwin */ = { + F727D1DB33B21E0067C4802704F80968 /* .. */ = { isa = PBXGroup; children = ( - A09C91ACC4DE60DA5136CFC5C116A4AD /* Classes */, - 9BB1DFD893F61E8C563CDB0A16879346 /* Resources */, + C23A844F50C846438C5356E6FB830D5E /* .. */, ); - name = darwin; - path = darwin; + name = ..; + path = ..; sourceTree = ""; }; - F90F7C17A9551B0C81496FB09B262EB7 /* Support Files */ = { + F749495FD549EE63D7B988846670824D /* Support Files */ = { isa = PBXGroup; children = ( - 276D002A8F389EF85B3EB668F80D06AF /* integration_test.modulemap */, - B8DEAD210B70F433C63E76D22273541C /* integration_test-dummy.m */, - 6913A4BB34E3494F48F15ED2F302E8C6 /* integration_test-Info.plist */, - 470088F212DCF2581243437741172920 /* integration_test-prefix.pch */, - F596F057CA1AE7F19DE99FC14F24C2D9 /* integration_test-umbrella.h */, - 237D5AEE9D0DF37297BCD85E1DDD01D6 /* integration_test.debug.xcconfig */, - C630DC976CFC529906571DA851643B86 /* integration_test.release.xcconfig */, + 2E0A38CDCA49B5DE050E954C88E63D68 /* flutter_keyboard_visibility.modulemap */, + DFFFF28C3D894A9BACC123EF9EDC9BC3 /* flutter_keyboard_visibility-dummy.m */, + 3C2765689C2118E081174235126160FC /* flutter_keyboard_visibility-Info.plist */, + F9DD14D1F0CC50FF760B336935910139 /* flutter_keyboard_visibility-prefix.pch */, + C9322E1168A609698B674CB3C81AE007 /* flutter_keyboard_visibility-umbrella.h */, + 3EE8F77B5ACD09C925921A77B88C174D /* flutter_keyboard_visibility.debug.xcconfig */, + A0E07105D46C98227F9CF101D83E460C /* flutter_keyboard_visibility.release.xcconfig */, ); name = "Support Files"; - path = "../../../../Pods/Target Support Files/integration_test"; + path = "../../../../Pods/Target Support Files/flutter_keyboard_visibility"; sourceTree = ""; }; - F9318628C027BC571559DEB276E7B9A2 /* .. */ = { + F86F628208FA0BA33CAD67262FA6491F /* .. */ = { isa = PBXGroup; children = ( - B309C0515869E9B36ECC71C9E006CA7D /* .. */, + 36AF352262F7AA85B7372C8B89B09A99 /* .. */, ); name = ..; path = ..; sourceTree = ""; }; + F919EE2457C1AE02A962F780E591B604 /* Documents */ = { + isa = PBXGroup; + children = ( + 077963A26D13058C64B11C2D6BAAC883 /* projects */, + ); + name = Documents; + path = Documents; + sourceTree = ""; + }; F945DD2BD5B58DA534EA0B8C6413ED3F /* Support Files */ = { isa = PBXGroup; children = ( @@ -9565,6 +9749,24 @@ path = "../Target Support Files/Sentry"; sourceTree = ""; }; + F945FCFBA4C27EC5248D2CAEF025687C /* Storyboards */ = { + isa = PBXGroup; + children = ( + 800D25E6937FB53826A08DC35B0DA086 /* WebView.storyboard */, + ); + name = Storyboards; + path = Storyboards; + sourceTree = ""; + }; + F967CCC0121443267CC08236DE932936 /* ios */ = { + isa = PBXGroup; + children = ( + 7C30EC4A53DFCBF6377AD94090812114 /* Classes */, + ); + name = ios; + path = ios; + sourceTree = ""; + }; F9E7FFBEEEC171A5CF8F3D8A6B62F5CA /* UserDefaults */ = { isa = PBXGroup; children = ( @@ -9574,31 +9776,40 @@ name = UserDefaults; sourceTree = ""; }; - FB3EED2435919037F6E7AC9CA243542E /* ever_wallet_flutter_new */ = { + FA0807B1EB2DAA24AEC917551876669D /* shared_preferences_foundation */ = { isa = PBXGroup; children = ( - 1E94E1535E84451CF551A82552A66993 /* ios */, + 58E1692FA4DBFE7F34FA6F713F9CF7A5 /* Resources */, ); - name = ever_wallet_flutter_new; - path = ever_wallet_flutter_new; + name = shared_preferences_foundation; + path = shared_preferences_foundation; sourceTree = ""; }; - FB55FCC080FBC31F6CF7E24F290114F4 /* .. */ = { + FA987942609B6772F3B308E95D3F6DFD /* projects */ = { isa = PBXGroup; children = ( - A13D97BE30238ED11C0A853D081A71E7 /* .. */, + 4F051C39CD481FB459AA162F631DF23F /* broxus */, ); - name = ..; - path = ..; + name = projects; + path = projects; sourceTree = ""; }; - FC40C170835A8327319C8A277C3B26E0 /* .. */ = { + FC95D5C6C3FE285E191F56AF5583A2FA /* .symlinks */ = { isa = PBXGroup; children = ( - 9AA191FD35B0A96F500D7F6AC6326837 /* .. */, + 0C259D2EABBD37DC1A925061656404F4 /* plugins */, ); - name = ..; - path = ..; + name = .symlinks; + path = .symlinks; + sourceTree = ""; + }; + FCAAF79FB2778F5E7F6169329932B191 /* flutter_secure_storage */ = { + isa = PBXGroup; + children = ( + 7ABA61E43AA191838565493DD009CE2E /* ios */, + ); + name = flutter_secure_storage; + path = flutter_secure_storage; sourceTree = ""; }; FCBAE0A0DE16FB7D354C25FEB6E3344A /* Pods-Runner */ = { @@ -9630,56 +9841,79 @@ path = "Target Support Files/Pods-Runner"; sourceTree = ""; }; - FD4B1413E7CA1F018519A36206B5EFBF /* plugins */ = { + FCED7ED1BBBF78092345058707CFB672 /* ios */ = { isa = PBXGroup; children = ( - 58B12E975DABBE71E39E20CA40EA01C9 /* path_provider_foundation */, + 3F5E6CEC184FB7FB520B0D47FA83653F /* Classes */, ); - name = plugins; - path = plugins; + name = ios; + path = ios; sourceTree = ""; }; - FE18BBF9F9D65564BCDFC03D402F182E /* .. */ = { + FD0199E1428432BFA28B6B0DA8FD7E11 /* .symlinks */ = { isa = PBXGroup; children = ( - 23DDBC40E01FE002A17009ED357AA9E2 /* .. */, + 5999EF5D9DDDA63A00C9C8093923C992 /* plugins */, + ); + name = .symlinks; + path = .symlinks; + sourceTree = ""; + }; + FE2FF92B795B47F1A1A623CD07ED2135 /* .. */ = { + isa = PBXGroup; + children = ( + 442FE7E9B548DCCB902D7080C92A8338 /* .. */, ); name = ..; path = ..; sourceTree = ""; }; - FE5D712407A2C87B32CFA52C446456FF /* ios */ = { + FE367A73211593E719AA5FF979469087 /* .. */ = { isa = PBXGroup; children = ( - 61268F7D180AEB8EA105B3C8EC144291 /* .symlinks */, + 246D79E448D672CB057D80DCD4010048 /* .. */, ); - name = ios; - path = ios; + name = ..; + path = "../../../../../../../../../.pub-cache/hosted/pub.dev/flutter_inappwebview-5.8.0/ios"; sourceTree = ""; }; - FEB870A013C533B204F6EF606EE24025 /* Support Files */ = { + FEAD1EF26ABF0C1CBC7995CD6A69BC35 /* Pod */ = { isa = PBXGroup; children = ( - 28A6B5BF6BC790B6C78100EFCD35AC47 /* flutter_nekoton_bridge.modulemap */, - 0F9830A64F46BE5F8F63DC2D219EA07C /* flutter_nekoton_bridge-dummy.m */, - 0404AA0E05AAA9B1A189481625A56F3E /* flutter_nekoton_bridge-Info.plist */, - BA2731342778DB8191617A33DD987D19 /* flutter_nekoton_bridge-prefix.pch */, - B59ADB8C2815B9E5E692852E8B4EBECE /* flutter_nekoton_bridge-umbrella.h */, - 6E50B0B1BAC52DB51E5638C5C23ECFAA /* flutter_nekoton_bridge-xcframeworks.sh */, - 1D2355FD138907962A151973A3FB89DA /* flutter_nekoton_bridge.debug.xcconfig */, - 869E5D3B5708F94FBC923E7B50C1DD07 /* flutter_nekoton_bridge.release.xcconfig */, + 7264D7569CC3D2B28F655CF348CDFCAB /* LICENSE */, + 77D7B9F87BB7EE7C3042365E2BC6569F /* share_plus.podspec */, ); - name = "Support Files"; - path = "../../../../Pods/Target Support Files/flutter_nekoton_bridge"; + name = Pod; sourceTree = ""; }; - FF014C62536AF637F4B730D714619909 /* Pod */ = { + FEC132E12C7A6E244D0824067A125DBB /* .symlinks */ = { isa = PBXGroup; children = ( - 28A56FC4668A33D87933B85EC8082F57 /* flutter_native_splash.podspec */, - CF97BC9B0ABA98699EC71A9E74A56A18 /* LICENSE */, + 51B745D43E76A8EFE722585F9593E8BA /* plugins */, ); - name = Pod; + name = .symlinks; + path = .symlinks; + sourceTree = ""; + }; + FF2755E8FEBAA7CA315951A294440CF2 /* broxus */ = { + isa = PBXGroup; + children = ( + 42DEE26154617F3568B4C41FAED9C614 /* ever_wallet_flutter_new */, + ); + name = broxus; + path = broxus; + sourceTree = ""; + }; + FFC4FE43A904EA87751F50B9866C67CF /* Classes */ = { + isa = PBXGroup; + children = ( + 85D9E65CB912A77F7601101C780C7D80 /* FlutterSecureStorage.swift */, + 78C5CE67517A32D94B574C0EF923EC4A /* FlutterSecureStoragePlugin.h */, + 1D160FBEBBB1D964CBAFE6B9C94554F5 /* FlutterSecureStoragePlugin.m */, + 612B9727B9129F63754F26C7CE5D80AB /* SwiftFlutterSecureStoragePlugin.swift */, + ); + name = Classes; + path = Classes; sourceTree = ""; }; /* End PBXGroup section */ @@ -10001,11 +10235,33 @@ ); runOnlyForDeploymentPostprocessing = 0; }; + 16BC0C33EE9A3DDA087D08C3DB3EDF33 /* Headers */ = { + isa = PBXHeadersBuildPhase; + buildActionMask = 2147483647; + files = ( + 52AA6D11A0925EDA8B478577C22040F7 /* GoogleUtilities-umbrella.h in Headers */, + 164D3B562F39898FE674962845536BA6 /* GULAppEnvironmentUtil.h in Headers */, + 4072E2EFD1C5F06379392F2A367D3E0A /* GULHeartbeatDateStorable.h in Headers */, + E2AA5C0FD3AC647B0517175D59068FA0 /* GULHeartbeatDateStorage.h in Headers */, + 4FCB6B9C2B29A4ED7EA5DAB17E4C29C6 /* GULHeartbeatDateStorageUserDefaults.h in Headers */, + CD06E51F38A7C6D7119AD823282504F0 /* GULKeychainStorage.h in Headers */, + 16DFF862ED095F4E8FFBD5265E544A35 /* GULKeychainUtils.h in Headers */, + 4F35D71C18C9657061A12AE2B99084ED /* GULLogger.h in Headers */, + CB71F51CD0876C37B2F551DE2F2C57C1 /* GULLoggerLevel.h in Headers */, + DE510D3F934D2E0315D885C12CDA997E /* GULNetworkInfo.h in Headers */, + 4587261CC27EEFA3E5436380C5634233 /* GULSecureCoding.h in Headers */, + A05CAE5A823A484E9762F615F99D77C4 /* GULURLSessionDataResponse.h in Headers */, + 4DF977EB8F96D73F14C2DD3F82C7222E /* GULUserDefaults.h in Headers */, + 08B342BA115CE499B868985387B1C82C /* IsAppEncrypted.h in Headers */, + 05B8E0E91330A0B7F7ED93BA95F9E244 /* NSURLSession+GULPromises.h in Headers */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; 17EF9116839242E83F0C75A477A25BE9 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( - E194C9ADE72768A5CD36C78E9F3AE0E4 /* FPPPackageInfoPlusPlugin.h in Headers */, + 4C21C7F342C74DE02A0CD2F2D9F73225 /* FPPPackageInfoPlusPlugin.h in Headers */, 08C442A4442BE9661DC1005E0D850B78 /* package_info_plus-umbrella.h in Headers */, ); runOnlyForDeploymentPostprocessing = 0; @@ -10014,10 +10270,10 @@ isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( - 635F92086260992F521316C19C74AF2B /* FLALocalAuthPlugin.h in Headers */, - 7DC8A119EDE9F4097A110934F0923538 /* FLALocalAuthPlugin_Test.h in Headers */, + 3BB6619F7D2355C3920E337F55FF1F61 /* FLALocalAuthPlugin.h in Headers */, + 143D3617F3695529F1EECED5906B4D8E /* FLALocalAuthPlugin_Test.h in Headers */, C3E2F2C1A0783C8FA593A04B94012657 /* local_auth_darwin-umbrella.h in Headers */, - 7810AB5B6738B5BE5C0F96F8793584C3 /* messages.g.h in Headers */, + CD48CBDEB1A6F4B1ACCCD1A3893CAA50 /* messages.g.h in Headers */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -10026,7 +10282,7 @@ buildActionMask = 2147483647; files = ( 28C46A322AE7B95EDE3763A33EAB3420 /* mobile_scanner-umbrella.h in Headers */, - B5D3997FF4E0611F8B112E21D141A98C /* MobileScannerPlugin.h in Headers */, + 3258AD34B7C54E6BAC29ADE70E643003 /* MobileScannerPlugin.h in Headers */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -10043,23 +10299,7 @@ buildActionMask = 2147483647; files = ( 1620383FD46ED9C9F3D4C1208283C35D /* sentry_flutter-umbrella.h in Headers */, - CF4DC0429531C93363D7D247E5FF4A59 /* SentryFlutterPlugin.h in Headers */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 5A7929FE68124615F686803666C890A9 /* Headers */ = { - isa = PBXHeadersBuildPhase; - buildActionMask = 2147483647; - files = ( - C2EB10762B3F38061DEEE21CA147DFE3 /* GoogleToolboxForMac-umbrella.h in Headers */, - 17AAD742E13C501ECB006A13E559DDCD /* GTMDebugSelectorValidation.h in Headers */, - BACAE47F3213F130F71B33127DEDA833 /* GTMDebugThreadValidation.h in Headers */, - DD7F1BA45BC1A7126F61EAEC820F7643 /* GTMDefines.h in Headers */, - 6CEEF6F3FEE2AA8546EB838CE7BA4094 /* GTMLogger.h in Headers */, - C311A3024D00C5015B1990EE6B480410 /* GTMMethodCheck.h in Headers */, - B711185337761B502F2A2410B3AA9A4A /* GTMNSData+zlib.h in Headers */, - B39170F33799500C92E43652C5353ACF /* GTMNSDictionary+URLArguments.h in Headers */, - 10D97694AD10103331768952538C3F09 /* GTMNSString+URLArguments.h in Headers */, + 6F56374B31A42EEA920650E2DCAAA875 /* SentryFlutterPlugin.h in Headers */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -10068,31 +10308,17 @@ buildActionMask = 2147483647; files = ( 9A38C3D3543DAC27EA7D4EBBC26D4D7B /* sqflite-umbrella.h in Headers */, - 349C0C88E237E5EF167556E6E5BA3F82 /* SqfliteCursor.h in Headers */, - CC9A6FFE464F969C926FFB0C1E5A19ED /* SqfliteDarwinDatabase.h in Headers */, - 439C66BD6212BC75705402F21E73D383 /* SqfliteDarwinDatabaseAdditions.h in Headers */, - B8E5D0C0BB732AA4235600986656BEB4 /* SqfliteDarwinDatabaseQueue.h in Headers */, - BF0AD7F532CCE6F573EBBA366A3CDB3E /* SqfliteDarwinDB.h in Headers */, - 8582947CAB5E2335BD2C1743169185D0 /* SqfliteDarwinImport.h in Headers */, - 29D055BB2732D76D4A244246A57DD730 /* SqfliteDarwinResultSet.h in Headers */, - A5977F2E25730A1006E33F826F512632 /* SqfliteDatabase.h in Headers */, - 042EFA8B4B8C4354D59ABE49F962817E /* SqfliteImport.h in Headers */, - 96776227763753EF23B0D316273CDC5C /* SqfliteOperation.h in Headers */, - 628550C39B977C267DC8D4912EC104D9 /* SqflitePlugin.h in Headers */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 5F4E7B7FAF6E614B9C8D838FA49E5A05 /* Headers */ = { - isa = PBXHeadersBuildPhase; - buildActionMask = 2147483647; - files = ( - 1B3FAA7FA7D55A8A7252C3213EC093E2 /* GoogleUtilitiesComponents-umbrella.h in Headers */, - 2E1704068E96FA0415A8EFE26ECA1579 /* GULCCComponent.h in Headers */, - F3FB29C0F82DCDF78B121311484AE6D4 /* GULCCComponentContainer.h in Headers */, - 45924977D4F16B8ADF5E20112D96E5DC /* GULCCComponentContainerInternal.h in Headers */, - 8335830EBFD9DAD555C6AFE5DE0C56B4 /* GULCCComponentType.h in Headers */, - 38547A6839EBC5AFE946036B3BE6D50A /* GULCCDependency.h in Headers */, - 198CFCF31A437736FDA25B861714760A /* GULCCLibrary.h in Headers */, + A0F43BD1D1BB44DF917BD87DB899C7A9 /* SqfliteCursor.h in Headers */, + 73E2D2CA141DD835BC4905EB36E52516 /* SqfliteDarwinDatabase.h in Headers */, + 788BE724FC2B29E124A4ECE3471C02DD /* SqfliteDarwinDatabaseAdditions.h in Headers */, + FC63743DF3F64AB4693F96C71543015B /* SqfliteDarwinDatabaseQueue.h in Headers */, + E21BF072F941C82458A01FEE48D3D2D0 /* SqfliteDarwinDB.h in Headers */, + D1C1E0F5BE8F8B5CA2556E2AB99BB947 /* SqfliteDarwinImport.h in Headers */, + F3AF5641716AA963446A8A3B1A736D34 /* SqfliteDarwinResultSet.h in Headers */, + 3BC3D41242176E1C0F21E77B60EC270F /* SqfliteDatabase.h in Headers */, + AC499C3391B7943F0B7F27BB4669F0C2 /* SqfliteImport.h in Headers */, + 9C9486162FADC559DC1AF003A3359D91 /* SqfliteOperation.h in Headers */, + 8530F678EE3F7C4A877D96E234B001DF /* SqflitePlugin.h in Headers */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -10100,10 +10326,10 @@ isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( - 9F94E5AC9A11AF7E2D784B79EE079213 /* FLTIntegrationTestRunner.h in Headers */, + 6D26D59E2355B79A8DAACA95AEFADF14 /* FLTIntegrationTestRunner.h in Headers */, 6CD465170B8FE695FBC493107D84E94B /* integration_test-umbrella.h in Headers */, - C6C40775B468F79F65EEDAC0BA09101C /* IntegrationTestIosTest.h in Headers */, - 35329107A2043BEBAC0A758095A9CB1C /* IntegrationTestPlugin.h in Headers */, + BF22B4C001D4FCCDCCF96C5DB66C7C75 /* IntegrationTestIosTest.h in Headers */, + 99AEF99D60D681F64F4B9980FAA54004 /* IntegrationTestPlugin.h in Headers */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -10112,29 +10338,36 @@ buildActionMask = 2147483647; files = ( D3988FB1FCF9756D942C5D62146AE2A7 /* connectivity_plus-umbrella.h in Headers */, - FD2CA480A04BECA716314F89FC5E160C /* ConnectivityPlusPlugin.h in Headers */, + 27F81D237CAF2BD977E9D4E70D45E56F /* ConnectivityPlusPlugin.h in Headers */, ); runOnlyForDeploymentPostprocessing = 0; }; - 6F6CD3DE9D56E9B14F93E15EB7060235 /* Headers */ = { + 6D170A9D89838C728CD89F24EA9F680E /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( - 092AEE0E9C45C0CD15F3A837D8842F0E /* GoogleUtilities-umbrella.h in Headers */, - 3F0FD841E83370C2A8F2D21B6390AFCD /* GULAppEnvironmentUtil.h in Headers */, - 3BB49E3997E724860EB21754076B6942 /* GULHeartbeatDateStorable.h in Headers */, - 2A6DEBE20E54743D280D71618CF9986C /* GULHeartbeatDateStorage.h in Headers */, - AD1EF5D25A4AD80D209F94920FD507C7 /* GULHeartbeatDateStorageUserDefaults.h in Headers */, - EDF5F2A0C458EB5166C3C2A311794B08 /* GULKeychainStorage.h in Headers */, - 5F12ABEBC0FB134DDC3C25EC9A02DBEB /* GULKeychainUtils.h in Headers */, - 7BA2E1BDD11E7A0013C90864F866D47B /* GULLogger.h in Headers */, - 6C40715415C72FBFD8F31B7DCA057EE0 /* GULLoggerLevel.h in Headers */, - BE3E897AC97AFD11C3656F553B2553CE /* GULNetworkInfo.h in Headers */, - 8DF08D73D7E8C132CE2FA10A594872D3 /* GULSecureCoding.h in Headers */, - E9AD61F3A3D9C1CD6216EFE20C8A5F59 /* GULURLSessionDataResponse.h in Headers */, - C4F6EFE4AF2429F79A2D4F7B6CFA251C /* GULUserDefaults.h in Headers */, - F84C0189048163E24ECC1F9F433AE49A /* IsAppEncrypted.h in Headers */, - B9CDE7FCA922DAF738E67F8CC7C8C812 /* NSURLSession+GULPromises.h in Headers */, + 1459892FE645F44A85650BBFCF608250 /* FBLPromise.h in Headers */, + C5DAF1DB884D039D8A917D3570F00AEF /* FBLPromise+All.h in Headers */, + 898826C9EFCB06BEC55FB237FE72DC26 /* FBLPromise+Always.h in Headers */, + 2272B4B5A4A1BED005F4B8160CC90EC7 /* FBLPromise+Any.h in Headers */, + 0DB7FCC0BAED245733DDF501F0DD1948 /* FBLPromise+Async.h in Headers */, + A1033E208418270756BC66F081761CDB /* FBLPromise+Await.h in Headers */, + 63639DF707F2AED50A7986D08096D67B /* FBLPromise+Catch.h in Headers */, + DF83936C82AB05A1E884EE1AF83C61A4 /* FBLPromise+Delay.h in Headers */, + F83E11C7FABFF532CBB3013789D08FB3 /* FBLPromise+Do.h in Headers */, + ECF0D0633A5DF868D965AF72C695CB01 /* FBLPromise+Race.h in Headers */, + 267E364C7FA774A43F01CE437FA1E21B /* FBLPromise+Recover.h in Headers */, + 10907BB98864D907E266873DC51B4DBD /* FBLPromise+Reduce.h in Headers */, + 20828860F08A3E400B097025E9758ACE /* FBLPromise+Retry.h in Headers */, + F53EF43BCAFFF914FCA79800EFBC17FC /* FBLPromise+Testing.h in Headers */, + 0F61221A8E5FD7A76AEEBB96A349F077 /* FBLPromise+Then.h in Headers */, + 99AFF5029511C3D9CAD803C561F811BB /* FBLPromise+Timeout.h in Headers */, + 01D86DA5C05B5EF4F07ADB95D80419B5 /* FBLPromise+Validate.h in Headers */, + D2D103B06BC032BA9B1900BB6DF55524 /* FBLPromise+Wrap.h in Headers */, + 86BE63D9AC7051BEF7030CDD6E1C9CF3 /* FBLPromiseError.h in Headers */, + 009C27249E34BDB134976D41E28EA351 /* FBLPromisePrivate.h in Headers */, + 89AE26911A14AA1D7C9B2A3AE7D6B653 /* FBLPromises.h in Headers */, + 902D7F46C3C602B3EDE9F6A93054C52A /* PromisesObjC-umbrella.h in Headers */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -10166,45 +10399,49 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 901FAB650AFDF6BA1EB390D701A576CF /* Headers */ = { + 9CBA996F4884AF4BCF64657751265ABC /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( - BF6DE82830DF970F3B59398642D4E4E4 /* nanopb-umbrella.h in Headers */, - 672645E55F7730350B3C5A3B594E89EE /* pb.h in Headers */, - EBAF65777381472A48F662717202B3A6 /* pb_common.h in Headers */, - B1C35AC778202BB2CCAA9EA28DAD6B26 /* pb_decode.h in Headers */, - A4FEA68DF6D8BDB5DA58D409547475FA /* pb_encode.h in Headers */, + B7EF9C8C36066FA5BA19D4245B373762 /* AppTrackingTransparencyPermissionStrategy.h in Headers */, + BCFF8A217C2C5BAAD219A77AF10C1147 /* AssistantPermissionStrategy.h in Headers */, + B661E020744EAFA1D6182F5AE06F990B /* AudioVideoPermissionStrategy.h in Headers */, + 7DA839241DB157E64E6A1D47A9C4855E /* BackgroundRefreshStrategy.h in Headers */, + B7F7A55A292D8176EC9C22305E7C5EA3 /* BluetoothPermissionStrategy.h in Headers */, + 6E5930CD8548EAA35C079EDE6A18FFD4 /* Codec.h in Headers */, + 19ADBA0F62019968D223E40EC94BED6F /* ContactPermissionStrategy.h in Headers */, + 65992529678FE7A9E25BAC72E255F899 /* CriticalAlertsPermissionStrategy.h in Headers */, + 6ADCF5598DBBCC933FC875B6B568D9D3 /* EventPermissionStrategy.h in Headers */, + DC2F1DEDA85F466080C9E727AEB00888 /* LocationPermissionStrategy.h in Headers */, + C9E25C5FBC5F2732F098804A10AE7CC5 /* MediaLibraryPermissionStrategy.h in Headers */, + 71B788C7F9438862D82038E71872C888 /* NotificationPermissionStrategy.h in Headers */, + 67B9DC302604E4BCC89C9A63F7BB4794 /* permission_handler_apple-umbrella.h in Headers */, + D3E43A08E382513D8100FFA81560C052 /* PermissionHandlerEnums.h in Headers */, + 24DADBAC70A6C62B872621AB7286D120 /* PermissionHandlerPlugin.h in Headers */, + 8C1E26E48337015BB1598C9E968965A9 /* PermissionManager.h in Headers */, + 130E6243905C09072874F1D0B0DDD04E /* PermissionStrategy.h in Headers */, + 3ADB4086C1954102181BCF115EAF37A1 /* PhonePermissionStrategy.h in Headers */, + E5A1D40C137FFF17A3E746B6636AE637 /* PhotoPermissionStrategy.h in Headers */, + 4B4B83DCBF2A85639C45F2AF33BF945B /* SensorPermissionStrategy.h in Headers */, + 4B35C16FE570965D44416ADF88FFE55B /* SpeechPermissionStrategy.h in Headers */, + DBEDA962F9728E93B20DF704DA35FED8 /* StoragePermissionStrategy.h in Headers */, + F6B71E5493720F4ECE5E39939B126280 /* UnknownPermissionStrategy.h in Headers */, ); runOnlyForDeploymentPostprocessing = 0; }; - 9CBA996F4884AF4BCF64657751265ABC /* Headers */ = { + A8C47548AD1F0DB8A1468F04EE98CB66 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( - 75524BD393FEA942A61BD8F8051964CB /* AppTrackingTransparencyPermissionStrategy.h in Headers */, - 778103E7340240A90AAFF5846C6215E7 /* AssistantPermissionStrategy.h in Headers */, - 71EC944083FA184418FAA938BE5415D0 /* AudioVideoPermissionStrategy.h in Headers */, - F58255F5F13159987BFACE1A0CF62BF2 /* BackgroundRefreshStrategy.h in Headers */, - C1B5CE96EC662CF944D6FB930CC09919 /* BluetoothPermissionStrategy.h in Headers */, - 537F104E4175DF02D2CCE04F2BF020D4 /* Codec.h in Headers */, - 12FB3F31CB01A07420B730250AFF6837 /* ContactPermissionStrategy.h in Headers */, - 4600DF38A2580644D02FD2DEBC2247FF /* CriticalAlertsPermissionStrategy.h in Headers */, - 657C696F613930F969C02A8A4B03E07A /* EventPermissionStrategy.h in Headers */, - 5ABE1D58D35638DC10D288C1DAF818DE /* LocationPermissionStrategy.h in Headers */, - 69F5C69CC1EDDB8DE9B91ED4589A728E /* MediaLibraryPermissionStrategy.h in Headers */, - 0D1A3B5DE3A5A0512C94225F4EB82244 /* NotificationPermissionStrategy.h in Headers */, - 67B9DC302604E4BCC89C9A63F7BB4794 /* permission_handler_apple-umbrella.h in Headers */, - 5BE6148A8BBBDD8410E664F32181FB87 /* PermissionHandlerEnums.h in Headers */, - E2E73767427C62E5989A4176D437E281 /* PermissionHandlerPlugin.h in Headers */, - 52002BF299992FC4273549D37067F250 /* PermissionManager.h in Headers */, - 4EC46CD37A5BE290DA8A48166EA99644 /* PermissionStrategy.h in Headers */, - 9CD5B4482DE44A1C9DED0AAE53CD546E /* PhonePermissionStrategy.h in Headers */, - 166DA8C76C967AB79A1E9FD0B02B6972 /* PhotoPermissionStrategy.h in Headers */, - 33C9F643BF3B45170611450B5C625874 /* SensorPermissionStrategy.h in Headers */, - AE3CC133CE65EF79FB405B149615F22E /* SpeechPermissionStrategy.h in Headers */, - 82B7159FF1D1E075182CAEE72A911B43 /* StoragePermissionStrategy.h in Headers */, - 99A32A4472C19E7304FEE1332417D4EA /* UnknownPermissionStrategy.h in Headers */, + 9372C4AF11B7B37110A4969E7B2EDF48 /* GoogleToolboxForMac-umbrella.h in Headers */, + 0B13ACD9473D2D29DB7B6CD3817DD476 /* GTMDebugSelectorValidation.h in Headers */, + B26758F1ED5BB0195A61DFD82DF2B1B0 /* GTMDebugThreadValidation.h in Headers */, + 0B3A97862DD36F6CB266AE6EF1921203 /* GTMDefines.h in Headers */, + 92E67054AE8BEDCFED7A2B32228063E8 /* GTMLogger.h in Headers */, + E2318C762082E3D2E74957371B4A6C2C /* GTMMethodCheck.h in Headers */, + A1560E05333CA50FABE9C709BEA75C32 /* GTMNSData+zlib.h in Headers */, + CCE4FC5A5918B07F40734012A33F020A /* GTMNSDictionary+URLArguments.h in Headers */, + 230CD140D07DE91B89D29381CD037711 /* GTMNSString+URLArguments.h in Headers */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -10212,14 +10449,14 @@ isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( - BA90B65E56B2F1DAEF5447A97A7CC2A5 /* FLTImagePickerImageUtil.h in Headers */, - A7B65AA8C84902B4160A5FC1725DCE96 /* FLTImagePickerMetaDataUtil.h in Headers */, - DEB9AC37F9CDD3F16C39224BF21A9994 /* FLTImagePickerPhotoAssetUtil.h in Headers */, - A08BBF08CF83D538F87B8DBECD09C092 /* FLTImagePickerPlugin.h in Headers */, - 38745E24545C31CB6DC19769A56E20CE /* FLTImagePickerPlugin_Test.h in Headers */, - 069D2A9FCA49920F550F0942618061AD /* FLTPHPickerSaveImageToPathOperation.h in Headers */, - 06969C56F854275BFC813B7DABA5F2B8 /* image_picker_ios-umbrella.h in Headers */, - E344770F6046CD824F3B3468B2CFDAC7 /* messages.g.h in Headers */, + BF522B3EF3C560B3F04B722CA5482E20 /* FLTImagePickerImageUtil.h in Headers */, + 0D79C957B7B1D609C3904D95544278B6 /* FLTImagePickerMetaDataUtil.h in Headers */, + 7166D9A726526C5CAE4F8A5447FF2C05 /* FLTImagePickerPhotoAssetUtil.h in Headers */, + F8A8575A02941089BDBA27B4B1FC63B8 /* FLTImagePickerPlugin.h in Headers */, + 5B94364CBA3BDF451AFEDD7DB0D24B53 /* FLTImagePickerPlugin_Test.h in Headers */, + B2B6A6FBCA21CEE775B4058D650EFB3A /* FLTPHPickerSaveImageToPathOperation.h in Headers */, + ED07A74137CA958717BCEE1479E66639 /* image_picker_ios-umbrella.h in Headers */, + FE99F638399E7D9B1E8120BEF8925E89 /* messages.g.h in Headers */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -10228,7 +10465,7 @@ buildActionMask = 2147483647; files = ( 444E98A8A1E0DA8B7087A5C9DB6629DB /* flutter_secure_storage-umbrella.h in Headers */, - 31CDCF868E6007E92DAB2077875FB431 /* FlutterSecureStoragePlugin.h in Headers */, + 2B49CDD9A57DEFF4076C4F69041EADBF /* FlutterSecureStoragePlugin.h in Headers */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -10237,7 +10474,7 @@ buildActionMask = 2147483647; files = ( B624EFAFDE9FD198E00338212075AE2B /* flutter_native_splash-umbrella.h in Headers */, - 6E485ADE77CD48533F0B843BEBFD4FCC /* FlutterNativeSplashPlugin.h in Headers */, + 4D085FA6F2A49F0E353618EE6BA4FA14 /* FlutterNativeSplashPlugin.h in Headers */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -10253,11 +10490,23 @@ isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( - A4EEE44932E024C764D0405AC7296786 /* FPPSharePlusPlugin.h in Headers */, + F7EB29CF691334F082DC591E8EAA7A0E /* FPPSharePlusPlugin.h in Headers */, 009FDF73B897D347701AA8E9C2994370 /* share_plus-umbrella.h in Headers */, ); runOnlyForDeploymentPostprocessing = 0; }; + D60D830A948DA9A4BDBB3762B4BFD609 /* Headers */ = { + isa = PBXHeadersBuildPhase; + buildActionMask = 2147483647; + files = ( + B01F196F9BCBBA031BF1AF1F84A9E941 /* nanopb-umbrella.h in Headers */, + 19B2DFCC05F3F8DF4B7F43210B2EE0FD /* pb.h in Headers */, + A863CEAC63ADCB0509F42B0EEEEDDC8D /* pb_common.h in Headers */, + 60B48F69DA6E06BAC8FF729B5831CD48 /* pb_decode.h in Headers */, + 95EF77F59E171C8A3706EED58309A740 /* pb_encode.h in Headers */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; DCED080F03A4DF2A16FE90F5725BD4F6 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; @@ -10321,7 +10570,7 @@ buildActionMask = 2147483647; files = ( 5EA9774656407BF8F69B902F8749A4FF /* flutter_keyboard_visibility-umbrella.h in Headers */, - 6519946B2FB7D62756622EBC94782494 /* FlutterKeyboardVisibilityPlugin.h in Headers */, + 79B56AF4D8998F61999D67AD59B9BFD5 /* FlutterKeyboardVisibilityPlugin.h in Headers */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -10330,7 +10579,7 @@ buildActionMask = 2147483647; files = ( 83A84DE2AEB311447BB9AC52AAFDD5CB /* flutter_nekoton_bridge-umbrella.h in Headers */, - 09BF135F7B79382F8D86BCB65D78004D /* frb.h in Headers */, + C5B33858A02C75678C401BBB65732451 /* frb.h in Headers */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -10339,7 +10588,7 @@ buildActionMask = 2147483647; files = ( E903B97A915462A6849DFF7DD5CED3AA /* flutter_email_sender-umbrella.h in Headers */, - 1C925DCDAEE83354F774E3D83B8E8E1A /* FlutterEmailSenderPlugin.h in Headers */, + E754A43901B62DBC6003E258D1B60D99 /* FlutterEmailSenderPlugin.h in Headers */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -10348,36 +10597,21 @@ buildActionMask = 2147483647; files = ( 84B2A78C77D6C68DFB3339926117CE9A /* flutter_inappwebview-umbrella.h in Headers */, - FB9020C1A6A642069AF267850F0ABCFA /* InAppWebViewFlutterPlugin.h in Headers */, + C0294A55752135A69DD6461C9BAB4D58 /* InAppWebViewFlutterPlugin.h in Headers */, ); runOnlyForDeploymentPostprocessing = 0; }; - F58D2CF88DB96170E577B08F82F62179 /* Headers */ = { + E601E918983108B262BA1813A6BA7D7F /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( - 6AEFDE4660CA28F458805E9326E655C5 /* FBLPromise.h in Headers */, - 20AE4E8E020857E53BC4AEABE5E9A2FC /* FBLPromise+All.h in Headers */, - 04934A4CA9BE6CE313C82400C5C94384 /* FBLPromise+Always.h in Headers */, - 57DCB40EAC2C73850A5ADD32226DFE19 /* FBLPromise+Any.h in Headers */, - A170762B3CA2A3CEF51606609181F9F7 /* FBLPromise+Async.h in Headers */, - 36325F022B0B0E8F9ECE2E492AB5E523 /* FBLPromise+Await.h in Headers */, - 60C4698A28A4675BEAA6008928162E7E /* FBLPromise+Catch.h in Headers */, - 879BA66D7616506FDB252675A9A3478E /* FBLPromise+Delay.h in Headers */, - CCC16AA3247742D8514307C7D2B8F95B /* FBLPromise+Do.h in Headers */, - 5B8321A956B1DBE3A536C6D9223E8B5B /* FBLPromise+Race.h in Headers */, - 8CB26B54F4815DA1A13977BF0A3AC5FD /* FBLPromise+Recover.h in Headers */, - 7BEC3E3C4EBDA958B695D2F5B2EE2ADC /* FBLPromise+Reduce.h in Headers */, - 48663821FCA7F7EF145D2F618AFC3F6A /* FBLPromise+Retry.h in Headers */, - FD93D1258B09D72DC713F0E44C3751BD /* FBLPromise+Testing.h in Headers */, - 3B1CFD7A4B64E6EFEC48FC05527890FD /* FBLPromise+Then.h in Headers */, - BD34AE25404AE1449ABB3E4E5F515FF7 /* FBLPromise+Timeout.h in Headers */, - 00640BA206374DD6AC2A2A1AEAAF5EBE /* FBLPromise+Validate.h in Headers */, - 70E5859B740BFCE6AC56E2D41CFD855E /* FBLPromise+Wrap.h in Headers */, - CF5E12302EF4B5327694CAA3CB330EFA /* FBLPromiseError.h in Headers */, - 9B1C668288068B059D0758153FEF66EA /* FBLPromisePrivate.h in Headers */, - 46C5261107FECFA0CCB397511D8A5E6B /* FBLPromises.h in Headers */, - A16CA90D3A9DDE0F80E8F6EF8128FB6D /* PromisesObjC-umbrella.h in Headers */, + 8BB8218EA82B7759C325D926F0099A7C /* GoogleUtilitiesComponents-umbrella.h in Headers */, + 6EF0B0153681BDA51264B114AE5DB72E /* GULCCComponent.h in Headers */, + FDB6496D1122AA8CFF8733001C5FD6A6 /* GULCCComponentContainer.h in Headers */, + C0B96EB0E315570583F82BEE4CA650BD /* GULCCComponentContainerInternal.h in Headers */, + 606358EDD4D83F7AC3F9CE07F884959E /* GULCCComponentType.h in Headers */, + 4ADDB3A336E50A1A53A5FC0EADA5B7BC /* GULCCDependency.h in Headers */, + 959824CDEC6DDD0120A3D59217B3FDFE /* GULCCLibrary.h in Headers */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -10394,11 +10628,11 @@ /* Begin PBXNativeTarget section */ 07C64B0E06ED7C1903D446F9BBDDF5C9 /* package_info_plus-package_info_plus_privacy */ = { isa = PBXNativeTarget; - buildConfigurationList = F8B8EFE071FE3D8C0AC35BA431FFC5D9 /* Build configuration list for PBXNativeTarget "package_info_plus-package_info_plus_privacy" */; + buildConfigurationList = 0FE10B143C1C646F5A62957ECEAD45DB /* Build configuration list for PBXNativeTarget "package_info_plus-package_info_plus_privacy" */; buildPhases = ( - D1DDC81CE7F3A36E661BBE98B7C103C1 /* Sources */, - 6EC0DCEFE8C378518B38207F1C608167 /* Frameworks */, - 0122A9A572934BED9C676165F762EEA2 /* Resources */, + 0C1A6F42E3EF3FA254D74C639DEF6269 /* Sources */, + 456EA39029ABC8AF4C3441814F19B4BE /* Frameworks */, + 0BB3D46A85BB5628FECC1DD4CE9248B0 /* Resources */, ); buildRules = ( ); @@ -10421,8 +10655,8 @@ buildRules = ( ); dependencies = ( - 3ED8804BF9C0F19D0797FEAC90F5E42A /* PBXTargetDependency */, - 9F1F751A03BC05E1699D43871454CCCE /* PBXTargetDependency */, + B09B38EE8D196A71ED054A732F88A861 /* PBXTargetDependency */, + 5CCC7D3B0DBB808633FD3CD54082CAB6 /* PBXTargetDependency */, ); name = flutter_secure_storage; productName = flutter_secure_storage; @@ -10431,11 +10665,11 @@ }; 18C1C89B0915365FEE8FAEB868A0B528 /* share_plus-share_plus_privacy */ = { isa = PBXNativeTarget; - buildConfigurationList = 2E94C0B564FC693526B6468490E61240 /* Build configuration list for PBXNativeTarget "share_plus-share_plus_privacy" */; + buildConfigurationList = CBB602D68E3BEFCCA66D084C7661393D /* Build configuration list for PBXNativeTarget "share_plus-share_plus_privacy" */; buildPhases = ( - D904C39944000EE8A64D893F5DCD6B67 /* Sources */, - 053436CC3FEF9DF7CA3F909B89106313 /* Frameworks */, - A3CE4722526081E8C369608087DA9A3D /* Resources */, + 9B6CA8E7F4A76C7FB8DD2F846DCD94F1 /* Sources */, + A5AFA478E12CF079D50D3B4F758765AA /* Frameworks */, + 42C5B8023AECE8D436AFB0FBF065971D /* Resources */, ); buildRules = ( ); @@ -10448,11 +10682,11 @@ }; 1BFBEDBF7E03729D43C96530EE190825 /* PromisesObjC-FBLPromises_Privacy */ = { isa = PBXNativeTarget; - buildConfigurationList = E2561F01D1D5BFDB0BEE543038C3FBB9 /* Build configuration list for PBXNativeTarget "PromisesObjC-FBLPromises_Privacy" */; + buildConfigurationList = 8194C4407C54263B25C3262E793DFDC6 /* Build configuration list for PBXNativeTarget "PromisesObjC-FBLPromises_Privacy" */; buildPhases = ( - D8E12906C0F0D3D3D5083ECF6C14526D /* Sources */, - ED28FF350C1B5B579A7DC3445AED2964 /* Frameworks */, - 507DFAA82A75C9FBDC9210406A0DA9D8 /* Resources */, + D22B15CFA120D5B7215A62B25DC9A4B5 /* Sources */, + 1CD0DF10A5C70EBAE2BE7EFAEEC97DA7 /* Frameworks */, + 560FF0437E09D2021CE1D072ED6D79B1 /* Resources */, ); buildRules = ( ); @@ -10475,8 +10709,8 @@ buildRules = ( ); dependencies = ( - 849680F96107003475AC58B1878D6266 /* PBXTargetDependency */, - CCB3DB0D04012288F7DD8003B59AAE81 /* PBXTargetDependency */, + 14B76BAC87093BEFB2D8649781F1EEB3 /* PBXTargetDependency */, + 627F123D213D793A1387E1AEE99E0E7C /* PBXTargetDependency */, ); name = flutter_inappwebview; productName = flutter_inappwebview; @@ -10485,17 +10719,17 @@ }; 2BBF7206D7FAC92C82A042A99C4A98F8 /* PromisesObjC */ = { isa = PBXNativeTarget; - buildConfigurationList = E6DBC50216F215312F0B735931F158DA /* Build configuration list for PBXNativeTarget "PromisesObjC" */; + buildConfigurationList = F0994E4E1B0096F90B6F74D409CDA88C /* Build configuration list for PBXNativeTarget "PromisesObjC" */; buildPhases = ( - F58D2CF88DB96170E577B08F82F62179 /* Headers */, - 5C375F0C79B70D1479D1B52E249AAE80 /* Sources */, - 58EB5A9DF5DE66BDAE1EC6A22276C23A /* Frameworks */, - 2188D034C806062E9611330A1BA790A6 /* Resources */, + 6D170A9D89838C728CD89F24EA9F680E /* Headers */, + C8297A0E779322A6ECBF30706CD49056 /* Sources */, + 01EE2D1149309F95D94BDD5B2F6927A0 /* Frameworks */, + DFE57595C52BA822B897E4AE6CF1D811 /* Resources */, ); buildRules = ( ); dependencies = ( - B01CAFE5562A65EA051E8326ABCEB44C /* PBXTargetDependency */, + C5D33B485E32C9754EA65271D984A4B8 /* PBXTargetDependency */, ); name = PromisesObjC; productName = FBLPromises; @@ -10532,8 +10766,8 @@ buildRules = ( ); dependencies = ( - B8C06B81D2119F6C7F15F087F077BFC6 /* PBXTargetDependency */, - 381E969801262BDAF8542FB0EE4050CA /* PBXTargetDependency */, + 48B37A779C683379F6FA701ED7C9BFE6 /* PBXTargetDependency */, + 7324EDD8D63E8E8691A8C5900C9EAC30 /* PBXTargetDependency */, ); name = flutter_native_splash; productName = flutter_native_splash; @@ -10542,11 +10776,11 @@ }; 372F11AACD7D15808C1D95D42113A50C /* sqflite-sqflite_darwin_privacy */ = { isa = PBXNativeTarget; - buildConfigurationList = 95AD165CF1426BAE3BBCE2D654F9B07B /* Build configuration list for PBXNativeTarget "sqflite-sqflite_darwin_privacy" */; + buildConfigurationList = CACFA22A51975851F2AAF593B973BDAF /* Build configuration list for PBXNativeTarget "sqflite-sqflite_darwin_privacy" */; buildPhases = ( - 7BE3107ACE1C4E63CA7471C2DF57EDAC /* Sources */, - CDD0F7CD625837E10E5E9912091381B6 /* Frameworks */, - FF072B5FA3754C57666C50A47115521F /* Resources */, + F2BE0C7001FBCEF024CCFD22540C54B4 /* Sources */, + 12DC921751FD9F840A32503A2D801EC8 /* Frameworks */, + AAB46631C9CD3E854988888DF84CE1A8 /* Resources */, ); buildRules = ( ); @@ -10569,8 +10803,8 @@ buildRules = ( ); dependencies = ( - 8159EDC2A8234EF4DF59772963BBFBFF /* PBXTargetDependency */, - 05F2B495AF77578AC5E421328D77254C /* PBXTargetDependency */, + 0E2F0DF640BE25CF18592BC0C4453B97 /* PBXTargetDependency */, + 4A3E4E9F8D35CF73B8E240D173ECAF2D /* PBXTargetDependency */, ); name = share_plus; productName = share_plus; @@ -10579,11 +10813,11 @@ }; 43BE97C40504244259CF3C1D21E7EDB5 /* url_launcher_ios-url_launcher_ios_privacy */ = { isa = PBXNativeTarget; - buildConfigurationList = B5FD906CB626E9C5988E51E5C12828FE /* Build configuration list for PBXNativeTarget "url_launcher_ios-url_launcher_ios_privacy" */; + buildConfigurationList = 3EDAC6FA1E42D30291D7A899F4689EF6 /* Build configuration list for PBXNativeTarget "url_launcher_ios-url_launcher_ios_privacy" */; buildPhases = ( - CFDC1C5A1358AEC582D5375B3EEF47A9 /* Sources */, - EDB88F3EE02EEBDD2DAA7A905BDAC821 /* Frameworks */, - 271E2AC3ACA42B82F87BA3CB3336CA0A /* Resources */, + FABA19A1A7C9F64772B47800CB9BCD6C /* Sources */, + 45C24311EA0D82701B2C937FC14D9253 /* Frameworks */, + 15D95A2B1E4CDDA4AEC3B0450D7FB262 /* Resources */, ); buildRules = ( ); @@ -10596,11 +10830,11 @@ }; 4A9CF14C8C6709FC3D3736F0F06E7DD9 /* local_auth_darwin-local_auth_darwin_privacy */ = { isa = PBXNativeTarget; - buildConfigurationList = FAD029E5B1F2DDB9EBE9570733C3D484 /* Build configuration list for PBXNativeTarget "local_auth_darwin-local_auth_darwin_privacy" */; + buildConfigurationList = 0C6A8F8D7E240487B5FCD57B60A0C888 /* Build configuration list for PBXNativeTarget "local_auth_darwin-local_auth_darwin_privacy" */; buildPhases = ( - 039296097E67F449D2F8107F46DDC585 /* Sources */, - A38EBD5DBF36CA2D37DBAC92E35CCF0A /* Frameworks */, - 561F3E697E0F29C75EB408D09CEDF057 /* Resources */, + 0248BA8D7894E078BF4BF47EBC42D47D /* Sources */, + 48F884B79502C733EB46AD55801E8ABA /* Frameworks */, + 332A20821FD710009C70A94A3CE8C23C /* Resources */, ); buildRules = ( ); @@ -10613,11 +10847,11 @@ }; 517E8BED8B0E6D6FD078BD19B0A13893 /* permission_handler_apple-permission_handler_apple_privacy */ = { isa = PBXNativeTarget; - buildConfigurationList = AE6E65BF7B705E5D0006AD2DFD25396A /* Build configuration list for PBXNativeTarget "permission_handler_apple-permission_handler_apple_privacy" */; + buildConfigurationList = 826DE497086A3D3DBF68C70BA56941CC /* Build configuration list for PBXNativeTarget "permission_handler_apple-permission_handler_apple_privacy" */; buildPhases = ( - E614B51773B14631A8D628A1B3F750E0 /* Sources */, - 08CAA7FC1C560A0ABA741FB851578FDA /* Frameworks */, - 3E56B9D362C384EC205E6352E2DAFE3E /* Resources */, + 1BB4882F91EA247B07DE3A50A3447FBF /* Sources */, + 3482F5ADB2B68BE8662458157D98076D /* Frameworks */, + 60CC0AD6A84E78F8242323348BCD31EC /* Resources */, ); buildRules = ( ); @@ -10640,8 +10874,8 @@ buildRules = ( ); dependencies = ( - F0C2BD2D6CBEC148CDBF594D5F789B2E /* PBXTargetDependency */, - 5DCC00B33F7D0382934C465FDDDAA46B /* PBXTargetDependency */, + AD93C4C2C75A999E02C8404405778A78 /* PBXTargetDependency */, + B5206CC51A0DFEECE326CEC476304A02 /* PBXTargetDependency */, ); name = package_info_plus; productName = package_info_plus; @@ -10650,11 +10884,11 @@ }; 55522A91938FF505CFEBEAD2DD85AE2D /* nanopb-nanopb_Privacy */ = { isa = PBXNativeTarget; - buildConfigurationList = F39A9C84DA9285DA90BC57F10C6D2BF5 /* Build configuration list for PBXNativeTarget "nanopb-nanopb_Privacy" */; + buildConfigurationList = 9BAB62618D4A00E1C4F017991C0CF38E /* Build configuration list for PBXNativeTarget "nanopb-nanopb_Privacy" */; buildPhases = ( - AF5AE89F7EB0BA0ED2F4CC9EF59026C2 /* Sources */, - 64C5C1693D05EE62BCDF07ECB0E29D71 /* Frameworks */, - 599BD5224F39B44DFB469E43A43C202A /* Resources */, + 8F13810E1BF84AFC4036CE7E41ED69CB /* Sources */, + BF9E186A3A944DEC9CD197608A81B15C /* Frameworks */, + EA36D075263009B48118CA6FE1CFDC08 /* Resources */, ); buildRules = ( ); @@ -10677,8 +10911,8 @@ buildRules = ( ); dependencies = ( - 48CA97FA4FA4673C95CA10612D161F9D /* PBXTargetDependency */, - 3CC2F1CD431C83342A0E2D4ECE1BBE61 /* PBXTargetDependency */, + 766CDEE1E089BB5232443ECF50041211 /* PBXTargetDependency */, + 0C9BFD909C1FEE159F07043F73299D76 /* PBXTargetDependency */, ); name = path_provider_foundation; productName = path_provider_foundation; @@ -10697,10 +10931,10 @@ buildRules = ( ); dependencies = ( - CB94AF4968C28568884E6F54828B9394 /* PBXTargetDependency */, - 29835A7A47A4B52B299553D2D550ED4F /* PBXTargetDependency */, - 8505BF9C9538AB77F6AFECDEBFFD055F /* PBXTargetDependency */, - 96B7F2EDC9D538169153CF228AF3B02F /* PBXTargetDependency */, + 55CD62A2F0AC52378635C1357F994F87 /* PBXTargetDependency */, + DD97D80B7218B5C9466D285A63983438 /* PBXTargetDependency */, + 5EEE91DEC5ABF6FF5B6331C5BA8BE73A /* PBXTargetDependency */, + BCDF50201ADCE45634E2F97DA26E7E98 /* PBXTargetDependency */, ); name = GoogleDataTransport; productName = GoogleDataTransport; @@ -10709,11 +10943,11 @@ }; 5FF1A58DEEC5DB749FCD6C120B97CC82 /* GoogleUtilities-GoogleUtilities_Privacy */ = { isa = PBXNativeTarget; - buildConfigurationList = 565887956F0E4C63F36B01272A6DD0C5 /* Build configuration list for PBXNativeTarget "GoogleUtilities-GoogleUtilities_Privacy" */; + buildConfigurationList = 754427976E166B97A1CDC4FF04029A07 /* Build configuration list for PBXNativeTarget "GoogleUtilities-GoogleUtilities_Privacy" */; buildPhases = ( - 7B417452F7BBE563CB966C3EE3D74006 /* Sources */, - 55DC509AB22DB1FD22C523D5DF629B67 /* Frameworks */, - 48F2D8854101607FA7DB8ACEAA778103 /* Resources */, + 5FB0D513B790B05596DA694243FF521C /* Sources */, + 6348B91843D2D60CD8A7FE9BF4FE806E /* Frameworks */, + 2A8183F9DA3B63F4363249AF7CC4C861 /* Resources */, ); buildRules = ( ); @@ -10736,8 +10970,8 @@ buildRules = ( ); dependencies = ( - CC30B82BF03A5A37C2DE4E52B2460B09 /* PBXTargetDependency */, - 7C9274491CD3E54F987F0D2F71282645 /* PBXTargetDependency */, + 19AA589117CB572AD8892E1EFFBC8576 /* PBXTargetDependency */, + 968E78C1D3564891A3E1701B27EBB03F /* PBXTargetDependency */, ); name = flutter_email_sender; productName = flutter_email_sender; @@ -10756,8 +10990,8 @@ buildRules = ( ); dependencies = ( - D05CE60B9D57A0CDD0360C34501B452F /* PBXTargetDependency */, - AE3BF5A94AD8915A33E175AFD46F2616 /* PBXTargetDependency */, + FBFCF5473C90911F978122EEE699071B /* PBXTargetDependency */, + 38D6D840730E62DC1D7F53F0E118BA43 /* PBXTargetDependency */, ); name = image_picker_ios; productName = image_picker_ios; @@ -10776,40 +11010,40 @@ buildRules = ( ); dependencies = ( - E3554AB932F1ED713DD0DFF1F1234E20 /* PBXTargetDependency */, - 5DFF086D578C1E2A2724261575EFF511 /* PBXTargetDependency */, - B19D2D749AD36FBD34A41DB109D2E65C /* PBXTargetDependency */, - FA84672301181161BD823493A867ECB0 /* PBXTargetDependency */, - 5F86571D14B6998451306C61BF8AEB38 /* PBXTargetDependency */, - EBA9B6A97DCA0B23391080C8635254B5 /* PBXTargetDependency */, - DC05E4DE9D6A4BBA6E494B36F273B888 /* PBXTargetDependency */, - FA0908B85B1373E1EFB66D8F38F590EA /* PBXTargetDependency */, - 900156C58460564F92A6BD32288D3E37 /* PBXTargetDependency */, - 0DE996879C4043C383F2468F6E8B5980 /* PBXTargetDependency */, - 7B29D759E1BAAE2D81A4527259DBA19D /* PBXTargetDependency */, - C87C5BB14A394D8FB33D72D82F20D287 /* PBXTargetDependency */, - FF9D52703A7AEB72D31ACC7FA111D203 /* PBXTargetDependency */, - 709F3C63E935039700E2041B0427FD6E /* PBXTargetDependency */, - E775E5EF5B0E37A302039E02D0565E28 /* PBXTargetDependency */, - 0BA3F56100CF7E89AC7EB25230E7E379 /* PBXTargetDependency */, - 4554D91714FC5FB512BAEC0195CC9D3E /* PBXTargetDependency */, - 90147EFC1DBCE25D0A22D15D1D9E7C2E /* PBXTargetDependency */, - 44A52C2560D44D978F45B90152BD9A3C /* PBXTargetDependency */, - E38E63C2EE009DDB8677D5259FEF3647 /* PBXTargetDependency */, - 442E33D821B05563EE970B3BF448FA9F /* PBXTargetDependency */, - E765EE21FADA10374F26FEA00CA9CB3B /* PBXTargetDependency */, - 94399221FFD0CD212CB85EE9DB69EEFE /* PBXTargetDependency */, - 2571B1453B8672E480BCD7AD43066FE9 /* PBXTargetDependency */, - BA13F1DB49C81A26A0FE84A5C1D88C50 /* PBXTargetDependency */, - D9B5AC9E4E52B2696886751075EE456E /* PBXTargetDependency */, - C6EAA9D83C51851CCB77C63019E39872 /* PBXTargetDependency */, - 50C4E928BBFC0CE4317E2A761696A6BC /* PBXTargetDependency */, - 72A49CF961AAA39FA9378119571F6F13 /* PBXTargetDependency */, - D880D813650944C358C24A3758036999 /* PBXTargetDependency */, - BDF3583DA9CD75DB9D80A959862CC57E /* PBXTargetDependency */, - 3E8A1B4F5BEA8AF0C81F22C65AD3D1D0 /* PBXTargetDependency */, - 32FBC40B4E6435A2B5982329D1201EF7 /* PBXTargetDependency */, - 153168D6D3D441C6A1EC87E6298794BA /* PBXTargetDependency */, + C5C35F0A4540E5C7F924DDEB4FA7E966 /* PBXTargetDependency */, + BF5E1038D745EC1C589E29AE3E3CAFBB /* PBXTargetDependency */, + D1F670E97383C060910730372E78265B /* PBXTargetDependency */, + F283B80DEE183C34ED413CE30CAD5FD3 /* PBXTargetDependency */, + E7DB68AEA985A4CC88A02BD3520902B1 /* PBXTargetDependency */, + D28A0F423084E9E9F434416650BC2F34 /* PBXTargetDependency */, + 31FD0DAEAD18355AD9FDB914AC84662D /* PBXTargetDependency */, + 5EE04BF9967F8C24A6C493034F05E7D5 /* PBXTargetDependency */, + B441D9053D8E7103BA067991761FA88D /* PBXTargetDependency */, + E5F4636D4A401EA0B0B1DD196DAB7568 /* PBXTargetDependency */, + 706E17BA3B24F2DB88F672F03CA1A46A /* PBXTargetDependency */, + 9C689FB8DB8D8BB3C461C125C37F0A97 /* PBXTargetDependency */, + 6D5EBDDD1C93C3D9DAF10129EAB15FB1 /* PBXTargetDependency */, + FD5A2D151E574BE92D0ADFA2AB23E7F3 /* PBXTargetDependency */, + 480969C8F64DAD8C979FCD63FEDF748D /* PBXTargetDependency */, + 7C3FDC62F0845C3111EFB80374B74481 /* PBXTargetDependency */, + 7D3251C3FA18A9EE1F804AA698F06461 /* PBXTargetDependency */, + 9EF58CE70C273068CFDDA38BC096EBC2 /* PBXTargetDependency */, + 74C85D6489F889753D9D5F9694816107 /* PBXTargetDependency */, + D794D6D8CA0F1F16267BC642A057C56D /* PBXTargetDependency */, + 8CA3B9611CA36EF9AC9D8FEBAF857A9B /* PBXTargetDependency */, + 2B63282C820DA00CD49F1393D0855FA9 /* PBXTargetDependency */, + 8E59358F4C77B16A240F2394DC9B6CEF /* PBXTargetDependency */, + 572CCC0FD120654FF755DC4B9291AFEB /* PBXTargetDependency */, + AAFD5FA60340BD8C0026646CE1D842B8 /* PBXTargetDependency */, + D0475A91BA174C9FE2253FA120414930 /* PBXTargetDependency */, + FA31167B771CEC81983CC70BED828D4F /* PBXTargetDependency */, + 89C779FFF99B7981D82C97DD54B51B75 /* PBXTargetDependency */, + 8681F2AFBA63BA04EBD7D50A6236EFC0 /* PBXTargetDependency */, + CCD724E2AE9E83FA77DF723B895116B5 /* PBXTargetDependency */, + 48C41B17BF0D107FEE52F652D8E95F9C /* PBXTargetDependency */, + 21EF996035FDA70E98B6A45EE7705575 /* PBXTargetDependency */, + E255B94B0C91EF036590D8FABCEBABE0 /* PBXTargetDependency */, + BB1A10B5153707CA6413B71607CC7C43 /* PBXTargetDependency */, ); name = "Pods-Runner"; productName = Pods_Runner; @@ -10828,8 +11062,8 @@ buildRules = ( ); dependencies = ( - 3425FA337066B2E7CB3DFFE49F8DBAC8 /* PBXTargetDependency */, - EDF28CE9F75726F67F62EB815901C1D9 /* PBXTargetDependency */, + FB53C34EFAAECA606B7E310D6D3AE14B /* PBXTargetDependency */, + 0F967499BA34513540143B94C24F8806 /* PBXTargetDependency */, ); name = sqflite; productName = sqflite; @@ -10838,18 +11072,18 @@ }; 8D7F5D5DD528D21A72DC87ADA5B12E2D /* GoogleUtilities */ = { isa = PBXNativeTarget; - buildConfigurationList = 1D405E71AF00EDF3B4CAEBAD1ABCAD46 /* Build configuration list for PBXNativeTarget "GoogleUtilities" */; + buildConfigurationList = E4E058A62005E013DE9DADB16A30FD1A /* Build configuration list for PBXNativeTarget "GoogleUtilities" */; buildPhases = ( - 6F6CD3DE9D56E9B14F93E15EB7060235 /* Headers */, - BA3B452E5923264141032B53016EB177 /* Sources */, - 67A8A060CD9D9F0D627C3C671D991ED6 /* Frameworks */, - F939C894834F289DD2B8BE3D12CE2540 /* Resources */, + 16BC0C33EE9A3DDA087D08C3DB3EDF33 /* Headers */, + 98471504CD1C88480451339A7E331E8E /* Sources */, + 08D469DB1025D25D064EA798307E30B9 /* Frameworks */, + 59AC718002D43EDD90AAA0D8BE5F60C0 /* Resources */, ); buildRules = ( ); dependencies = ( - 3AB35409A7860A98A93EEE9F3BC3658F /* PBXTargetDependency */, - 188607FF284563CDD6AAC493AFBA484B /* PBXTargetDependency */, + 3C4DF863D4C4217E2349D1570F476BF4 /* PBXTargetDependency */, + 2398DE9A42DCA1779117390F15FF6E2C /* PBXTargetDependency */, ); name = GoogleUtilities; productName = GoogleUtilities; @@ -10868,7 +11102,7 @@ buildRules = ( ); dependencies = ( - 967522F803935A83B985C8299B27DCA2 /* PBXTargetDependency */, + 4B759B818F81F90EC39A8D24AC0ADD36 /* PBXTargetDependency */, ); name = Sentry; productName = Sentry; @@ -10877,11 +11111,11 @@ }; 97C36B3C576D3765DAAE4EA7AC1E9ADC /* Sentry-Sentry */ = { isa = PBXNativeTarget; - buildConfigurationList = 8398AC9DBBFD05129D6B6D8CCE69ED21 /* Build configuration list for PBXNativeTarget "Sentry-Sentry" */; + buildConfigurationList = B125941ADFC4528BBAEF1BD6671E1553 /* Build configuration list for PBXNativeTarget "Sentry-Sentry" */; buildPhases = ( - 85FE4F9AF42743CD8428ACC4ABFBCCBD /* Sources */, - 4D8C1EA16A96768A62C0F2AC571FB02C /* Frameworks */, - 00B8D2E2BE28C0A8D53434CD06BF5F90 /* Resources */, + 8FCE12DC8F4418109C7C5DE9C7768ED2 /* Sources */, + 62F72B00F15D895D9011FB5658ADB3ED /* Frameworks */, + 6625D6D62D9EB50B7E8387CE144BC43E /* Resources */, ); buildRules = ( ); @@ -10904,8 +11138,8 @@ buildRules = ( ); dependencies = ( - A730676990E69B336AB8E65EAD6BFF44 /* PBXTargetDependency */, - 8550CCBB631DB7321F2CCD048FE2E6C2 /* PBXTargetDependency */, + EECE19B712466F5A4BCB3B0923C8D73C /* PBXTargetDependency */, + B9A84A6B433CAF520DC132063F1B07D6 /* PBXTargetDependency */, ); name = sentry_flutter; productName = sentry_flutter; @@ -10914,11 +11148,11 @@ }; A450BF39E3E5256209A256E278D71BFD /* image_picker_ios-image_picker_ios_privacy */ = { isa = PBXNativeTarget; - buildConfigurationList = 0D1913ED4D8C2CA1E64385A43FF78C61 /* Build configuration list for PBXNativeTarget "image_picker_ios-image_picker_ios_privacy" */; + buildConfigurationList = 36938D7CC2A8FE60AA71416301BB85E5 /* Build configuration list for PBXNativeTarget "image_picker_ios-image_picker_ios_privacy" */; buildPhases = ( - 9B4344F17CACD5AAAC9EF6E817DE7BCD /* Sources */, - 216F266823B6D2FD93FD33251D379A2F /* Frameworks */, - 46903006090BE8F08EE8753E86C72EA0 /* Resources */, + A12113C3A838A79EB9038F0F8201F5B9 /* Sources */, + D16FD2ACACD08C718690CC1D225CB1EA /* Frameworks */, + AE12598A53E120F479BDD13CFF7FAC7A /* Resources */, ); buildRules = ( ); @@ -10941,8 +11175,8 @@ buildRules = ( ); dependencies = ( - D3870D777C0ADD80A592E586E682DC4F /* PBXTargetDependency */, - 5EC5B1D108DB58FEC5B8F0B23CFD1330 /* PBXTargetDependency */, + E85118B267592E1A428C4AC65F0C7DFB /* PBXTargetDependency */, + 2C573AFB262FDA064E167921FAD689A4 /* PBXTargetDependency */, ); name = permission_handler_apple; productName = permission_handler_apple; @@ -10951,17 +11185,17 @@ }; A64F5725956770327D080E1EB31878EE /* GoogleUtilitiesComponents */ = { isa = PBXNativeTarget; - buildConfigurationList = 450AD186DC47E175EADC83925F547F01 /* Build configuration list for PBXNativeTarget "GoogleUtilitiesComponents" */; + buildConfigurationList = 8B1645C1A73D35D7B25080DC0566A3D4 /* Build configuration list for PBXNativeTarget "GoogleUtilitiesComponents" */; buildPhases = ( - 5F4E7B7FAF6E614B9C8D838FA49E5A05 /* Headers */, - EB579F9B4BA039A630FC9D8509BFEA89 /* Sources */, - 3D9190786EBF20B758D608E40B379CC7 /* Frameworks */, - 63F71C0D3BBD24D651BD71D1999E8F21 /* Resources */, + E601E918983108B262BA1813A6BA7D7F /* Headers */, + FF3A46655263F831C85A65B07B13C6D5 /* Sources */, + 00F00AE2B4555189C424AC25D11A9392 /* Frameworks */, + 29D4D791B837E47B8137FC2BBE755776 /* Resources */, ); buildRules = ( ); dependencies = ( - 0785E6B3ADC3274335D718F58B917FD0 /* PBXTargetDependency */, + B20596A6DB4012B56D9AFE3D280B28B4 /* PBXTargetDependency */, ); name = GoogleUtilitiesComponents; productName = GoogleUtilitiesComponents; @@ -10999,8 +11233,8 @@ buildRules = ( ); dependencies = ( - 6FCC2152E6275B06719092EF88BEE1ED /* PBXTargetDependency */, - 7D1405114B63F91F4A67B5351005E9D5 /* PBXTargetDependency */, + EBDB7282FE2738838DD0546221EE1B0F /* PBXTargetDependency */, + 9A0582B5C37F651DEFC49993A1E421AB /* PBXTargetDependency */, ); name = shared_preferences_foundation; productName = shared_preferences_foundation; @@ -11019,7 +11253,7 @@ buildRules = ( ); dependencies = ( - DDD1EB1FC2CB9BF1469AA4B530B99E21 /* PBXTargetDependency */, + 8C8E1F12642416DA1A2B5B48318DE7C0 /* PBXTargetDependency */, ); name = integration_test; productName = integration_test; @@ -11038,7 +11272,7 @@ buildRules = ( ); dependencies = ( - 9A3BAFF7611E3AF548B94DB55072D0FC /* PBXTargetDependency */, + 48A766467D51F3A30F3EC001C5D972E7 /* PBXTargetDependency */, ); name = flutter_keyboard_visibility; productName = flutter_keyboard_visibility; @@ -11047,11 +11281,11 @@ }; B6AF8B7CEAF6321719ABBC7E770624DA /* shared_preferences_foundation-shared_preferences_foundation_privacy */ = { isa = PBXNativeTarget; - buildConfigurationList = 2E50BCEDB9F2A9DEEE43560F513911BE /* Build configuration list for PBXNativeTarget "shared_preferences_foundation-shared_preferences_foundation_privacy" */; + buildConfigurationList = 2BE6341E108B42FC017A98F1AFB8F175 /* Build configuration list for PBXNativeTarget "shared_preferences_foundation-shared_preferences_foundation_privacy" */; buildPhases = ( - 1722996D94A8CB1492853E4372CE877D /* Sources */, - 7F61B3DC992EE6C2F1C3619B22B7CFA5 /* Frameworks */, - 6EEB45A8D65BCA435116549A086A2304 /* Resources */, + 8C9559C578A3971C27E75E67D2285E4E /* Sources */, + FF7BB23CC9E66110AA81C04783A6E6C9 /* Frameworks */, + 7484592DDA8222084F167FCBB79AEBAB /* Resources */, ); buildRules = ( ); @@ -11064,11 +11298,11 @@ }; BA5B0F40AD74C7512B1E4FD79F8F202F /* flutter_secure_storage-flutter_secure_storage */ = { isa = PBXNativeTarget; - buildConfigurationList = 2AAA923173C7FD6FBE860C118944ED18 /* Build configuration list for PBXNativeTarget "flutter_secure_storage-flutter_secure_storage" */; + buildConfigurationList = CDB13BC757789836C7E209AF7F178682 /* Build configuration list for PBXNativeTarget "flutter_secure_storage-flutter_secure_storage" */; buildPhases = ( - C334C85146357BCB61DB4C3FA32416BA /* Sources */, - 2E565AABDCD484DA9D80A612C493F06E /* Frameworks */, - 7847F80A7F6E7C2AFC5D6577AED2EBF6 /* Resources */, + CF714EDBA170167501994B1F9BA39C52 /* Sources */, + B898B2D8ED08CFD950E03D99FF28AB16 /* Frameworks */, + 7172376080E50630EB0C7AFF32CAA782 /* Resources */, ); buildRules = ( ); @@ -11091,8 +11325,8 @@ buildRules = ( ); dependencies = ( - A868694855BBCCE36038066CDDFAAFD5 /* PBXTargetDependency */, - E9F3B44F694E6E7A28E9A407B686D4B7 /* PBXTargetDependency */, + 5AC84ACE7AA2526823A2BFFBE788852F /* PBXTargetDependency */, + 2ADA78D78381265B1DBCFF34388DB2A1 /* PBXTargetDependency */, ); name = mobile_scanner; productName = mobile_scanner; @@ -11101,11 +11335,11 @@ }; CACE6618E7996464E38687E13F67D945 /* path_provider_foundation-path_provider_foundation_privacy */ = { isa = PBXNativeTarget; - buildConfigurationList = E281896E11068FC630E99C234B809262 /* Build configuration list for PBXNativeTarget "path_provider_foundation-path_provider_foundation_privacy" */; + buildConfigurationList = 5CA9E53020D2C2522E0ACDCBBF37EA03 /* Build configuration list for PBXNativeTarget "path_provider_foundation-path_provider_foundation_privacy" */; buildPhases = ( - EA31038957C8B369E6AADC88C25E4D4D /* Sources */, - 404C18F7BB75E7FB454777CF2FB62AD4 /* Frameworks */, - 0AE01664CAB712F626AF1FD4AC0CFEA1 /* Resources */, + 07C70733AA4AD7EE6F46AB5A8EE53ACA /* Sources */, + 225D1C5BA0707722835C1DE52747F407 /* Frameworks */, + C74C7E30ED6EC8813FDC3965959E1FAE /* Resources */, ); buildRules = ( ); @@ -11118,17 +11352,17 @@ }; D2B5E7DCCBBFB32341D857D01211A1A3 /* nanopb */ = { isa = PBXNativeTarget; - buildConfigurationList = CAAF5FF5CD7373E2A7C5C9B236C3049E /* Build configuration list for PBXNativeTarget "nanopb" */; + buildConfigurationList = 19E8A72DBFAE7E7805F642253E4597D7 /* Build configuration list for PBXNativeTarget "nanopb" */; buildPhases = ( - 901FAB650AFDF6BA1EB390D701A576CF /* Headers */, - E270C88B0E98A25F9F0F85D9E332B438 /* Sources */, - 38405B154AC8144D94D7B400F180D404 /* Frameworks */, - F357C2ED6813523A8254197AC295AE11 /* Resources */, + D60D830A948DA9A4BDBB3762B4BFD609 /* Headers */, + 541F77939BE6124721C3FFDEDF44F786 /* Sources */, + 590B9EA952A3D22B0ACD2995D8DFB6B9 /* Frameworks */, + 5C4D0B759511AC21F7834CD13162D8BB /* Resources */, ); buildRules = ( ); dependencies = ( - 9DA8C3D1064755315A55FB3D3C140641 /* PBXTargetDependency */, + 7DFDF5BF12A1C771E8FBB753AD207B55 /* PBXTargetDependency */, ); name = nanopb; productName = nanopb; @@ -11137,12 +11371,12 @@ }; D47C581D39D227080F83B16A22A56664 /* GoogleToolboxForMac */ = { isa = PBXNativeTarget; - buildConfigurationList = 833F2D4CEA183F1C34D45105057F1353 /* Build configuration list for PBXNativeTarget "GoogleToolboxForMac" */; + buildConfigurationList = 4F897FA15E1E0C8AE32D800620227BCD /* Build configuration list for PBXNativeTarget "GoogleToolboxForMac" */; buildPhases = ( - 5A7929FE68124615F686803666C890A9 /* Headers */, - 0046AC4CAAB46996302021D74AC8D979 /* Sources */, - 0F3BD4DEEE3299534C7E41DF8DDA1E7F /* Frameworks */, - 325C8906C2F3B6F79B45FA9E4157D147 /* Resources */, + A8C47548AD1F0DB8A1468F04EE98CB66 /* Headers */, + C9B30535D66BD5B42D6FB650B440FE9A /* Sources */, + 86798CE0477E5EF8EA7DCC2ED6F0B0E3 /* Frameworks */, + 87F11E5B35F0D25A20A20224BA7AD81E /* Resources */, ); buildRules = ( ); @@ -11183,8 +11417,8 @@ buildRules = ( ); dependencies = ( - E7D7FB794F2C05CBFE9A5A1E5726FB7B /* PBXTargetDependency */, - 258F453FD80BF517158E310EDE9725C0 /* PBXTargetDependency */, + CFED887BF35AEDC366467AE3735D8E35 /* PBXTargetDependency */, + A4DA6EBE44CE845DF3C50079919301AD /* PBXTargetDependency */, ); name = local_auth_darwin; productName = local_auth_darwin; @@ -11193,11 +11427,11 @@ }; DD0D41A9315A48004E57F4F0E54095F1 /* GoogleDataTransport-GoogleDataTransport_Privacy */ = { isa = PBXNativeTarget; - buildConfigurationList = 7C686A2BA0D91C9A33A8F902FE72D582 /* Build configuration list for PBXNativeTarget "GoogleDataTransport-GoogleDataTransport_Privacy" */; + buildConfigurationList = 6D9175178100A89829A1288035D56C4C /* Build configuration list for PBXNativeTarget "GoogleDataTransport-GoogleDataTransport_Privacy" */; buildPhases = ( - 092F37A038692CE15EE0527F4C5A31FE /* Sources */, - D785EB120A4F00CF9B0F381E5F7DA88D /* Frameworks */, - ED080CC2DE3B6B9FD10D4AE64826707D /* Resources */, + 9C202AC2F1A51B2160681388A9D623F2 /* Sources */, + 47370933ABA4C8608595E14FB74A7FF5 /* Frameworks */, + 1CB53A8A74328541606410F688AAED3B /* Resources */, ); buildRules = ( ); @@ -11220,8 +11454,8 @@ buildRules = ( ); dependencies = ( - 822D9C80E4429A7E89351EAF23498A40 /* PBXTargetDependency */, - 360F0306914FD384EE366108BAEC2D5E /* PBXTargetDependency */, + DAFF25E7AB74E07201B4507DFAA7FA08 /* PBXTargetDependency */, + CA9622702DDDFFC0212CB61D859BB93E /* PBXTargetDependency */, ); name = url_launcher_ios; productName = url_launcher_ios; @@ -11230,11 +11464,11 @@ }; E2606E08328700D7777787BC6AC63822 /* connectivity_plus-connectivity_plus_privacy */ = { isa = PBXNativeTarget; - buildConfigurationList = 5F9FF8A89972A34ED0ED3A744F7A14D1 /* Build configuration list for PBXNativeTarget "connectivity_plus-connectivity_plus_privacy" */; + buildConfigurationList = E3AE0B0B9F04A74D8498D40769FA3F71 /* Build configuration list for PBXNativeTarget "connectivity_plus-connectivity_plus_privacy" */; buildPhases = ( - F4DFF98140AA8E22E7BCEFB9264EBF9B /* Sources */, - EB3E62CDD1259DDE569106046A60885B /* Frameworks */, - 28AB36E419632126DC4CFDE7BA5EC33A /* Resources */, + 86419FE3A24C06138B1A484C0F01902C /* Sources */, + C3006C8994E4D6D218E49880D5F60613 /* Frameworks */, + C086A83D1AC05AD89A38F0C1AC906181 /* Resources */, ); buildRules = ( ); @@ -11247,11 +11481,11 @@ }; EE702F5C28052C5D194A34199665DB90 /* flutter_email_sender-flutter_email_sender */ = { isa = PBXNativeTarget; - buildConfigurationList = E3186247605F49CCBC7804B0EFE3A3AC /* Build configuration list for PBXNativeTarget "flutter_email_sender-flutter_email_sender" */; + buildConfigurationList = 1CF71BBB415BC68BD4C93A04F3E06E62 /* Build configuration list for PBXNativeTarget "flutter_email_sender-flutter_email_sender" */; buildPhases = ( - D7613FD416E10A257B082CE44AA89E41 /* Sources */, - 7FE9E57978D9EC932C6405E68CFFDED1 /* Frameworks */, - 744A56F1445D3B5BBAA24A871745CDF9 /* Resources */, + F3D0F003A1962DF725D83D8EE3E37DC9 /* Sources */, + 88A352FACDD5DE425A20CE890AC5A740 /* Frameworks */, + 2F2386A496B89D4EB0051F096D6C757A /* Resources */, ); buildRules = ( ); @@ -11264,11 +11498,11 @@ }; F2B6B9861EE4A9DBEED3FFB7D06614D6 /* flutter_native_splash-flutter_native_splash_privacy */ = { isa = PBXNativeTarget; - buildConfigurationList = E57C7C8F402E4A38C26D261950FDE0E8 /* Build configuration list for PBXNativeTarget "flutter_native_splash-flutter_native_splash_privacy" */; + buildConfigurationList = BA29C138DB893AB30052EC77FF10647A /* Build configuration list for PBXNativeTarget "flutter_native_splash-flutter_native_splash_privacy" */; buildPhases = ( - C87BD581C052ACBB5D925B3872CB39FC /* Sources */, - E9CA5D79C44B978FBEAA07BF003CFCEC /* Frameworks */, - 1FFA3CD662CC627401DBAA5AD2BAF34A /* Resources */, + 7637FBAE8BF14BD0BFC640A7EFB2FA82 /* Sources */, + BE4EB37BFC8478FC3E338BB1247D3A74 /* Frameworks */, + E0CBC56296DB1EC120641DBA44D88F56 /* Resources */, ); buildRules = ( ); @@ -11291,8 +11525,8 @@ buildRules = ( ); dependencies = ( - 4F947384B1A5FD670918D120CCCACECE /* PBXTargetDependency */, - 1FCCC77AF89F02C5F726A89146D73C9B /* PBXTargetDependency */, + 77F41AA5D08A9672B4FEFFC84AD4211B /* PBXTargetDependency */, + 7ADE171916DA044908B5B487E25E930E /* PBXTargetDependency */, ); name = connectivity_plus; productName = connectivity_plus; @@ -11379,35 +11613,27 @@ /* End PBXProject section */ /* Begin PBXResourcesBuildPhase section */ - 00B8D2E2BE28C0A8D53434CD06BF5F90 /* Resources */ = { - isa = PBXResourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - E3A311149AF0B0563F18B9D7F759B821 /* PrivacyInfo.xcprivacy in Resources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 0122A9A572934BED9C676165F762EEA2 /* Resources */ = { + 0BB3D46A85BB5628FECC1DD4CE9248B0 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( - FD7F35C3560E9B8AD1D2821CF6EF4D15 /* PrivacyInfo.xcprivacy in Resources */, + 00105ED0DF4C5058D08BED554B7F7014 /* PrivacyInfo.xcprivacy in Resources */, ); runOnlyForDeploymentPostprocessing = 0; }; - 0AE01664CAB712F626AF1FD4AC0CFEA1 /* Resources */ = { + 1318FC92D4EEE01FBB3C13F6F7857716 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( - 87B814742B4EA3BB055878BA8BC43948 /* PrivacyInfo.xcprivacy in Resources */, + 6A393977BE25256703875A39B8BCF493 /* flutter_email_sender-flutter_email_sender in Resources */, ); runOnlyForDeploymentPostprocessing = 0; }; - 1318FC92D4EEE01FBB3C13F6F7857716 /* Resources */ = { + 15D95A2B1E4CDDA4AEC3B0450D7FB262 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( - 6A393977BE25256703875A39B8BCF493 /* flutter_email_sender-flutter_email_sender in Resources */, + 31188B82DF476167928898B251D2706D /* PrivacyInfo.xcprivacy in Resources */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -11426,50 +11652,49 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 1FFA3CD662CC627401DBAA5AD2BAF34A /* Resources */ = { + 1CB53A8A74328541606410F688AAED3B /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( - 126B3DEF551FDDC8430C59102CFFBAB6 /* PrivacyInfo.xcprivacy in Resources */, + BA1B376FDF2ABE372EB02EA7A3E57083 /* PrivacyInfo.xcprivacy in Resources */, ); runOnlyForDeploymentPostprocessing = 0; }; - 2188D034C806062E9611330A1BA790A6 /* Resources */ = { + 2347BF906DA7E9FFADB5BF4BD8E20C89 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( - 3A97B805480272ACF3EF77433E68459D /* PromisesObjC-FBLPromises_Privacy in Resources */, + FF12570D17CF41CA5C9EEF407A97D7F2 /* flutter_secure_storage-flutter_secure_storage in Resources */, ); runOnlyForDeploymentPostprocessing = 0; }; - 2347BF906DA7E9FFADB5BF4BD8E20C89 /* Resources */ = { + 26939DEB0BD8509EE891A9648B3A068B /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( - FF12570D17CF41CA5C9EEF407A97D7F2 /* flutter_secure_storage-flutter_secure_storage in Resources */, ); runOnlyForDeploymentPostprocessing = 0; }; - 26939DEB0BD8509EE891A9648B3A068B /* Resources */ = { + 29D4D791B837E47B8137FC2BBE755776 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 271E2AC3ACA42B82F87BA3CB3336CA0A /* Resources */ = { + 2A8183F9DA3B63F4363249AF7CC4C861 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( - BA2B075DD67624C8467135513133121E /* PrivacyInfo.xcprivacy in Resources */, + CD207CAF9C35CD19DBB3D7F0BBC5BD16 /* PrivacyInfo.xcprivacy in Resources */, ); runOnlyForDeploymentPostprocessing = 0; }; - 28AB36E419632126DC4CFDE7BA5EC33A /* Resources */ = { + 2F2386A496B89D4EB0051F096D6C757A /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( - 6D4A80D71F7ED3F8B901D2A113688CD6 /* PrivacyInfo.xcprivacy in Resources */, + E36E56086C928534587BAA3BD62D517B /* PrivacyInfo.xcprivacy in Resources */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -11480,10 +11705,11 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 325C8906C2F3B6F79B45FA9E4157D147 /* Resources */ = { + 332A20821FD710009C70A94A3CE8C23C /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( + E81E9334A3615410FABD0C543440DBF9 /* PrivacyInfo.xcprivacy in Resources */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -11503,74 +11729,67 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 3E56B9D362C384EC205E6352E2DAFE3E /* Resources */ = { + 42C5B8023AECE8D436AFB0FBF065971D /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( - 78418138325B7B7B9AD4D6E5D5696F59 /* PrivacyInfo.xcprivacy in Resources */, + C060F8D21669E1052CFC701C60F1501F /* PrivacyInfo.xcprivacy in Resources */, ); runOnlyForDeploymentPostprocessing = 0; }; - 46903006090BE8F08EE8753E86C72EA0 /* Resources */ = { - isa = PBXResourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - 9D5F3437D48AB58F28DC6C91B1ADFD2F /* PrivacyInfo.xcprivacy in Resources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 48F2D8854101607FA7DB8ACEAA778103 /* Resources */ = { + 53198A0D13E58E37A9FB98830347025A /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( - 8B2777B7EC1B32C9C6C596BC94852CC3 /* PrivacyInfo.xcprivacy in Resources */, + 34A8DE17BB395583B25538A85EC6A8A3 /* package_info_plus-package_info_plus_privacy in Resources */, ); runOnlyForDeploymentPostprocessing = 0; }; - 507DFAA82A75C9FBDC9210406A0DA9D8 /* Resources */ = { + 560FF0437E09D2021CE1D072ED6D79B1 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( - 662B1EE1958B8C37C2EC01CA2304A380 /* PrivacyInfo.xcprivacy in Resources */, + 5293DB2841ECC5CA6E33CFA4B3CE136E /* PrivacyInfo.xcprivacy in Resources */, ); runOnlyForDeploymentPostprocessing = 0; }; - 53198A0D13E58E37A9FB98830347025A /* Resources */ = { + 59AC718002D43EDD90AAA0D8BE5F60C0 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( - 34A8DE17BB395583B25538A85EC6A8A3 /* package_info_plus-package_info_plus_privacy in Resources */, + D8A2B3835AE6EECEAC46CB54D6C92514 /* GoogleUtilities-GoogleUtilities_Privacy in Resources */, ); runOnlyForDeploymentPostprocessing = 0; }; - 561F3E697E0F29C75EB408D09CEDF057 /* Resources */ = { + 5C4D0B759511AC21F7834CD13162D8BB /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( - 5581F3C7F1E11D02D27396145EB15F6D /* PrivacyInfo.xcprivacy in Resources */, + 7A4EC6C8C48609ECDCE3992C5FD5F3FE /* nanopb-nanopb_Privacy in Resources */, ); runOnlyForDeploymentPostprocessing = 0; }; - 599BD5224F39B44DFB469E43A43C202A /* Resources */ = { + 5C6DA0ED2AA05B7EE45F13241AB6607E /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( - DB618E6A4E74F4B58DBAB7E9E73D8F33 /* PrivacyInfo.xcprivacy in Resources */, + 3FDDCE06C48DE69F36A2858C61028C1E /* local_auth_darwin-local_auth_darwin_privacy in Resources */, ); runOnlyForDeploymentPostprocessing = 0; }; - 5C6DA0ED2AA05B7EE45F13241AB6607E /* Resources */ = { + 60CC0AD6A84E78F8242323348BCD31EC /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( - 3FDDCE06C48DE69F36A2858C61028C1E /* local_auth_darwin-local_auth_darwin_privacy in Resources */, + 4E55E702DC4EF13946FCD732320F8DA1 /* PrivacyInfo.xcprivacy in Resources */, ); runOnlyForDeploymentPostprocessing = 0; }; - 63F71C0D3BBD24D651BD71D1999E8F21 /* Resources */ = { + 6625D6D62D9EB50B7E8387CE144BC43E /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( + 68DFD4E09438B4137CD35B4A0D13B1A2 /* PrivacyInfo.xcprivacy in Resources */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -11582,19 +11801,19 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 6EEB45A8D65BCA435116549A086A2304 /* Resources */ = { + 7172376080E50630EB0C7AFF32CAA782 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( - 0D15A2D6F81757F4E16EE48904442091 /* PrivacyInfo.xcprivacy in Resources */, + AEAE486553C9BDA538BAAA70893DB214 /* PrivacyInfo.xcprivacy in Resources */, ); runOnlyForDeploymentPostprocessing = 0; }; - 744A56F1445D3B5BBAA24A871745CDF9 /* Resources */ = { + 7484592DDA8222084F167FCBB79AEBAB /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( - 66885B23DED14768389EAAC01624029B /* PrivacyInfo.xcprivacy in Resources */, + B6CCC97FEE9AA4DDCD6E59D550332A97 /* PrivacyInfo.xcprivacy in Resources */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -11614,30 +11833,29 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 7847F80A7F6E7C2AFC5D6577AED2EBF6 /* Resources */ = { + 80BB7C2B2117DAF9B0384448A0F0040B /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( - 29F6016D9BEAD8071B843114823FDAAD /* PrivacyInfo.xcprivacy in Resources */, ); runOnlyForDeploymentPostprocessing = 0; }; - 80BB7C2B2117DAF9B0384448A0F0040B /* Resources */ = { + 810ACF2305A2478F61779F928DAA21A3 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( + 3B9797A9935F26A3462C7E143950D7B8 /* share_plus-share_plus_privacy in Resources */, ); runOnlyForDeploymentPostprocessing = 0; }; - 810ACF2305A2478F61779F928DAA21A3 /* Resources */ = { + 853A47386ADDEFB46ECAEFF824F9F034 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( - 3B9797A9935F26A3462C7E143950D7B8 /* share_plus-share_plus_privacy in Resources */, ); runOnlyForDeploymentPostprocessing = 0; }; - 853A47386ADDEFB46ECAEFF824F9F034 /* Resources */ = { + 87F11E5B35F0D25A20A20224BA7AD81E /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( @@ -11652,19 +11870,27 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - A3CE4722526081E8C369608087DA9A3D /* Resources */ = { + A62965E6DE71B477ECC8275191BA0B50 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( - 90DBD2E432AC4882F2D3E79CE4AEC100 /* PrivacyInfo.xcprivacy in Resources */, + 31CE989A1DDC801409537CF18DD9143E /* shared_preferences_foundation-shared_preferences_foundation_privacy in Resources */, ); runOnlyForDeploymentPostprocessing = 0; }; - A62965E6DE71B477ECC8275191BA0B50 /* Resources */ = { + AAB46631C9CD3E854988888DF84CE1A8 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( - 31CE989A1DDC801409537CF18DD9143E /* shared_preferences_foundation-shared_preferences_foundation_privacy in Resources */, + 9165A9341102404FBB43DB36E2B8BEE9 /* PrivacyInfo.xcprivacy in Resources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + AE12598A53E120F479BDD13CFF7FAC7A /* Resources */ = { + isa = PBXResourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 75C90849266EEDA8786A16273A2F38E9 /* PrivacyInfo.xcprivacy in Resources */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -11675,72 +11901,80 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - CB078C8EAE5DC634BC59910D04A84AC7 /* Resources */ = { + C086A83D1AC05AD89A38F0C1AC906181 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( + 37806F124A4F40DEF3E7AA173B3B1823 /* PrivacyInfo.xcprivacy in Resources */, ); runOnlyForDeploymentPostprocessing = 0; }; - CCE9BA0CFFB395AA105DA7737A402383 /* Resources */ = { + C74C7E30ED6EC8813FDC3965959E1FAE /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( - E2E6C647DE91BE0EBB8B84B44E073D14 /* WebView.storyboard in Resources */, + 50047576B8698081A963CB6719C3C47C /* PrivacyInfo.xcprivacy in Resources */, ); runOnlyForDeploymentPostprocessing = 0; }; - ED080CC2DE3B6B9FD10D4AE64826707D /* Resources */ = { + CB078C8EAE5DC634BC59910D04A84AC7 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( - 215FE094B3D4CF95039690C50C5272EA /* PrivacyInfo.xcprivacy in Resources */, ); runOnlyForDeploymentPostprocessing = 0; }; - F357C2ED6813523A8254197AC295AE11 /* Resources */ = { + CCE9BA0CFFB395AA105DA7737A402383 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( - 7DCC6D7A3D8B25A3C6553CE7BD713B2C /* nanopb-nanopb_Privacy in Resources */, + 6BC6E6AA888C7320E804954EEC78DCB4 /* WebView.storyboard in Resources */, ); runOnlyForDeploymentPostprocessing = 0; }; - F789C1AED5A1A095A0B62876D631F7CC /* Resources */ = { + DFE57595C52BA822B897E4AE6CF1D811 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( + 323AAAD5BE3AF4D71B8212705BE000EE /* PromisesObjC-FBLPromises_Privacy in Resources */, ); runOnlyForDeploymentPostprocessing = 0; }; - F939C894834F289DD2B8BE3D12CE2540 /* Resources */ = { + E0CBC56296DB1EC120641DBA44D88F56 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( - 21D44B3502A0FBA6D00B17D63AF157F0 /* GoogleUtilities-GoogleUtilities_Privacy in Resources */, + 7DFB91433E2E847264B66EB829F2F114 /* PrivacyInfo.xcprivacy in Resources */, ); runOnlyForDeploymentPostprocessing = 0; }; - FCB6B0AA5A63AF53E97A20768CA949E3 /* Resources */ = { + EA36D075263009B48118CA6FE1CFDC08 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( - 8F15A8C0547E4E1199AF68964631D23A /* flutter_native_splash-flutter_native_splash_privacy in Resources */, + DB753ED7512ABEA222756F9CD5E75552 /* PrivacyInfo.xcprivacy in Resources */, ); runOnlyForDeploymentPostprocessing = 0; }; - FDA3B0D1CB1A6FF211BFD57DFD64C5DF /* Resources */ = { + F789C1AED5A1A095A0B62876D631F7CC /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - FF072B5FA3754C57666C50A47115521F /* Resources */ = { + FCB6B0AA5A63AF53E97A20768CA949E3 /* Resources */ = { + isa = PBXResourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 8F15A8C0547E4E1199AF68964631D23A /* flutter_native_splash-flutter_native_splash_privacy in Resources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + FDA3B0D1CB1A6FF211BFD57DFD64C5DF /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( - 2A306D19119B2FCFE7D659BF4F8DDB16 /* PrivacyInfo.xcprivacy in Resources */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -11767,33 +12001,28 @@ /* End PBXShellScriptBuildPhase section */ /* Begin PBXSourcesBuildPhase section */ - 0046AC4CAAB46996302021D74AC8D979 /* Sources */ = { + 0248BA8D7894E078BF4BF47EBC42D47D /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 10F4A817B33F486C5B3CE22E19CD02CA /* GoogleToolboxForMac-dummy.m in Sources */, - 3AD61378C167F9F2F7C12DE568CA864E /* GTMLogger.m in Sources */, - E3C66AABD13420063DBE79BFD9AD39AA /* GTMNSData+zlib.m in Sources */, - F9AA51EBC23B82D81F2ECE61F955532E /* GTMNSDictionary+URLArguments.m in Sources */, - EAAA8B890697211604C378224734C457 /* GTMNSString+URLArguments.m in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - 039296097E67F449D2F8107F46DDC585 /* Sources */ = { + 07C70733AA4AD7EE6F46AB5A8EE53ACA /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 092F37A038692CE15EE0527F4C5A31FE /* Sources */ = { + 0C1A6F42E3EF3FA254D74C639DEF6269 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 1722996D94A8CB1492853E4372CE877D /* Sources */ = { + 1BB4882F91EA247B07DE3A50A3447FBF /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( @@ -11822,9 +12051,9 @@ buildActionMask = 2147483647; files = ( 79665496EDC89A82E696F5C6E6B232D3 /* flutter_secure_storage-dummy.m in Sources */, - 4FDB6692374D7BCF7650ABBAC7A6E6AA /* FlutterSecureStorage.swift in Sources */, - 4B39D7141A53E90E287F5DE11EE3A5BF /* FlutterSecureStoragePlugin.m in Sources */, - 30141F8DBCD80F3BD66C70FB5EA28A54 /* SwiftFlutterSecureStoragePlugin.swift in Sources */, + 294C74CDC5D18716AD59BFA83ABED622 /* FlutterSecureStorage.swift in Sources */, + 8E7A7790BFF5990AA7EB3A9BA7718DB0 /* FlutterSecureStoragePlugin.m in Sources */, + 40E0B6DBD8FDAFBC77D472ED5173C882 /* SwiftFlutterSecureStoragePlugin.swift in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -11833,10 +12062,10 @@ buildActionMask = 2147483647; files = ( 7768E53A1821E70CCF96721FC97EDBCF /* connectivity_plus-dummy.m in Sources */, - 10DD05177A7FDB55C63CA0CF75F10965 /* ConnectivityPlusPlugin.m in Sources */, - 7CA86E3F9FBA11B7DFF961186697EED1 /* ConnectivityProvider.swift in Sources */, - 030D4B50FE77903554BF28760542390A /* PathMonitorConnectivityProvider.swift in Sources */, - 332A85564C3042BF792517BBBC94DE0D /* SwiftConnectivityPlusPlugin.swift in Sources */, + CE0179E29C1E2933FEEA2495DBE22C3D /* ConnectivityPlusPlugin.m in Sources */, + AA6F5964E85BE0316AFE520027475191 /* ConnectivityProvider.swift in Sources */, + 89172914948062CE53C37F6D56E6F6A8 /* PathMonitorConnectivityProvider.swift in Sources */, + 06D1DCA1663C6640380A600D88C38CB7 /* SwiftConnectivityPlusPlugin.swift in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -11844,9 +12073,9 @@ isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - FBF968097580DCBA37B4F25A6DBA1C69 /* messages.g.swift in Sources */, + CCBCE2806D2C9991F205BBFAC6E865D7 /* messages.g.swift in Sources */, DEB0E12F5F4FFD08C58036613E55B53B /* shared_preferences_foundation-dummy.m in Sources */, - 3107A9601C3A4333F232A29E0CFA5AE0 /* SharedPreferencesPlugin.swift in Sources */, + 835B2B3630F4BFE5AE6F96656E8688FB /* SharedPreferencesPlugin.swift in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -11855,7 +12084,7 @@ buildActionMask = 2147483647; files = ( 074DF06981FFD33C5698F9069B6738EB /* flutter_keyboard_visibility-dummy.m in Sources */, - 205D15E0810BEA66C87BC02205815C6E /* FlutterKeyboardVisibilityPlugin.m in Sources */, + D5D47EBC70A610469E29C11F5AC457CD /* FlutterKeyboardVisibilityPlugin.m in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -11864,14 +12093,14 @@ buildActionMask = 2147483647; files = ( 17AC1CF5444705BB1987C15A61BC08CC /* sqflite-dummy.m in Sources */, - D15FAB9494D6CC92700C1F1F0F574588 /* SqfliteCursor.m in Sources */, - 169DFAE8562CA60B59E9C6C896856D58 /* SqfliteDarwinDatabase.m in Sources */, - 33B3495B87F62D55A9A1D45AB76FD345 /* SqfliteDarwinDatabaseAdditions.m in Sources */, - 7813A38E8CEE6EEBD6DADB50018D383A /* SqfliteDarwinDatabaseQueue.m in Sources */, - BC7406209305C9FC0529F94C7E7783EB /* SqfliteDarwinResultSet.m in Sources */, - D8A53187B9FEAC91A44EEA9E5899E24F /* SqfliteDatabase.m in Sources */, - E0A07F9E0C6911A671E384D292917476 /* SqfliteOperation.m in Sources */, - CA79EC92A22CDB3F5770E7B77AD107D4 /* SqflitePlugin.m in Sources */, + 8C48E10F3BBC4513C7EA9CF0BC1EE46F /* SqfliteCursor.m in Sources */, + 3574B3324CC007136846044250906EF0 /* SqfliteDarwinDatabase.m in Sources */, + 4D6E7DC74D0298463073211242608559 /* SqfliteDarwinDatabaseAdditions.m in Sources */, + BEF415D02414CA86CDE2E079F4103CBF /* SqfliteDarwinDatabaseQueue.m in Sources */, + 5A6D37D2789683B0E7196A0D3F72A537 /* SqfliteDarwinResultSet.m in Sources */, + 28FEBDA0C9526C596730471DDD3E17FF /* SqfliteDatabase.m in Sources */, + AA85A021208E91F17C4B4B7ED5DE6F8A /* SqfliteOperation.m in Sources */, + 495AA59E4977F8D05DD28F1D46B23117 /* SqflitePlugin.m in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -11879,8 +12108,8 @@ isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - ED0BC965E7D14A26D9BE815C0BD7272D /* EnforceBundling.swift in Sources */, - 1AC99AD5E0013C38863B965A205BFC99 /* flutter_nekoton_bridge.c in Sources */, + 6BEDD0FEDC10688BA0374600E15F5F6B /* EnforceBundling.swift in Sources */, + 8AC5900CBDB1A0347B3CA7F32B2A73CD /* flutter_nekoton_bridge.c in Sources */, 9DF7FFFC2CFBC473710A82CD7012EA23 /* flutter_nekoton_bridge-dummy.m in Sources */, ); runOnlyForDeploymentPostprocessing = 0; @@ -11889,7 +12118,7 @@ isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 932381C0ECFC15265F09C477FD08DA22 /* FPPSharePlusPlugin.m in Sources */, + 7E9144102DFDCEFF752DA565CEC70CC0 /* FPPSharePlusPlugin.m in Sources */, B9D903C719902C08C22B3ED17955BB4F /* share_plus-dummy.m in Sources */, ); runOnlyForDeploymentPostprocessing = 0; @@ -11899,8 +12128,8 @@ buildActionMask = 2147483647; files = ( 703EBC2F3C569B6BA930051C10EAA581 /* flutter_email_sender-dummy.m in Sources */, - B674A4F8250E60830C6C9881779D5600 /* FlutterEmailSenderPlugin.m in Sources */, - B1FA464CA395D563BA1D6FD0DF21A0B9 /* SwiftFlutterEmailSenderPlugin.swift in Sources */, + 892CC6C7530778536060E591B036BF93 /* FlutterEmailSenderPlugin.m in Sources */, + 4A794724E991E7AB83EA0C88CD157C19 /* SwiftFlutterEmailSenderPlugin.swift in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -12190,35 +12419,26 @@ isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - BB6C479B4AD2694E825562C2C109C5EE /* FPPPackageInfoPlusPlugin.m in Sources */, + 32D0E859678111A0A87FCBD322C5FF6E /* FPPPackageInfoPlusPlugin.m in Sources */, 417CFA6A0636AA886228A7FA10001556 /* package_info_plus-dummy.m in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - 5C375F0C79B70D1479D1B52E249AAE80 /* Sources */ = { + 541F77939BE6124721C3FFDEDF44F786 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + F6B944E59C0A9CA4E1112D90667954EE /* nanopb-dummy.m in Sources */, + FDC1C672BB137202823F29E0D7B74F2C /* pb_common.c in Sources */, + EEDB79679A354FD57AE20C202CC9BDA2 /* pb_decode.c in Sources */, + FBA31A3C4E510C4DD8DE987CDCDDEB52 /* pb_encode.c in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 5FB0D513B790B05596DA694243FF521C /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 1262A3B33D00BFB6D44414921101B68D /* FBLPromise.m in Sources */, - B4831B262C5E98D9CE944E271D790FA6 /* FBLPromise+All.m in Sources */, - D15A1E533894E25429D85638C13B3D75 /* FBLPromise+Always.m in Sources */, - 3EA275F38F345DA42ECBF3610B042A13 /* FBLPromise+Any.m in Sources */, - D6DD03997BE0A4AF3F8AAE6CC752223A /* FBLPromise+Async.m in Sources */, - 8535FF8C2786F7C0EA460F5B3CF6E2DD /* FBLPromise+Await.m in Sources */, - 3A00845A05560B897BED38A60D376052 /* FBLPromise+Catch.m in Sources */, - 7D680949B108796B248935DC1674DECB /* FBLPromise+Delay.m in Sources */, - B300EEFC0537DDE9303DCCD0754A7674 /* FBLPromise+Do.m in Sources */, - 84051EEDA84EB4C37C112DF1D4CE4D72 /* FBLPromise+Race.m in Sources */, - 5725B045C043C0352B5CBF493037C206 /* FBLPromise+Recover.m in Sources */, - 87B2D5BB9580CDDC6D6C6075B305E5A6 /* FBLPromise+Reduce.m in Sources */, - 71CEA3FFCE442BD20E43892323738F1A /* FBLPromise+Retry.m in Sources */, - FF6357608E4F9133E6423CB858D9E7B3 /* FBLPromise+Testing.m in Sources */, - D67DA371F377E224AFE79EF2A2E9F6C9 /* FBLPromise+Then.m in Sources */, - 0BF98F0EE477FF3185C5145F1413CF25 /* FBLPromise+Timeout.m in Sources */, - FF94B7A0021B0F8EDFBD9ECA8F9EC06C /* FBLPromise+Validate.m in Sources */, - 81AE891167F687AF3180EC539FEB035B /* FBLPromise+Wrap.m in Sources */, - 6BE211642C6AF00810DB9AD6553D3AD0 /* FBLPromiseError.m in Sources */, - CDFDC61A9DF6A0FA3C887577AFFA0419 /* PromisesObjC-dummy.m in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -12226,9 +12446,9 @@ isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 24DC0FAA468C12DD112FC1EA8C5CE129 /* messages.g.swift in Sources */, + 5F7428C718CB1956EC6F27E8D514A742 /* messages.g.swift in Sources */, 5F04F5637A8624CD5B00080DCA5BB416 /* path_provider_foundation-dummy.m in Sources */, - E7D97887733AC7B40B994CBF3FCBC338 /* PathProviderPlugin.swift in Sources */, + 8642D9E36899107EC68AA6094F8819B1 /* PathProviderPlugin.swift in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -12279,14 +12499,14 @@ isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - C4C6C66952E2A932766082CA182F3792 /* BarcodeHandler.swift in Sources */, - 4AA7455F425BEFF16144BC74269C3520 /* DetectionSpeed.swift in Sources */, + D863B13D6398202B7AABD36CC5A23E7F /* BarcodeHandler.swift in Sources */, + ABE323DB459A18E5F2932CCBE1DF924D /* DetectionSpeed.swift in Sources */, 6636474AD3ACBF6C852FE398E8E75AC3 /* mobile_scanner-dummy.m in Sources */, - 726A68F8A12B824454E3A71618EFBF4F /* MobileScanner.swift in Sources */, - CAF6849AB3CFE5ECC999C18578806B4A /* MobileScannerError.swift in Sources */, - F9958AB898434ABBE44436D49F757250 /* MobileScannerPlugin.m in Sources */, - FA2D9BB768118E3C65699D0E1B40F35E /* MobileScannerUtilities.swift in Sources */, - DC13AB3C8BA88278F3DC90362855D45E /* SwiftMobileScannerPlugin.swift in Sources */, + 1EE60B01E532BCD683270775190B6EDA /* MobileScanner.swift in Sources */, + 6363A0544AE3AA00D384EBAB62276186 /* MobileScannerError.swift in Sources */, + 883BA0770531420432FF40BFC460A8A8 /* MobileScannerPlugin.m in Sources */, + C1F6B6E2C2A3A0182BA8562917E02832 /* MobileScannerUtilities.swift in Sources */, + 385EAECF8AA2CF4AB65982793AC048C3 /* SwiftMobileScannerPlugin.swift in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -12294,925 +12514,916 @@ isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - F10CC180DEA7BC505E69294DEC56EBF5 /* Launcher.swift in Sources */, - 014B3A844F250498686A51D57F5C33ED /* messages.g.swift in Sources */, + CFAB1EC1B0B318F812CE94707B492BDB /* Launcher.swift in Sources */, + 021D831C78CB46B5EBE5F0FEB5D5BC03 /* messages.g.swift in Sources */, 41B709C97BE2D1DEE923F9CAD802EC2E /* url_launcher_ios-dummy.m in Sources */, - 907FF6EF5EF150DE82D6DD70C453DD4D /* URLLauncherPlugin.swift in Sources */, - 6C65E04F6B6DC3810ED5C5EA1BFB8139 /* URLLaunchSession.swift in Sources */, + A2FF553C78DCB42E27717BDA877AA8F0 /* URLLauncherPlugin.swift in Sources */, + 1307AD5FD33CDF0B23F08E861D57175D /* URLLaunchSession.swift in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - 7718B2B8EB86B021830B43B06D4B313A /* Sources */ = { + 7637FBAE8BF14BD0BFC640A7EFB2FA82 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 1A14438E07B9CC087AC171B76740D21D /* AppTrackingTransparencyPermissionStrategy.m in Sources */, - 019896AAB126AA4C186CA9E368EF2862 /* AssistantPermissionStrategy.m in Sources */, - 4632D7CCBFD9A23B0A8B5D762EF42F49 /* AudioVideoPermissionStrategy.m in Sources */, - 0A5B26701F647A4F946FD7442DBBF9FC /* BackgroundRefreshStrategy.m in Sources */, - 738DF38FCDE475C0CB6D47ED28083651 /* BluetoothPermissionStrategy.m in Sources */, - E2624A04674AEEBD9D1796FECA1C5A39 /* Codec.m in Sources */, - 564365FF54B915330637733ED11B0E41 /* ContactPermissionStrategy.m in Sources */, - ADA4290F89924D22E6B6883B9F89C2DB /* CriticalAlertsPermissionStrategy.m in Sources */, - F9284D720ACB961028BFF4B6C7C1A33B /* EventPermissionStrategy.m in Sources */, - 3D7172308ED2AEC29620320ECBD1DDA0 /* LocationPermissionStrategy.m in Sources */, - 3B34CE5936D008DC77061EA3952DA8E5 /* MediaLibraryPermissionStrategy.m in Sources */, - A936EE28B5F65059CBA6359523EB6EEF /* NotificationPermissionStrategy.m in Sources */, - 5AFA3A90D77FAA5BE7C00C1736B452A9 /* permission_handler_apple-dummy.m in Sources */, - F43ADDFAAB8AF56995EC6D3DB9EDD613 /* PermissionHandlerPlugin.m in Sources */, - 6DA9076998228BDAF17939D589C8B8CD /* PermissionManager.m in Sources */, - E8B67EDBAD1B5C10F12C7E037F486C81 /* PhonePermissionStrategy.m in Sources */, - 5A1EEB4B25EE21121F7FA3C37BA799E0 /* PhotoPermissionStrategy.m in Sources */, - 9B8AA1F8EA2251A5183431B1C76A366B /* SensorPermissionStrategy.m in Sources */, - 2B6EE5682905F88B7C796B3F9EA4798B /* SpeechPermissionStrategy.m in Sources */, - DC12CB519B640F024D221DCEA57B8B18 /* StoragePermissionStrategy.m in Sources */, - C36742DD5A413D065C704EE20D923E8E /* UnknownPermissionStrategy.m in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - 774975F19B641DA679CF2517E4D8B1FE /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - A1BB81FCF456F20A753F08D535DE1849 /* FLTImagePickerImageUtil.m in Sources */, - 6C01A2642A802AFC256BF58D5B60C124 /* FLTImagePickerMetaDataUtil.m in Sources */, - 31857F3560B260AD81F800F08064DDAB /* FLTImagePickerPhotoAssetUtil.m in Sources */, - 4090704E14BBF75A0A8F3A2027082F8E /* FLTImagePickerPlugin.m in Sources */, - 7CA620430B27C5B744C5D14D20BAEC57 /* FLTPHPickerSaveImageToPathOperation.m in Sources */, - FB0ABFD9CFC730832145D64D1404EC5A /* image_picker_ios-dummy.m in Sources */, - 022A0B8AFBD717956F6EE1EFAA77774C /* messages.g.m in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 7B417452F7BBE563CB966C3EE3D74006 /* Sources */ = { + 7718B2B8EB86B021830B43B06D4B313A /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( + CE201E7074E3EEADA8DD869917C890CF /* AppTrackingTransparencyPermissionStrategy.m in Sources */, + F8832417022CBAEB59C25E755DB961C1 /* AssistantPermissionStrategy.m in Sources */, + C0D03B5267C6C6FBB48C66EDB9DF4505 /* AudioVideoPermissionStrategy.m in Sources */, + E59BF85F36F75615821CD62F5D13381B /* BackgroundRefreshStrategy.m in Sources */, + DDA6753607BA420236BD7D3B0F7BA0E5 /* BluetoothPermissionStrategy.m in Sources */, + 34B4B1FA05F5E645F7038812B7583B68 /* Codec.m in Sources */, + CDCEB907EB30DAFBCD29AD1C2432C5C9 /* ContactPermissionStrategy.m in Sources */, + 11731626C147F0019747A2034A3509CD /* CriticalAlertsPermissionStrategy.m in Sources */, + 30ECC4D6788BF3131B1B75574D3ACEC8 /* EventPermissionStrategy.m in Sources */, + 952E00BFED1456A36C2F1FB8C1DAEB7E /* LocationPermissionStrategy.m in Sources */, + 160911AE72415567E10F4FD4C2847590 /* MediaLibraryPermissionStrategy.m in Sources */, + E6ABB6BE69B4A59F90D62FA4D6214913 /* NotificationPermissionStrategy.m in Sources */, + 5AFA3A90D77FAA5BE7C00C1736B452A9 /* permission_handler_apple-dummy.m in Sources */, + 3BEE30B4ACB2B845DD496C9045E3E2ED /* PermissionHandlerPlugin.m in Sources */, + C7271EBE14729B2D72BD0C78E5B032AA /* PermissionManager.m in Sources */, + DDA8ECEF35393325DEC1E86D28250FF5 /* PhonePermissionStrategy.m in Sources */, + 7E2745AA2D6B296A7F77801E5C8D0BA1 /* PhotoPermissionStrategy.m in Sources */, + 1E1A50BCFA9221E3AAC0DE2CF7F3CC77 /* SensorPermissionStrategy.m in Sources */, + D0E0C725CDD8461990F0162565E29237 /* SpeechPermissionStrategy.m in Sources */, + F23354F6B755BCE79BF516F5D43C7C89 /* StoragePermissionStrategy.m in Sources */, + D457C715F4DCE572D2A92E0C8B668A32 /* UnknownPermissionStrategy.m in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - 7BE3107ACE1C4E63CA7471C2DF57EDAC /* Sources */ = { + 774975F19B641DA679CF2517E4D8B1FE /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( + 76E874C9954D0FF90BC74AE8B3B7DF39 /* FLTImagePickerImageUtil.m in Sources */, + DF46BC109E67BF701A059352C8FA12EA /* FLTImagePickerMetaDataUtil.m in Sources */, + 6CB2B6B0F014F035987320ADFA3BEB89 /* FLTImagePickerPhotoAssetUtil.m in Sources */, + 0E13854E0CDF1884F91411456DE4CDC9 /* FLTImagePickerPlugin.m in Sources */, + 107779115E754752E203A29AB927B2D6 /* FLTPHPickerSaveImageToPathOperation.m in Sources */, + FB0ABFD9CFC730832145D64D1404EC5A /* image_picker_ios-dummy.m in Sources */, + C66E4D314DC6606CE038D0D9D78D2461 /* messages.g.m in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - 85FE4F9AF42743CD8428ACC4ABFBCCBD /* Sources */ = { + 86419FE3A24C06138B1A484C0F01902C /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 96340AF6D44BF1EE6B97AE4DE2203A4B /* Sources */ = { + 8C9559C578A3971C27E75E67D2285E4E /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 4B9D745426A493235E175565B8349DCA /* FLTIntegrationTestRunner.m in Sources */, - 5F57FA5AA0B442F09044E92D740B7EA7 /* integration_test-dummy.m in Sources */, - 8DF503D56E6679DB21D4DBF87D1B2337 /* IntegrationTestIosTest.m in Sources */, - E427389F21E5F6A915DDB0CB5F598AF6 /* IntegrationTestPlugin.m in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - 9B4344F17CACD5AAAC9EF6E817DE7BCD /* Sources */ = { + 8F13810E1BF84AFC4036CE7E41ED69CB /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - A328BEF41F2593D4859F5C67B505A94B /* Sources */ = { + 8FCE12DC8F4418109C7C5DE9C7768ED2 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - BB5520E18697005AC5F9E889E25796FE /* CallAsyncJavaScriptBelowIOS14WrapperJS.swift in Sources */, - D6B354B86E2EB2463869619B805E8FE7 /* ChromeSafariBrowserManager.swift in Sources */, - EEEFD3F95451FFFDE6924F02333487A1 /* ClientCertChallenge.swift in Sources */, - 7F2282D7AEAB550DBD2BF2604881451C /* ConsoleLogJS.swift in Sources */, - 3D28EE1B75172893917F6CD02CA1CED5 /* ContextMenuOptions.swift in Sources */, - C06996CB7F7E97B1E41C7CE665E13112 /* CredentialDatabase.swift in Sources */, - 685FEF9FD0CC3E562449ABE7CD290D2C /* CustomeSchemeHandler.swift in Sources */, - A0634BFA4DCB1BD5A5AF9DF6A19A8A0F /* DownloadStartRequest.swift in Sources */, - C5B3C7A3A9C115800BB741C5F8791A5F /* EnableViewportScaleJS.swift in Sources */, - 6E92872EA469989D59739C10F2E29FB3 /* FindElementsAtPointJS.swift in Sources */, - 8392AB7D16C503782420AECA3478E5A8 /* FindTextHighlightJS.swift in Sources */, - E81CAD7A450E91627CEDB636E4A62E6D /* flutter_inappwebview-dummy.m in Sources */, - B346A2B365D2661B8BD3CEE21BA810E7 /* FlutterMethodCallDelegate.swift in Sources */, - 5ACEFC06465A25AE42E15132A784B25D /* FlutterWebViewController.swift in Sources */, - B2381357963A421C1F89ACFD4F470D67 /* FlutterWebViewFactory.swift in Sources */, - BEC364E5CA6864645D86B398530E4B54 /* HeadlessInAppWebView.swift in Sources */, - AC4080900AF5CFD98FEDCBB5F168461C /* HeadlessInAppWebViewManager.swift in Sources */, - 9DA8F71CA40998E6A6552B57BCCACDD2 /* HitTestResult.swift in Sources */, - E3A9F4211DE8FA981292C36BA07A8351 /* HttpAuthenticationChallenge.swift in Sources */, - 381F2636BD785935B14EE8EACD86EEDC /* InAppBrowserDelegate.swift in Sources */, - BA6E856E17DD2E80C72A259E9C55D1E2 /* InAppBrowserManager.swift in Sources */, - D7DF8F9DBCD7C83E6A265218303084BF /* InAppBrowserNavigationController.swift in Sources */, - D3F59AD35C269CE243EFF30D3C389601 /* InAppBrowserOptions.swift in Sources */, - F7AB6EFFCEE3B99B7C42FCC011161485 /* InAppBrowserWebViewController.swift in Sources */, - FCCB7E806E2BEED048354CB6C91522AE /* InAppWebView.swift in Sources */, - A3CDA108E7C999243BC2FAFC8CD7B2F8 /* InAppWebViewFlutterPlugin.m in Sources */, - 2EAE2DDDF1DA989CAF74EE9A4EFBD2E4 /* InAppWebViewMethodHandler.swift in Sources */, - DC168EC4AF7A93BE0E4FD327ADF7DE8D /* InAppWebViewOptions.swift in Sources */, - E63595F0FE654F43B2B9776994D8B162 /* InAppWebViewStatic.swift in Sources */, - 2D7CB8D24CFE7C615AF8CDFAFBE9CAFF /* InterceptAjaxRequestJS.swift in Sources */, - 3B4A9096E22B45B07F5287C62653EC76 /* InterceptFetchRequestJS.swift in Sources */, - BA6B32DBD832C435848063E38169EB3F /* JavaScriptBridgeJS.swift in Sources */, - 4F8561C52EA5214773A682A5FACFBA71 /* LastTouchedAnchorOrImageJS.swift in Sources */, - B61A56B78EFF8B61F01BFC8DA2CF24F0 /* LeakAvoider.swift in Sources */, - 9D191DEB1BB3B910FDB2EF89DFFCC112 /* MyCookieManager.swift in Sources */, - 884506C9C019D59E2F9753F37BC33497 /* MyWebStorageManager.swift in Sources */, - 51B148E14C4C8F6F7C09C98CF809A0FA /* NSAttributedString.swift in Sources */, - 7B875B111685F4C1B1A78684D9BCD7ED /* OnLoadResourceJS.swift in Sources */, - A30782D80D0EDBC2FF0CB2114AB42FCE /* OnWindowBlurEventJS.swift in Sources */, - CBC11AF3B64531A2D909AAE339B780F5 /* OnWindowFocusEventJS.swift in Sources */, - 37266331EA149EC27F891EE1EDA1FF87 /* Options.swift in Sources */, - 5D3832487757B7FBD285DF6C2AD36836 /* OriginalViewPortMetaTagContentJS.swift in Sources */, - E05331AA659D4A4C133E0C4E5903D110 /* PlatformUtil.swift in Sources */, - 95CE86F60D20FE4B40EFE7C389F4AD56 /* PluginScript.swift in Sources */, - F174B5F5F53546FF4BF642A3C5BA5E4B /* PluginScriptsUtil.swift in Sources */, - 22958570DB6990591A91C09008DD26A2 /* PrintJS.swift in Sources */, - 05DF1BB44915A71207E41DCF23D2B91E /* PromisePolyfillJS.swift in Sources */, - D1CEE9DCCCDFE72056C1BBF5FE99B334 /* PullToRefreshControl.swift in Sources */, - B59330B56EA9B0AA00B5D5E69698C861 /* PullToRefreshDelegate.swift in Sources */, - E2084B463264AEF57CEECFA065134105 /* PullToRefreshOptions.swift in Sources */, - 2A4F0B3A40D5A4D9C7713D4C7B978CB5 /* SafariBrowserOptions.swift in Sources */, - 9398E7FF78CD5F40E6D716AF674B752D /* SafariViewController.swift in Sources */, - 8BAF9E08BD75DCDDE7710765CB03140A /* SecCertificate.swift in Sources */, - BA07DFF12097E4046EEB6818D9471BAF /* ServerTrustChallenge.swift in Sources */, - A9BC834D457284952D17EE7514756BE4 /* Size2D.swift in Sources */, - 064F1DEF778AB2E5783154BEACD46ADF /* SslCertificate.swift in Sources */, - D42465963FF6E37A7BF073BC35D1ECE1 /* SslError.swift in Sources */, - F909145365EF3AB657490A30CFB4BE0F /* SupportZoomJS.swift in Sources */, - 860C10778C373B844988C35E3EE5C69D /* SwiftFlutterPlugin.swift in Sources */, - 34E79A20C7012B02115954A55AD73488 /* UIColor.swift in Sources */, - C95DC650DD0C774B9704B4B1AA392F7E /* URLAuthenticationChallenge.swift in Sources */, - 69BDDB99BB989F7EA6852B7C8B31E2B4 /* URLCredential.swift in Sources */, - F4AD054181361F8B15BEE934AD0A2508 /* URLProtectionSpace.swift in Sources */, - BAE4A2F425619C54DC40B8341C92DE56 /* URLRequest.swift in Sources */, - 51D774C6E0B46E71624853B89EB7BF26 /* URLResponse.swift in Sources */, - 82F3A5FA31E20F63B407C589A972A2E7 /* UserScript.swift in Sources */, - 092CE3672CF7158750323BA6E9EA8ECE /* Util.swift in Sources */, - 1CEB806D2D3907BF9D70495AD8675A58 /* WebMessage.swift in Sources */, - 53148EC4184BB9F169DE996CBB936B06 /* WebMessageChannel.swift in Sources */, - D7C058BF86BA8F2E7514777DDEB2980D /* WebMessageChannelJS.swift in Sources */, - F0F43138FDDFB236F2EF5BAD61D46118 /* WebMessageListener.swift in Sources */, - 8248CDCC0873DFFFE8BA4EFE34AAECFF /* WebMessageListenerJS.swift in Sources */, - 6D466F91E49BF2DBF889D02BC68F9730 /* WebMessagePort.swift in Sources */, - A07CD20B80C1FCD9872022987473BF57 /* WebViewTransport.swift in Sources */, - FE542D175483B20456A72A4EA4E384BC /* WindowIdJS.swift in Sources */, - EB1AC285C80FF8E829E942088539B48E /* WKContentWorld.swift in Sources */, - 040C429E42D884969A4C839E2D16D1B7 /* WKFrameInfo.swift in Sources */, - BAAB115683230AFC402B1606C6C37BD6 /* WKNavigationAction.swift in Sources */, - 9C7E419C20D2BE592EFA4B9C466009D7 /* WKNavigationResponse.swift in Sources */, - 688C646B6D36A9E4BC8EE6A55C06EA4B /* WKProcessPoolManager.swift in Sources */, - DC0F0CEF56886103CEF4048EF80C72DF /* WKSecurityOrigin.swift in Sources */, - 4DC24EF55BD97295DFCC549A2479D20C /* WKUserContentController.swift in Sources */, - 953265924A81901EAFA886F9B936D0D6 /* WKWindowFeatures.swift in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - AF5AE89F7EB0BA0ED2F4CC9EF59026C2 /* Sources */ = { + 96340AF6D44BF1EE6B97AE4DE2203A4B /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( + E7C7D8698CF54C59EC13A75C92A67754 /* FLTIntegrationTestRunner.m in Sources */, + 5F57FA5AA0B442F09044E92D740B7EA7 /* integration_test-dummy.m in Sources */, + 5C217ECDE137B9C6669CD13A7306D581 /* IntegrationTestIosTest.m in Sources */, + 975C8AF195504C41D5995E6F8B80E522 /* IntegrationTestPlugin.m in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - B0E6145EEDB49DAAEB0222253441A042 /* Sources */ = { + 98471504CD1C88480451339A7E331E8E /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 39C4FF137584031C16273240AC4ACA9C /* GTMSessionFetcher.m in Sources */, - 56E6EB416A0C45D48E15FD1FD11D70E2 /* GTMSessionFetcher-dummy.m in Sources */, - 94E4F7EDE4B8B8C2E7BF75C93DCEE4EF /* GTMSessionFetcherLogging.m in Sources */, - C4104058F206DC0609275B46F9C48440 /* GTMSessionFetcherService.m in Sources */, - 2DE94594921B6A37C2ECF8332194FF39 /* GTMSessionUploadFetcher.m in Sources */, + E7917AA4BFD47A56F708B83E72E94BD5 /* GoogleUtilities-dummy.m in Sources */, + B75E63CB9AD3F9EE1BFC44BCBFE7F2F9 /* GULAppEnvironmentUtil.m in Sources */, + 9163D0DFA7F02E74DEDE25065A88C797 /* GULHeartbeatDateStorage.m in Sources */, + AA1730933BC5E4A01EE6E24F77F2D14D /* GULHeartbeatDateStorageUserDefaults.m in Sources */, + DF178432E5ECC85D8FD22FE4F823C9D0 /* GULKeychainStorage.m in Sources */, + 26D4BE2DCFFE9F24F5CF3EACBBE104E6 /* GULKeychainUtils.m in Sources */, + 556DF684B67F5E0E3DC5385831ADFC81 /* GULLogger.m in Sources */, + F8963B565B8B50C3EABE572A28E63C92 /* GULNetworkInfo.m in Sources */, + FC0C395F54A3BF95B09B939BE20061D7 /* GULSecureCoding.m in Sources */, + F30957A19E69300E6B83F19D9DCF1CFD /* GULURLSessionDataResponse.m in Sources */, + A9774300BBE3AC6BD5B213AEB526C57E /* GULUserDefaults.m in Sources */, + D6D19F94DAC79BF9FE41DDAECC0AAE5A /* IsAppEncrypted.m in Sources */, + 889AB95F561AC8804FBE56B2E2855740 /* NSURLSession+GULPromises.m in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - BA3B452E5923264141032B53016EB177 /* Sources */ = { + 9B6CA8E7F4A76C7FB8DD2F846DCD94F1 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - E4EDA7D56FE451825F2ED414DAE8E724 /* GoogleUtilities-dummy.m in Sources */, - 00EA9ED7F54CA5139A1CD236B56394A5 /* GULAppEnvironmentUtil.m in Sources */, - FD5851AB74E541AAD142F73A20E008D5 /* GULHeartbeatDateStorage.m in Sources */, - 2D5A22B3227484FDCE5D3D54CD188147 /* GULHeartbeatDateStorageUserDefaults.m in Sources */, - B14ACF91F7C7BBD1757FC56F0CEE3179 /* GULKeychainStorage.m in Sources */, - F87EFAB1A74BD1E094AA567A4AA1305F /* GULKeychainUtils.m in Sources */, - 3882E4360F2D715931C911D18F405A87 /* GULLogger.m in Sources */, - 74952DD4A646701ABA933F3D6A5FF640 /* GULNetworkInfo.m in Sources */, - DD175F78193D01B011615B819CF15B0D /* GULSecureCoding.m in Sources */, - 85AFE1DE3A2DE88D9794B978FFB8BA9F /* GULURLSessionDataResponse.m in Sources */, - 7DE3CE359D73EAA36494202D23425CE8 /* GULUserDefaults.m in Sources */, - 5235DA445E252F346EBC4B2859D35012 /* IsAppEncrypted.m in Sources */, - 9E0E015533E5F5EB1582F5F32EB2CF57 /* NSURLSession+GULPromises.m in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - C325103491689942504A89173C9236E3 /* Sources */ = { + 9C202AC2F1A51B2160681388A9D623F2 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 9420423CAE039DB91965D1969B1643D7 /* flutter_native_splash-dummy.m in Sources */, - BB65D46A1E51185745EACD506BAC6A52 /* FlutterNativeSplashPlugin.m in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - C334C85146357BCB61DB4C3FA32416BA /* Sources */ = { + A12113C3A838A79EB9038F0F8201F5B9 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - C74640484C6DBB7B7D83CD51D951333B /* Sources */ = { + A328BEF41F2593D4859F5C67B505A94B /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 4BBD6ABAE97506D17E527FD8C29ED003 /* sentry_flutter-dummy.m in Sources */, - DFD6E5DD3B6EDA978122370C978C3571 /* SentryFlutter.swift in Sources */, - 1103B9C424068CA0DAAC99978E736DD1 /* SentryFlutterPlugin.m in Sources */, - 5B44AFA509E1073B888EF4509DA46C59 /* SentryFlutterPluginApple.swift in Sources */, + 96736F7BB0A0CA7CA96F4371CB9E1A97 /* CallAsyncJavaScriptBelowIOS14WrapperJS.swift in Sources */, + 1AB2A7045A23E665C38156847BA46117 /* ChromeSafariBrowserManager.swift in Sources */, + 2FBA30677C364EBCFE1299031FE64730 /* ClientCertChallenge.swift in Sources */, + D00F615020B456D3709F5CEA18942E63 /* ConsoleLogJS.swift in Sources */, + B1BCBD88434C9EF2B5AD1E095890490B /* ContextMenuOptions.swift in Sources */, + 9CE72A7A29DBE63833ED401328E12167 /* CredentialDatabase.swift in Sources */, + 7F2501DFA4DA49D1A83830418A59AFC9 /* CustomeSchemeHandler.swift in Sources */, + 204DF58CDE5389E7A84F863097F982F7 /* DownloadStartRequest.swift in Sources */, + 9C4C5DE77998604A2ECFBFA18904EFE2 /* EnableViewportScaleJS.swift in Sources */, + BA0C95D5449BBA108C6B7D0C63908823 /* FindElementsAtPointJS.swift in Sources */, + 2E5C3C13EFC1F4CDCC52255BFCEAB261 /* FindTextHighlightJS.swift in Sources */, + E81CAD7A450E91627CEDB636E4A62E6D /* flutter_inappwebview-dummy.m in Sources */, + 8D2A9F4F970B5C77EA581A20D295A32E /* FlutterMethodCallDelegate.swift in Sources */, + 725E67AF16D87A7F74453777C307114B /* FlutterWebViewController.swift in Sources */, + E996FB5DAF0E0955A47DBA86E04D324A /* FlutterWebViewFactory.swift in Sources */, + EFE515763DE539243921F113BAF8F7AA /* HeadlessInAppWebView.swift in Sources */, + 1D1A32C0513A0025D29803BD9B7514EB /* HeadlessInAppWebViewManager.swift in Sources */, + 8EFE76758F88FBFDA2BCA8C4D8E44DE8 /* HitTestResult.swift in Sources */, + 79943A2B67522D497BC9754FB39C7BB7 /* HttpAuthenticationChallenge.swift in Sources */, + 7919FB98AA3BDB652C239CA29E23A431 /* InAppBrowserDelegate.swift in Sources */, + 9A09B6B15DBE7B7EB5692327AC75BBB7 /* InAppBrowserManager.swift in Sources */, + C6C48912539647671E0F7208E8AEF49F /* InAppBrowserNavigationController.swift in Sources */, + A8288278FE8AEECBE1AB33D8F1EF623A /* InAppBrowserOptions.swift in Sources */, + 839CD6E5C694E5BB2C5283D3068686F3 /* InAppBrowserWebViewController.swift in Sources */, + F1C7A231E66B61C7D78B9DE512119CA9 /* InAppWebView.swift in Sources */, + 1AD4A208C9C674F4F45BE41522DD8653 /* InAppWebViewFlutterPlugin.m in Sources */, + A99D11F512148613A8115CA3B23C882C /* InAppWebViewMethodHandler.swift in Sources */, + 164EA4392409C32B15F846574FF847B4 /* InAppWebViewOptions.swift in Sources */, + 105D5B0B65FDD982C21B3E7D994FDCFB /* InAppWebViewStatic.swift in Sources */, + E314CCEE1EF4B1E2FA175BB2D4C140D0 /* InterceptAjaxRequestJS.swift in Sources */, + 21B2ABD9D4D052EB29068EB8BB762FB0 /* InterceptFetchRequestJS.swift in Sources */, + 9BDC4E0CFC2074C77D92D72026E898FA /* JavaScriptBridgeJS.swift in Sources */, + A1C7C78B45F7C32B3EAA8DA3A08AF3D9 /* LastTouchedAnchorOrImageJS.swift in Sources */, + 158A2FE99714CEC0637166EEC6295E82 /* LeakAvoider.swift in Sources */, + 45AA87E2E157343F1F16BB29A133469D /* MyCookieManager.swift in Sources */, + 40BBD239E1900F271717AAD7B08B86B0 /* MyWebStorageManager.swift in Sources */, + 26323FCCDA2F5B5E8852A98D0C9B54BF /* NSAttributedString.swift in Sources */, + 5038AE01A8D92457BAAAA1706C5B592F /* OnLoadResourceJS.swift in Sources */, + E36560EF0E5C5370564729EFD7018774 /* OnWindowBlurEventJS.swift in Sources */, + 458715479694087963DB2C634F25C888 /* OnWindowFocusEventJS.swift in Sources */, + 05D166185C302E2B8AD29BCE9AFC4358 /* Options.swift in Sources */, + 7664A48E2D389851A5E2F5A20A730818 /* OriginalViewPortMetaTagContentJS.swift in Sources */, + 879499E9CFF6C9B037E4ACC8B0CFAB68 /* PlatformUtil.swift in Sources */, + 172A661D3D132FECDD1B64E792102783 /* PluginScript.swift in Sources */, + C46D1145AD854EB5293F39177E86D539 /* PluginScriptsUtil.swift in Sources */, + AC5232986B87BA6CDD10BB1471B4139B /* PrintJS.swift in Sources */, + 6B7E0B065F21C7C2D9D59FCC34B1E657 /* PromisePolyfillJS.swift in Sources */, + 214F6AA3078E6A76C4BDF327A78A88C6 /* PullToRefreshControl.swift in Sources */, + E68277C11FE964EF8B565915DCFB355E /* PullToRefreshDelegate.swift in Sources */, + 00B3C483F69DC78601705E04629CE433 /* PullToRefreshOptions.swift in Sources */, + 699132D1D4AACA3E31756A5FE0C58069 /* SafariBrowserOptions.swift in Sources */, + 8DE55D312D5E84B83A61716FB3B626B7 /* SafariViewController.swift in Sources */, + 15D25523CAEE84BE95CDA7A500532F73 /* SecCertificate.swift in Sources */, + D143B304F73668F6747A4376DF0781F4 /* ServerTrustChallenge.swift in Sources */, + 802E92E6BCBD21CC737B5AAACEBF4F30 /* Size2D.swift in Sources */, + ACDF54E38DCD99051B0E60A9B4FA5DFB /* SslCertificate.swift in Sources */, + 88E48C44ED2EB137754F9BB6CDC26D7D /* SslError.swift in Sources */, + 2644596CE3CCFFCB219819F24C311490 /* SupportZoomJS.swift in Sources */, + A8B1E36853FE8E81DF4770A0771748AB /* SwiftFlutterPlugin.swift in Sources */, + 4A01BFCC908085E066080B699723E729 /* UIColor.swift in Sources */, + BD9EBFFF4BD23E51EFA1B793D69A64C5 /* URLAuthenticationChallenge.swift in Sources */, + 63765FE88FE367C1CB7374FCA3EDB115 /* URLCredential.swift in Sources */, + 0C9F4C5B978FD16890D4F3602CDD4D98 /* URLProtectionSpace.swift in Sources */, + 18BA5959B647A44546C478E77366CC85 /* URLRequest.swift in Sources */, + EA7CFE305DA2D5DA213A21D7DBA0DCE3 /* URLResponse.swift in Sources */, + 285D846A24BB89952A667BD698E3D5BF /* UserScript.swift in Sources */, + 11022C643B912D972978886DCD0EE41B /* Util.swift in Sources */, + A5053723842BB0C1ABA84E0622BB9273 /* WebMessage.swift in Sources */, + 720FD394378D96C6C1F63FFCBD8AA038 /* WebMessageChannel.swift in Sources */, + 6279206DF8DB752E5B60DA43EDDCF620 /* WebMessageChannelJS.swift in Sources */, + 7C1C3E7D16F2FD90C47BFE512285376A /* WebMessageListener.swift in Sources */, + 5ADFB7D736804A6DE702BEAB5CD94FDF /* WebMessageListenerJS.swift in Sources */, + 54CB10A007D736C1ED5BEF0730FBEC7E /* WebMessagePort.swift in Sources */, + E991268CD49C4F71EFE2E11C3AA8178F /* WebViewTransport.swift in Sources */, + EFC066A95D75F68BC790E76C7544A89E /* WindowIdJS.swift in Sources */, + B4C256C6CDA9F4BA95D02F0AA1F32CE5 /* WKContentWorld.swift in Sources */, + F84638B81381B8A77442C905C90C7E69 /* WKFrameInfo.swift in Sources */, + B963450C2B1F152F146160B8D3A6EBFB /* WKNavigationAction.swift in Sources */, + D427DDF1B033FD30E1BF943D37604049 /* WKNavigationResponse.swift in Sources */, + 3CFC95092D25FD2062334EBC0A0681B9 /* WKProcessPoolManager.swift in Sources */, + C06987C3EC60951BD8F3CD154E212E62 /* WKSecurityOrigin.swift in Sources */, + E07C028439517FE0C26204593F8E6F66 /* WKUserContentController.swift in Sources */, + F58846BAEEFF8EDA9F81531019F205EE /* WKWindowFeatures.swift in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - C87BD581C052ACBB5D925B3872CB39FC /* Sources */ = { + B0E6145EEDB49DAAEB0222253441A042 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( + 39C4FF137584031C16273240AC4ACA9C /* GTMSessionFetcher.m in Sources */, + 56E6EB416A0C45D48E15FD1FD11D70E2 /* GTMSessionFetcher-dummy.m in Sources */, + 94E4F7EDE4B8B8C2E7BF75C93DCEE4EF /* GTMSessionFetcherLogging.m in Sources */, + C4104058F206DC0609275B46F9C48440 /* GTMSessionFetcherService.m in Sources */, + 2DE94594921B6A37C2ECF8332194FF39 /* GTMSessionUploadFetcher.m in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - CFDC1C5A1358AEC582D5375B3EEF47A9 /* Sources */ = { + C325103491689942504A89173C9236E3 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( + 9420423CAE039DB91965D1969B1643D7 /* flutter_native_splash-dummy.m in Sources */, + 2B5A1F61AB0FF5E04CD48E302DF033AA /* FlutterNativeSplashPlugin.m in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - D1DDC81CE7F3A36E661BBE98B7C103C1 /* Sources */ = { + C74640484C6DBB7B7D83CD51D951333B /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( + 4BBD6ABAE97506D17E527FD8C29ED003 /* sentry_flutter-dummy.m in Sources */, + 963B01EB278248BB34673E74786C3800 /* SentryFlutter.swift in Sources */, + 0AB8EB015BE660CE8AAB6262C9736424 /* SentryFlutterPlugin.m in Sources */, + A534C9C12B74EDB260077A62A1D78C46 /* SentryFlutterPluginApple.swift in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - D7613FD416E10A257B082CE44AA89E41 /* Sources */ = { + C8297A0E779322A6ECBF30706CD49056 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( + C96E4706F739623C249A12973FB54D2D /* FBLPromise.m in Sources */, + 20DDFF21ECB18E0D303E49AEB041B5E6 /* FBLPromise+All.m in Sources */, + 7AF8A41308864BDBF55E4D119A1CD7E0 /* FBLPromise+Always.m in Sources */, + B20FD1BF18AB585BDA4FF0221FB846AF /* FBLPromise+Any.m in Sources */, + 1736E5D1E369D921FEE086F80D2DCDC9 /* FBLPromise+Async.m in Sources */, + 1FC1F1C45A53ED3BFDF88AFE660CA099 /* FBLPromise+Await.m in Sources */, + B2872BA870EE829F0218EE7D70D60404 /* FBLPromise+Catch.m in Sources */, + D3C3BDCB99FDB66401488A3453B30E79 /* FBLPromise+Delay.m in Sources */, + 1C6C0766AB06F27FC830ADCC57461095 /* FBLPromise+Do.m in Sources */, + 38C408FF63F01DA9B144202EB0A24CE5 /* FBLPromise+Race.m in Sources */, + 7DC85F483C19AF41BCA11801993FD24A /* FBLPromise+Recover.m in Sources */, + A9E3674B37AD0E489B5E0699763AC94F /* FBLPromise+Reduce.m in Sources */, + 5FD6789A63CBF4EA7A0CB49117573DEA /* FBLPromise+Retry.m in Sources */, + 95C06297A52911BF54D26691DBC9E116 /* FBLPromise+Testing.m in Sources */, + DD3B7BEC3142A8B7C35932EC27B32E97 /* FBLPromise+Then.m in Sources */, + 19A87B2CF36BA1D05E9476C7F2DCB5D5 /* FBLPromise+Timeout.m in Sources */, + 8C803371083376CA375DDDE275219DA5 /* FBLPromise+Validate.m in Sources */, + FEEC26DBAD0A0B7C291BCE7C83AB043B /* FBLPromise+Wrap.m in Sources */, + 86C9B064FA2FECAFBAE4D1B1EFA06CA6 /* FBLPromiseError.m in Sources */, + CA7FD5C50E78DEFF919AEAEFD416D863 /* PromisesObjC-dummy.m in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - D8A01EF6AB869D8F85AF45F77DB1F91E /* Sources */ = { + C9B30535D66BD5B42D6FB650B440FE9A /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - BD9AAA74C25FA462A3212DCE26235846 /* FLALocalAuthPlugin.m in Sources */, - 75BD02F12160BE9F4A5200781F5AFEBF /* local_auth_darwin-dummy.m in Sources */, - EDFF2EA307E22A96AC1BD3008C64532B /* messages.g.m in Sources */, + 7AB53E70362C4E40AB3DE0702C0D28C4 /* GoogleToolboxForMac-dummy.m in Sources */, + BC535BE5CFBFEE7309B28C45E3CECFCA /* GTMLogger.m in Sources */, + CCC9BFE673CE33BA3E6FBE9D9A5EB0EB /* GTMNSData+zlib.m in Sources */, + E13603576F34624CC0ACD091818AAC02 /* GTMNSDictionary+URLArguments.m in Sources */, + 934F72728D31F59857FB527A63EC7569 /* GTMNSString+URLArguments.m in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - D8E12906C0F0D3D3D5083ECF6C14526D /* Sources */ = { + CF714EDBA170167501994B1F9BA39C52 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - D904C39944000EE8A64D893F5DCD6B67 /* Sources */ = { + D22B15CFA120D5B7215A62B25DC9A4B5 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - E270C88B0E98A25F9F0F85D9E332B438 /* Sources */ = { + D8A01EF6AB869D8F85AF45F77DB1F91E /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 440AC27DE65D9AA4C64F876B4B591FC2 /* nanopb-dummy.m in Sources */, - ADB68FD3570FE5DE2D312B5582D8BD4F /* pb_common.c in Sources */, - 2B6219F5F6D67D025CD72448DBC65087 /* pb_decode.c in Sources */, - 1A66EBB68F3D390BBB0E42AFCFE8EE92 /* pb_encode.c in Sources */, + 2168A6F6A1522A673D88CBC021A55BD3 /* FLALocalAuthPlugin.m in Sources */, + 75BD02F12160BE9F4A5200781F5AFEBF /* local_auth_darwin-dummy.m in Sources */, + 1CBD45EB6B66DA159538B8EB5EFF093A /* messages.g.m in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - E614B51773B14631A8D628A1B3F750E0 /* Sources */ = { + F2BE0C7001FBCEF024CCFD22540C54B4 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - EA31038957C8B369E6AADC88C25E4D4D /* Sources */ = { + F3D0F003A1962DF725D83D8EE3E37DC9 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - EB579F9B4BA039A630FC9D8509BFEA89 /* Sources */ = { + FABA19A1A7C9F64772B47800CB9BCD6C /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - DC95AC5E2542C29C60F4CE9B1036F201 /* GoogleUtilitiesComponents-dummy.m in Sources */, - 84D80F07768197ADC35541F3A9FD170F /* GULCCComponent.m in Sources */, - 9AEF11B76EFFC9A8656F8FB69EC253A3 /* GULCCComponentContainer.m in Sources */, - 7D2A68B4DB5742A4A5E3814A945E64C0 /* GULCCComponentType.m in Sources */, - 64BFCCF674A121CA9DBE02B265FF7262 /* GULCCDependency.m in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - F4DFF98140AA8E22E7BCEFB9264EBF9B /* Sources */ = { + FF3A46655263F831C85A65B07B13C6D5 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( + 09724DAD44E320E21A781574E315A3DC /* GoogleUtilitiesComponents-dummy.m in Sources */, + 1FD324DB1CD78CCB027F676B9EC97E55 /* GULCCComponent.m in Sources */, + 4295E0C6CA615423A4A057D367833CF0 /* GULCCComponentContainer.m in Sources */, + 5B99C3872BF52080CAC755449B197178 /* GULCCComponentType.m in Sources */, + 2060C7102B14A59C553A5BA18C7FB999 /* GULCCDependency.m in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; /* End PBXSourcesBuildPhase section */ /* Begin PBXTargetDependency section */ - 05F2B495AF77578AC5E421328D77254C /* PBXTargetDependency */ = { + 0C9BFD909C1FEE159F07043F73299D76 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "share_plus-share_plus_privacy"; - target = 18C1C89B0915365FEE8FAEB868A0B528 /* share_plus-share_plus_privacy */; - targetProxy = F69CB5988BF64B3F8A22B01FFBB74FC1 /* PBXContainerItemProxy */; + name = "path_provider_foundation-path_provider_foundation_privacy"; + target = CACE6618E7996464E38687E13F67D945 /* path_provider_foundation-path_provider_foundation_privacy */; + targetProxy = AF7C43777610F149721F1D41416AEBCF /* PBXContainerItemProxy */; }; - 0785E6B3ADC3274335D718F58B917FD0 /* PBXTargetDependency */ = { + 0E2F0DF640BE25CF18592BC0C4453B97 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = GoogleUtilities; - target = 8D7F5D5DD528D21A72DC87ADA5B12E2D /* GoogleUtilities */; - targetProxy = D8A2147C73A9374B80F14C719211D92D /* PBXContainerItemProxy */; + name = Flutter; + target = 1EFDDC32A34D56D411E640A81DCD9E73 /* Flutter */; + targetProxy = F04B76945BF9B4E08413C43500AE0130 /* PBXContainerItemProxy */; }; - 0BA3F56100CF7E89AC7EB25230E7E379 /* PBXTargetDependency */ = { + 0F967499BA34513540143B94C24F8806 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = flutter_email_sender; - target = 7BDA31252C374D565DC2DA0358CCAE26 /* flutter_email_sender */; - targetProxy = 5146CDADBF2065FEE88E65DFE190925F /* PBXContainerItemProxy */; + name = "sqflite-sqflite_darwin_privacy"; + target = 372F11AACD7D15808C1D95D42113A50C /* sqflite-sqflite_darwin_privacy */; + targetProxy = 2DF7803505382A5D9396AEAB8645A0CC /* PBXContainerItemProxy */; }; - 0C92BC4019A73094B1733E3456FEEC69 /* PBXTargetDependency */ = { + 14B76BAC87093BEFB2D8649781F1EEB3 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = MLImage; - target = BE3B5914C1194353E85796E3EE3CE245 /* MLImage */; - targetProxy = 5EA6DAD1E60D8BD2F61816D042DCD0F4 /* PBXContainerItemProxy */; + name = Flutter; + target = 1EFDDC32A34D56D411E640A81DCD9E73 /* Flutter */; + targetProxy = 7BB3B689E4E4CFB4A8458DEC038D5B7B /* PBXContainerItemProxy */; }; - 0DE996879C4043C383F2468F6E8B5980 /* PBXTargetDependency */ = { + 19AA589117CB572AD8892E1EFFBC8576 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = MLKitCommon; - target = 0A4338C5C8BD51549298BECF630A6D57 /* MLKitCommon */; - targetProxy = BE96CABDAAC00F9F4785762CA1BA4327 /* PBXContainerItemProxy */; + name = Flutter; + target = 1EFDDC32A34D56D411E640A81DCD9E73 /* Flutter */; + targetProxy = 7EEFB5906583F5218EF810534EF1CBDA /* PBXContainerItemProxy */; }; - 153168D6D3D441C6A1EC87E6298794BA /* PBXTargetDependency */ = { + 21EF996035FDA70E98B6A45EE7705575 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = url_launcher_ios; - target = DF45E85925DF410BE416B32171F59C1F /* url_launcher_ios */; - targetProxy = 0353EE80343FB41D8DCFB611E9C2A03C /* PBXContainerItemProxy */; + name = shared_preferences_foundation; + target = AB5EE685B22D01885ADD930538E8DD3C /* shared_preferences_foundation */; + targetProxy = AB9C6767A2E33E6242106AB736FFD400 /* PBXContainerItemProxy */; }; - 188607FF284563CDD6AAC493AFBA484B /* PBXTargetDependency */ = { + 2398DE9A42DCA1779117390F15FF6E2C /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = PromisesObjC; target = 2BBF7206D7FAC92C82A042A99C4A98F8 /* PromisesObjC */; - targetProxy = 8FC18A7F9675EFFE25400D51DA08E92C /* PBXContainerItemProxy */; + targetProxy = E9439B302E23DB31D8BAA14FD399760C /* PBXContainerItemProxy */; }; - 1FCCC77AF89F02C5F726A89146D73C9B /* PBXTargetDependency */ = { + 2ADA78D78381265B1DBCFF34388DB2A1 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "connectivity_plus-connectivity_plus_privacy"; - target = E2606E08328700D7777787BC6AC63822 /* connectivity_plus-connectivity_plus_privacy */; - targetProxy = 72036B246684FCD46FD8CD2C634C26A7 /* PBXContainerItemProxy */; + name = GoogleMLKit; + target = 6D46A1F6123B14449A2A1FC04011860D /* GoogleMLKit */; + targetProxy = D1EC6BDAB2ED7CB0333CB6B16FC1E3FF /* PBXContainerItemProxy */; }; - 2571B1453B8672E480BCD7AD43066FE9 /* PBXTargetDependency */ = { + 2B63282C820DA00CD49F1393D0855FA9 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = local_auth_darwin; - target = D6C082E212CF95C0098ED9BE0D488DB4 /* local_auth_darwin */; - targetProxy = EB9E7663D0C71AD8068FAB50831278A4 /* PBXContainerItemProxy */; + name = image_picker_ios; + target = 845DF30C6C93A1F35C6DCEBAFECA8F8A /* image_picker_ios */; + targetProxy = 4C271E5AC558834032CA671F66BFAE62 /* PBXContainerItemProxy */; }; - 258F453FD80BF517158E310EDE9725C0 /* PBXTargetDependency */ = { + 2C573AFB262FDA064E167921FAD689A4 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "local_auth_darwin-local_auth_darwin_privacy"; - target = 4A9CF14C8C6709FC3D3736F0F06E7DD9 /* local_auth_darwin-local_auth_darwin_privacy */; - targetProxy = 19FEFAA7CED6202C64FFCC27AA3C9DB8 /* PBXContainerItemProxy */; + name = "permission_handler_apple-permission_handler_apple_privacy"; + target = 517E8BED8B0E6D6FD078BD19B0A13893 /* permission_handler_apple-permission_handler_apple_privacy */; + targetProxy = 971D8C0D9BE69FBF98DFAD07865E044E /* PBXContainerItemProxy */; }; - 261E3CF00420EED45F0D60505A67E0C1 /* PBXTargetDependency */ = { + 31FD0DAEAD18355AD9FDB914AC84662D /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = GTMSessionFetcher; - target = D676E21115185671D7258A56944ABE98 /* GTMSessionFetcher */; - targetProxy = FDB50DD71104A33425F8F55220572B25 /* PBXContainerItemProxy */; + name = GoogleUtilitiesComponents; + target = A64F5725956770327D080E1EB31878EE /* GoogleUtilitiesComponents */; + targetProxy = 1196DE0B1F20F4EA5F16321496471D82 /* PBXContainerItemProxy */; }; - 29835A7A47A4B52B299553D2D550ED4F /* PBXTargetDependency */ = { + 3335174FE33CAFBF45004A557A96936C /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = MLKitCommon; + target = 0A4338C5C8BD51549298BECF630A6D57 /* MLKitCommon */; + targetProxy = EFB68DE4781A0831405F5E669F06B396 /* PBXContainerItemProxy */; + }; + 38D6D840730E62DC1D7F53F0E118BA43 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "image_picker_ios-image_picker_ios_privacy"; + target = A450BF39E3E5256209A256E278D71BFD /* image_picker_ios-image_picker_ios_privacy */; + targetProxy = 2979AAD977D91CF4F3A4BA5ADEF40AED /* PBXContainerItemProxy */; + }; + 3C4DF863D4C4217E2349D1570F476BF4 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "GoogleUtilities-GoogleUtilities_Privacy"; + target = 5FF1A58DEEC5DB749FCD6C120B97CC82 /* GoogleUtilities-GoogleUtilities_Privacy */; + targetProxy = 9373A0DA86B19F175A2A5CA70E200568 /* PBXContainerItemProxy */; + }; + 3F00052C871BE4AD4E785FB2A74ECC7F /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = GoogleUtilities; target = 8D7F5D5DD528D21A72DC87ADA5B12E2D /* GoogleUtilities */; - targetProxy = 445A4BE95799DE402D0E60316A908384 /* PBXContainerItemProxy */; + targetProxy = FAC7EE4BAA947D514C6ADA8385A5D7A3 /* PBXContainerItemProxy */; }; - 2AFDC892573580F8E71A13D3DD82658A /* PBXTargetDependency */ = { + 480969C8F64DAD8C979FCD63FEDF748D /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = GoogleToolboxForMac; - target = D47C581D39D227080F83B16A22A56664 /* GoogleToolboxForMac */; - targetProxy = 2E4FDEF5601867CE1DDF4A42490D0AC5 /* PBXContainerItemProxy */; + name = connectivity_plus; + target = FB5330FE6EBCAEA8B61DAC8F21917289 /* connectivity_plus */; + targetProxy = 499CF80D3399162854B3C66DD3DA5267 /* PBXContainerItemProxy */; }; - 32FBC40B4E6435A2B5982329D1201EF7 /* PBXTargetDependency */ = { + 48A766467D51F3A30F3EC001C5D972E7 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = sqflite; - target = 8CB181E0B90ABC017A42AB50FCF7A7E0 /* sqflite */; - targetProxy = 9F2C591211A5BDAECBA8FCAF066A2C58 /* PBXContainerItemProxy */; + name = Flutter; + target = 1EFDDC32A34D56D411E640A81DCD9E73 /* Flutter */; + targetProxy = 42416DB7FCBBE7A6EBC92AC374E46054 /* PBXContainerItemProxy */; }; - 3425FA337066B2E7CB3DFFE49F8DBAC8 /* PBXTargetDependency */ = { + 48B37A779C683379F6FA701ED7C9BFE6 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = Flutter; target = 1EFDDC32A34D56D411E640A81DCD9E73 /* Flutter */; - targetProxy = FE749CCDC2CF6E959B4C583FE24FD2BA /* PBXContainerItemProxy */; + targetProxy = ACA5AA265779F4B519EE5D96F022AE04 /* PBXContainerItemProxy */; }; - 360F0306914FD384EE366108BAEC2D5E /* PBXTargetDependency */ = { + 48C41B17BF0D107FEE52F652D8E95F9C /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "url_launcher_ios-url_launcher_ios_privacy"; - target = 43BE97C40504244259CF3C1D21E7EDB5 /* url_launcher_ios-url_launcher_ios_privacy */; - targetProxy = AD1D25582203B3F77CA472240F2B0158 /* PBXContainerItemProxy */; + name = share_plus; + target = 42A5F24E847029301BC47B4E68477322 /* share_plus */; + targetProxy = 3A859E3C6AC380FF953CB2059318C13E /* PBXContainerItemProxy */; }; - 381E969801262BDAF8542FB0EE4050CA /* PBXTargetDependency */ = { + 4961A9F689C9A0B37C83131403D12B61 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "flutter_native_splash-flutter_native_splash_privacy"; - target = F2B6B9861EE4A9DBEED3FFB7D06614D6 /* flutter_native_splash-flutter_native_splash_privacy */; - targetProxy = 38B8AE71E9D634697C3B6734C4ABAB13 /* PBXContainerItemProxy */; + name = MLKitBarcodeScanning; + target = 7EBF8091921DE5FE69E2062F2FAD948D /* MLKitBarcodeScanning */; + targetProxy = ED16B58FE98D7D009ED0043BA8E90FA2 /* PBXContainerItemProxy */; }; - 3AB35409A7860A98A93EEE9F3BC3658F /* PBXTargetDependency */ = { + 4A3E4E9F8D35CF73B8E240D173ECAF2D /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "GoogleUtilities-GoogleUtilities_Privacy"; - target = 5FF1A58DEEC5DB749FCD6C120B97CC82 /* GoogleUtilities-GoogleUtilities_Privacy */; - targetProxy = 31ABB3B8219071579A09D053C814C0A8 /* PBXContainerItemProxy */; + name = "share_plus-share_plus_privacy"; + target = 18C1C89B0915365FEE8FAEB868A0B528 /* share_plus-share_plus_privacy */; + targetProxy = A28C9F209A0F7399798995CA7D4A33D4 /* PBXContainerItemProxy */; }; - 3CC2F1CD431C83342A0E2D4ECE1BBE61 /* PBXTargetDependency */ = { + 4B759B818F81F90EC39A8D24AC0ADD36 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "path_provider_foundation-path_provider_foundation_privacy"; - target = CACE6618E7996464E38687E13F67D945 /* path_provider_foundation-path_provider_foundation_privacy */; - targetProxy = F92AEC97E47AE3DAAE6FD35DF48ECAFE /* PBXContainerItemProxy */; + name = "Sentry-Sentry"; + target = 97C36B3C576D3765DAAE4EA7AC1E9ADC /* Sentry-Sentry */; + targetProxy = 52A012B331952582EAA2496A03E009D5 /* PBXContainerItemProxy */; }; - 3E8A1B4F5BEA8AF0C81F22C65AD3D1D0 /* PBXTargetDependency */ = { + 55CD62A2F0AC52378635C1357F994F87 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = shared_preferences_foundation; - target = AB5EE685B22D01885ADD930538E8DD3C /* shared_preferences_foundation */; - targetProxy = E985927EE1ED9A2007AE5F3EBE9F8163 /* PBXContainerItemProxy */; + name = "GoogleDataTransport-GoogleDataTransport_Privacy"; + target = DD0D41A9315A48004E57F4F0E54095F1 /* GoogleDataTransport-GoogleDataTransport_Privacy */; + targetProxy = 5D4001FFFC4F92131434219584CD306A /* PBXContainerItemProxy */; + }; + 572CCC0FD120654FF755DC4B9291AFEB /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = local_auth_darwin; + target = D6C082E212CF95C0098ED9BE0D488DB4 /* local_auth_darwin */; + targetProxy = 1A65570148BE38540428FE1D0B1A4371 /* PBXContainerItemProxy */; }; - 3ED8804BF9C0F19D0797FEAC90F5E42A /* PBXTargetDependency */ = { + 5AC84ACE7AA2526823A2BFFBE788852F /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = Flutter; target = 1EFDDC32A34D56D411E640A81DCD9E73 /* Flutter */; - targetProxy = 9CE322CE584C05E3E13A62E692ABE89A /* PBXContainerItemProxy */; + targetProxy = 73B76180861BBDF1B6048A8F5F207CB3 /* PBXContainerItemProxy */; }; - 442E33D821B05563EE970B3BF448FA9F /* PBXTargetDependency */ = { + 5CCC7D3B0DBB808633FD3CD54082CAB6 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = flutter_secure_storage; - target = 15490FE8E4E35B20C7777FA3316A00AA /* flutter_secure_storage */; - targetProxy = A016D46258518C74CF5DE0B670DFEBED /* PBXContainerItemProxy */; + name = "flutter_secure_storage-flutter_secure_storage"; + target = BA5B0F40AD74C7512B1E4FD79F8F202F /* flutter_secure_storage-flutter_secure_storage */; + targetProxy = 04DD35A09E65486795616BADB6BE03F3 /* PBXContainerItemProxy */; }; - 44A52C2560D44D978F45B90152BD9A3C /* PBXTargetDependency */ = { + 5EE04BF9967F8C24A6C493034F05E7D5 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = flutter_native_splash; - target = 36DCFAF5755EC2D8A75B4F250108A359 /* flutter_native_splash */; - targetProxy = 5C66E3C327722FF7CE53FEAEAE61A048 /* PBXContainerItemProxy */; + name = MLImage; + target = BE3B5914C1194353E85796E3EE3CE245 /* MLImage */; + targetProxy = 77932F9DDCD728C9C25888A5502EE49A /* PBXContainerItemProxy */; }; - 4554D91714FC5FB512BAEC0195CC9D3E /* PBXTargetDependency */ = { + 5EEE91DEC5ABF6FF5B6331C5BA8BE73A /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = flutter_inappwebview; - target = 1FF87323EE36EEC3288ACC236433F23A /* flutter_inappwebview */; - targetProxy = 055638B82C8B5B01675DFAB53CBE7D71 /* PBXContainerItemProxy */; + name = PromisesObjC; + target = 2BBF7206D7FAC92C82A042A99C4A98F8 /* PromisesObjC */; + targetProxy = 6C71E82031F3A660E9FD2D47137B0623 /* PBXContainerItemProxy */; }; - 48CA97FA4FA4673C95CA10612D161F9D /* PBXTargetDependency */ = { + 627F123D213D793A1387E1AEE99E0E7C /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = Flutter; - target = 1EFDDC32A34D56D411E640A81DCD9E73 /* Flutter */; - targetProxy = AFEE50518625B57B28523BD6C179E7E0 /* PBXContainerItemProxy */; + name = OrderedSet; + target = 2F8410D3DA69756D81B1FE8C64A8ED4B /* OrderedSet */; + targetProxy = A0669ECC5033172E024EED872FAA8EC1 /* PBXContainerItemProxy */; }; - 4F947384B1A5FD670918D120CCCACECE /* PBXTargetDependency */ = { + 6397FDFBB27EAA986573AE218264A573 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = Flutter; - target = 1EFDDC32A34D56D411E640A81DCD9E73 /* Flutter */; - targetProxy = 398E32B304CEDFAC090C668338832383 /* PBXContainerItemProxy */; + name = GoogleUtilitiesComponents; + target = A64F5725956770327D080E1EB31878EE /* GoogleUtilitiesComponents */; + targetProxy = 92E4556B1EA39070E03B837D202FE46D /* PBXContainerItemProxy */; }; - 50C4E928BBFC0CE4317E2A761696A6BC /* PBXTargetDependency */ = { + 6D5EBDDD1C93C3D9DAF10129EAB15FB1 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = path_provider_foundation; - target = 56F581DDCB0A032454E604885E17AE3C /* path_provider_foundation */; - targetProxy = 5A9CB898E99919DDA66AD660AD1B523E /* PBXContainerItemProxy */; + name = PromisesObjC; + target = 2BBF7206D7FAC92C82A042A99C4A98F8 /* PromisesObjC */; + targetProxy = 77A5CFD86BE4D471780500BD05C1A47B /* PBXContainerItemProxy */; }; - 5DCC00B33F7D0382934C465FDDDAA46B /* PBXTargetDependency */ = { + 6ECC556CF29E9877D19EDE31F167AF15 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "package_info_plus-package_info_plus_privacy"; - target = 07C64B0E06ED7C1903D446F9BBDDF5C9 /* package_info_plus-package_info_plus_privacy */; - targetProxy = B62BCE76B4E71AEA99D35803E0905F46 /* PBXContainerItemProxy */; + name = GoogleToolboxForMac; + target = D47C581D39D227080F83B16A22A56664 /* GoogleToolboxForMac */; + targetProxy = A2484F16FDBBB2EF1E8DA2A35E3CF181 /* PBXContainerItemProxy */; }; - 5DFF086D578C1E2A2724261575EFF511 /* PBXTargetDependency */ = { + 706E17BA3B24F2DB88F672F03CA1A46A /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = GTMSessionFetcher; - target = D676E21115185671D7258A56944ABE98 /* GTMSessionFetcher */; - targetProxy = 28C38E06F505CAB1A3CAFD9B117989B2 /* PBXContainerItemProxy */; + name = MLKitVision; + target = F1D55369E4C8976F396F83588DAC03C4 /* MLKitVision */; + targetProxy = BA51409D1C54C5B5C07707C07D480EF6 /* PBXContainerItemProxy */; }; - 5EC5B1D108DB58FEC5B8F0B23CFD1330 /* PBXTargetDependency */ = { + 7324EDD8D63E8E8691A8C5900C9EAC30 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "permission_handler_apple-permission_handler_apple_privacy"; - target = 517E8BED8B0E6D6FD078BD19B0A13893 /* permission_handler_apple-permission_handler_apple_privacy */; - targetProxy = BEF49DF73E5C018E3B29C43B36EA31DC /* PBXContainerItemProxy */; + name = "flutter_native_splash-flutter_native_splash_privacy"; + target = F2B6B9861EE4A9DBEED3FFB7D06614D6 /* flutter_native_splash-flutter_native_splash_privacy */; + targetProxy = 4FB895446E29E9DFDBF86C50E471BAFC /* PBXContainerItemProxy */; }; - 5F86571D14B6998451306C61BF8AEB38 /* PBXTargetDependency */ = { + 74C85D6489F889753D9D5F9694816107 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = GoogleToolboxForMac; - target = D47C581D39D227080F83B16A22A56664 /* GoogleToolboxForMac */; - targetProxy = B6CD7E3325B74A5AB6A751A307C4FC98 /* PBXContainerItemProxy */; + name = flutter_native_splash; + target = 36DCFAF5755EC2D8A75B4F250108A359 /* flutter_native_splash */; + targetProxy = 1CD61A3D55D60945A6774FD968F7FF9C /* PBXContainerItemProxy */; }; - 67916631E49A0B13CFE1C333587B8CFA /* PBXTargetDependency */ = { + 766CDEE1E089BB5232443ECF50041211 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = GoogleUtilitiesComponents; - target = A64F5725956770327D080E1EB31878EE /* GoogleUtilitiesComponents */; - targetProxy = ACA6CDBB6C90B1175618C7F300786A9C /* PBXContainerItemProxy */; + name = Flutter; + target = 1EFDDC32A34D56D411E640A81DCD9E73 /* Flutter */; + targetProxy = 6D21D1A956DE1937AE75238883CEDA8B /* PBXContainerItemProxy */; }; - 6FCC2152E6275B06719092EF88BEE1ED /* PBXTargetDependency */ = { + 77F41AA5D08A9672B4FEFFC84AD4211B /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = Flutter; target = 1EFDDC32A34D56D411E640A81DCD9E73 /* Flutter */; - targetProxy = F5CDC9DAF502DEAF71FC4D19662B5C87 /* PBXContainerItemProxy */; + targetProxy = 307EE4EAEB0B4D2677BF8C77D138C061 /* PBXContainerItemProxy */; }; - 709F3C63E935039700E2041B0427FD6E /* PBXTargetDependency */ = { + 7ADE171916DA044908B5B487E25E930E /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = Sentry; - target = 94BDCD90B52278D1FB244A66E8B95A4A /* Sentry */; - targetProxy = B04DFE15073279C03439E6FA3DFFEF83 /* PBXContainerItemProxy */; + name = "connectivity_plus-connectivity_plus_privacy"; + target = E2606E08328700D7777787BC6AC63822 /* connectivity_plus-connectivity_plus_privacy */; + targetProxy = 78D76378D5AA183B250767F3909DE8F6 /* PBXContainerItemProxy */; }; - 72A49CF961AAA39FA9378119571F6F13 /* PBXTargetDependency */ = { + 7C3FDC62F0845C3111EFB80374B74481 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = permission_handler_apple; - target = A45E503409C9530E1F5D12C293F4BD67 /* permission_handler_apple */; - targetProxy = 296A150A64F13DA09ABFBEAA70D980BE /* PBXContainerItemProxy */; + name = flutter_email_sender; + target = 7BDA31252C374D565DC2DA0358CCAE26 /* flutter_email_sender */; + targetProxy = E81B376DB9A242CF0172B10802DFEF5B /* PBXContainerItemProxy */; }; - 7B29D759E1BAAE2D81A4527259DBA19D /* PBXTargetDependency */ = { + 7D3251C3FA18A9EE1F804AA698F06461 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = MLKitVision; - target = F1D55369E4C8976F396F83588DAC03C4 /* MLKitVision */; - targetProxy = 66F16C2AFD99F2F5D74E253EBFF0759A /* PBXContainerItemProxy */; + name = flutter_inappwebview; + target = 1FF87323EE36EEC3288ACC236433F23A /* flutter_inappwebview */; + targetProxy = 588767973E1360CD76AB4EDB194DA9D4 /* PBXContainerItemProxy */; }; - 7C9274491CD3E54F987F0D2F71282645 /* PBXTargetDependency */ = { + 7DFDF5BF12A1C771E8FBB753AD207B55 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "flutter_email_sender-flutter_email_sender"; - target = EE702F5C28052C5D194A34199665DB90 /* flutter_email_sender-flutter_email_sender */; - targetProxy = 1022D4243219587DF33E2C21B6211624 /* PBXContainerItemProxy */; + name = "nanopb-nanopb_Privacy"; + target = 55522A91938FF505CFEBEAD2DD85AE2D /* nanopb-nanopb_Privacy */; + targetProxy = AA3186EF1E066E63EB6DAD30AA99A168 /* PBXContainerItemProxy */; }; - 7D1405114B63F91F4A67B5351005E9D5 /* PBXTargetDependency */ = { + 81512204B9D245A87F22AB3365D91680 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "shared_preferences_foundation-shared_preferences_foundation_privacy"; - target = B6AF8B7CEAF6321719ABBC7E770624DA /* shared_preferences_foundation-shared_preferences_foundation_privacy */; - targetProxy = B2E7CED5C34D64B3B5651E8CCD99CDF0 /* PBXContainerItemProxy */; + name = GTMSessionFetcher; + target = D676E21115185671D7258A56944ABE98 /* GTMSessionFetcher */; + targetProxy = C88DBF4769B48631CFFA90D079D70BCA /* PBXContainerItemProxy */; }; - 8159EDC2A8234EF4DF59772963BBFBFF /* PBXTargetDependency */ = { + 8395B24B37872950E15E2DAC67B72E31 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = Flutter; - target = 1EFDDC32A34D56D411E640A81DCD9E73 /* Flutter */; - targetProxy = 92F9B66A3015D43B9F4DE5D26C42C428 /* PBXContainerItemProxy */; + name = MLImage; + target = BE3B5914C1194353E85796E3EE3CE245 /* MLImage */; + targetProxy = 493120931549D28E77797BA495D43D5B /* PBXContainerItemProxy */; }; - 822D9C80E4429A7E89351EAF23498A40 /* PBXTargetDependency */ = { + 8681F2AFBA63BA04EBD7D50A6236EFC0 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = Flutter; - target = 1EFDDC32A34D56D411E640A81DCD9E73 /* Flutter */; - targetProxy = A33892DF5E21C341D3734E9DD6C3DF7D /* PBXContainerItemProxy */; + name = permission_handler_apple; + target = A45E503409C9530E1F5D12C293F4BD67 /* permission_handler_apple */; + targetProxy = 602564CDE1695DC228719DB0B061752F /* PBXContainerItemProxy */; }; - 849680F96107003475AC58B1878D6266 /* PBXTargetDependency */ = { + 89C779FFF99B7981D82C97DD54B51B75 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = Flutter; - target = 1EFDDC32A34D56D411E640A81DCD9E73 /* Flutter */; - targetProxy = 8DEBA88B8B4905B04B33C3957C54DE86 /* PBXContainerItemProxy */; + name = path_provider_foundation; + target = 56F581DDCB0A032454E604885E17AE3C /* path_provider_foundation */; + targetProxy = 6C863CF60FED9A4921DCEF4101900EDB /* PBXContainerItemProxy */; }; - 8505BF9C9538AB77F6AFECDEBFFD055F /* PBXTargetDependency */ = { + 8C8E1F12642416DA1A2B5B48318DE7C0 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = PromisesObjC; - target = 2BBF7206D7FAC92C82A042A99C4A98F8 /* PromisesObjC */; - targetProxy = 3888AB0E0C694326EF1D9ADBAD31B65D /* PBXContainerItemProxy */; + name = Flutter; + target = 1EFDDC32A34D56D411E640A81DCD9E73 /* Flutter */; + targetProxy = 38CFFD3C8E24E66A31DE5E578B98E6E9 /* PBXContainerItemProxy */; }; - 8550CCBB631DB7321F2CCD048FE2E6C2 /* PBXTargetDependency */ = { + 8CA3B9611CA36EF9AC9D8FEBAF857A9B /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = Sentry; - target = 94BDCD90B52278D1FB244A66E8B95A4A /* Sentry */; - targetProxy = 1DFF5493AB0E89EF2F14D862ADA7F189 /* PBXContainerItemProxy */; + name = flutter_secure_storage; + target = 15490FE8E4E35B20C7777FA3316A00AA /* flutter_secure_storage */; + targetProxy = 0232CCA234934EC5AA5070A622E38CC6 /* PBXContainerItemProxy */; }; - 900156C58460564F92A6BD32288D3E37 /* PBXTargetDependency */ = { + 8E59358F4C77B16A240F2394DC9B6CEF /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = MLKitBarcodeScanning; - target = 7EBF8091921DE5FE69E2062F2FAD948D /* MLKitBarcodeScanning */; - targetProxy = 214B54ADE41596BA620BF2F7029D0192 /* PBXContainerItemProxy */; + name = integration_test; + target = ADE86197C9EC7D5D7AB212E24AE13395 /* integration_test */; + targetProxy = 075468C24C4BE235299A9ADC610AC9B2 /* PBXContainerItemProxy */; }; - 90147EFC1DBCE25D0A22D15D1D9E7C2E /* PBXTargetDependency */ = { + 968E78C1D3564891A3E1701B27EBB03F /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = flutter_keyboard_visibility; - target = B51E4F66CC7B565B582B2DD8C9C86AC3 /* flutter_keyboard_visibility */; - targetProxy = B18F2FC52B95051106694BDB035ABF31 /* PBXContainerItemProxy */; + name = "flutter_email_sender-flutter_email_sender"; + target = EE702F5C28052C5D194A34199665DB90 /* flutter_email_sender-flutter_email_sender */; + targetProxy = 3AD26EAADF08A02E5B3A96614EDF8160 /* PBXContainerItemProxy */; }; - 94399221FFD0CD212CB85EE9DB69EEFE /* PBXTargetDependency */ = { + 9A0582B5C37F651DEFC49993A1E421AB /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = integration_test; - target = ADE86197C9EC7D5D7AB212E24AE13395 /* integration_test */; - targetProxy = 334D4D8CE272C3E66480F774AB5E0EC0 /* PBXContainerItemProxy */; + name = "shared_preferences_foundation-shared_preferences_foundation_privacy"; + target = B6AF8B7CEAF6321719ABBC7E770624DA /* shared_preferences_foundation-shared_preferences_foundation_privacy */; + targetProxy = A91FAE50762FDBD59D90BCE4C8CE025C /* PBXContainerItemProxy */; }; - 967522F803935A83B985C8299B27DCA2 /* PBXTargetDependency */ = { + 9C689FB8DB8D8BB3C461C125C37F0A97 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "Sentry-Sentry"; - target = 97C36B3C576D3765DAAE4EA7AC1E9ADC /* Sentry-Sentry */; - targetProxy = 285BB6BC38E18481C4C20CFFFF67A641 /* PBXContainerItemProxy */; + name = OrderedSet; + target = 2F8410D3DA69756D81B1FE8C64A8ED4B /* OrderedSet */; + targetProxy = 259B85F5939486DC0984DE75759B7B96 /* PBXContainerItemProxy */; }; - 96B7F2EDC9D538169153CF228AF3B02F /* PBXTargetDependency */ = { + 9EF58CE70C273068CFDDA38BC096EBC2 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = nanopb; - target = D2B5E7DCCBBFB32341D857D01211A1A3 /* nanopb */; - targetProxy = 5DFA46A17A6D6E198074DDE66C2726AC /* PBXContainerItemProxy */; + name = flutter_keyboard_visibility; + target = B51E4F66CC7B565B582B2DD8C9C86AC3 /* flutter_keyboard_visibility */; + targetProxy = AEE5C9EE94BA09F3906DE74A5D1277FB /* PBXContainerItemProxy */; }; - 9A3BAFF7611E3AF548B94DB55072D0FC /* PBXTargetDependency */ = { + A4DA6EBE44CE845DF3C50079919301AD /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = Flutter; - target = 1EFDDC32A34D56D411E640A81DCD9E73 /* Flutter */; - targetProxy = 7E465A8BFF419D09F75B37E6FBC93D8A /* PBXContainerItemProxy */; + name = "local_auth_darwin-local_auth_darwin_privacy"; + target = 4A9CF14C8C6709FC3D3736F0F06E7DD9 /* local_auth_darwin-local_auth_darwin_privacy */; + targetProxy = 876EBD9017D62EE6FE1E762503170094 /* PBXContainerItemProxy */; }; - 9D7A2C471648FB514E243C8C97A54A29 /* PBXTargetDependency */ = { + A5A336B12A05E681A7591F4CC0DE55FE /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = GoogleUtilities; - target = 8D7F5D5DD528D21A72DC87ADA5B12E2D /* GoogleUtilities */; - targetProxy = 386FAC0633811B2564BD2070764B6B52 /* PBXContainerItemProxy */; + name = GoogleToolboxForMac; + target = D47C581D39D227080F83B16A22A56664 /* GoogleToolboxForMac */; + targetProxy = 3BD10BD052D0A692E10693B518CDC62E /* PBXContainerItemProxy */; }; - 9DA8C3D1064755315A55FB3D3C140641 /* PBXTargetDependency */ = { + AA1F6692717A5B99C82FB11802495FDB /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "nanopb-nanopb_Privacy"; - target = 55522A91938FF505CFEBEAD2DD85AE2D /* nanopb-nanopb_Privacy */; - targetProxy = FDE20ACC668F1923F8A024FA9AD24061 /* PBXContainerItemProxy */; + name = MLKitCommon; + target = 0A4338C5C8BD51549298BECF630A6D57 /* MLKitCommon */; + targetProxy = 919DBF3B018EBC674CC9E45A1649F9CB /* PBXContainerItemProxy */; }; - 9F1F751A03BC05E1699D43871454CCCE /* PBXTargetDependency */ = { + AAFD5FA60340BD8C0026646CE1D842B8 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "flutter_secure_storage-flutter_secure_storage"; - target = BA5B0F40AD74C7512B1E4FD79F8F202F /* flutter_secure_storage-flutter_secure_storage */; - targetProxy = C5CD999108E806322AE2DF9D80CDBE1A /* PBXContainerItemProxy */; + name = mobile_scanner; + target = C8013ADE865DC3567779C6C9857CE526 /* mobile_scanner */; + targetProxy = DB976C5D3912EDDE5B3079C58031330D /* PBXContainerItemProxy */; }; - A02318C1E93B6C159C04B124742C0D71 /* PBXTargetDependency */ = { + ABF983591306EEC9AE39EC61C6453A2F /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = MLKitCommon; target = 0A4338C5C8BD51549298BECF630A6D57 /* MLKitCommon */; - targetProxy = 5A9C6B596ED506AAA3BB3647CD6F6F3C /* PBXContainerItemProxy */; + targetProxy = A7630DCB356D56A29F4E3031E8F520FA /* PBXContainerItemProxy */; }; - A730676990E69B336AB8E65EAD6BFF44 /* PBXTargetDependency */ = { + AD93C4C2C75A999E02C8404405778A78 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = Flutter; target = 1EFDDC32A34D56D411E640A81DCD9E73 /* Flutter */; - targetProxy = B3347FD1B402B50D778833973364E557 /* PBXContainerItemProxy */; + targetProxy = 5DA790B54EFC3647CE8959706BFF7F8A /* PBXContainerItemProxy */; }; - A868694855BBCCE36038066CDDFAAFD5 /* PBXTargetDependency */ = { + B09B38EE8D196A71ED054A732F88A861 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = Flutter; target = 1EFDDC32A34D56D411E640A81DCD9E73 /* Flutter */; - targetProxy = E7F5DB95685F9179E4DDDF254E2A4258 /* PBXContainerItemProxy */; - }; - ABD05C8F36AE71E9211C09AB142A2728 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = GTMSessionFetcher; - target = D676E21115185671D7258A56944ABE98 /* GTMSessionFetcher */; - targetProxy = F0CBDA6406C10538D686DBFD16F8328B /* PBXContainerItemProxy */; + targetProxy = 3386FDB86731D30BD23581A82A99259D /* PBXContainerItemProxy */; }; - AE3BF5A94AD8915A33E175AFD46F2616 /* PBXTargetDependency */ = { + B20596A6DB4012B56D9AFE3D280B28B4 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "image_picker_ios-image_picker_ios_privacy"; - target = A450BF39E3E5256209A256E278D71BFD /* image_picker_ios-image_picker_ios_privacy */; - targetProxy = CE271EF8229DEC11F93E65136C893354 /* PBXContainerItemProxy */; + name = GoogleUtilities; + target = 8D7F5D5DD528D21A72DC87ADA5B12E2D /* GoogleUtilities */; + targetProxy = 97D4C64CDB30D1AF9EFDA77D60A8D631 /* PBXContainerItemProxy */; }; - B01CAFE5562A65EA051E8326ABCEB44C /* PBXTargetDependency */ = { + B37AFEC8B4C8FF01891F2B4F584A505D /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "PromisesObjC-FBLPromises_Privacy"; - target = 1BFBEDBF7E03729D43C96530EE190825 /* PromisesObjC-FBLPromises_Privacy */; - targetProxy = 673445DDB22501CDEAC75FE59AFA0E14 /* PBXContainerItemProxy */; + name = MLKitVision; + target = F1D55369E4C8976F396F83588DAC03C4 /* MLKitVision */; + targetProxy = 270CA702C03078934702AD9EC095E056 /* PBXContainerItemProxy */; }; - B19D2D749AD36FBD34A41DB109D2E65C /* PBXTargetDependency */ = { + B441D9053D8E7103BA067991761FA88D /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = GoogleDataTransport; - target = 5C0371EE948D0357B8EE0E34ABB44BF0 /* GoogleDataTransport */; - targetProxy = 02D50E89E48B7EAEADE1324331AFC7C9 /* PBXContainerItemProxy */; + name = MLKitBarcodeScanning; + target = 7EBF8091921DE5FE69E2062F2FAD948D /* MLKitBarcodeScanning */; + targetProxy = 06FA9DCBFBAC9D5DD1FDF163181113F5 /* PBXContainerItemProxy */; }; - B8C06B81D2119F6C7F15F087F077BFC6 /* PBXTargetDependency */ = { + B5206CC51A0DFEECE326CEC476304A02 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = Flutter; - target = 1EFDDC32A34D56D411E640A81DCD9E73 /* Flutter */; - targetProxy = E9D1629C7F57D312141447841E434B09 /* PBXContainerItemProxy */; + name = "package_info_plus-package_info_plus_privacy"; + target = 07C64B0E06ED7C1903D446F9BBDDF5C9 /* package_info_plus-package_info_plus_privacy */; + targetProxy = 4F7CE46239B7BC406D5197C05877CB42 /* PBXContainerItemProxy */; }; - BA13F1DB49C81A26A0FE84A5C1D88C50 /* PBXTargetDependency */ = { + B9A84A6B433CAF520DC132063F1B07D6 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = mobile_scanner; - target = C8013ADE865DC3567779C6C9857CE526 /* mobile_scanner */; - targetProxy = 7948FF0F67923D2ED688DC354FC37EF0 /* PBXContainerItemProxy */; + name = Sentry; + target = 94BDCD90B52278D1FB244A66E8B95A4A /* Sentry */; + targetProxy = C422C26A292778DA1031225728462CCB /* PBXContainerItemProxy */; }; - BDF3583DA9CD75DB9D80A959862CC57E /* PBXTargetDependency */ = { + BB1A10B5153707CA6413B71607CC7C43 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = share_plus; - target = 42A5F24E847029301BC47B4E68477322 /* share_plus */; - targetProxy = D24D3E679374020FA5606113BFBBC725 /* PBXContainerItemProxy */; + name = url_launcher_ios; + target = DF45E85925DF410BE416B32171F59C1F /* url_launcher_ios */; + targetProxy = 496A7F17F50C6AFE376999564119C2A3 /* PBXContainerItemProxy */; }; - C6EAA9D83C51851CCB77C63019E39872 /* PBXTargetDependency */ = { + BCDF50201ADCE45634E2F97DA26E7E98 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = package_info_plus; - target = 54A00AF9F830F355D8FD8F6A4387F6A2 /* package_info_plus */; - targetProxy = 965458318B26D07E847DAEB38DE0543A /* PBXContainerItemProxy */; + name = nanopb; + target = D2B5E7DCCBBFB32341D857D01211A1A3 /* nanopb */; + targetProxy = 6F7BE719B002BF3564F285306D0AE0DA /* PBXContainerItemProxy */; }; - C87C5BB14A394D8FB33D72D82F20D287 /* PBXTargetDependency */ = { + BF5E1038D745EC1C589E29AE3E3CAFBB /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = OrderedSet; - target = 2F8410D3DA69756D81B1FE8C64A8ED4B /* OrderedSet */; - targetProxy = C3D0A47C0D926C3CFD351F5998F9BC48 /* PBXContainerItemProxy */; + name = GTMSessionFetcher; + target = D676E21115185671D7258A56944ABE98 /* GTMSessionFetcher */; + targetProxy = 0AE3CD90582DE8EF698CD8843C577AB5 /* PBXContainerItemProxy */; }; - CB94AF4968C28568884E6F54828B9394 /* PBXTargetDependency */ = { + C39173387B4A3DE77FF429C5BE5847EE /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "GoogleDataTransport-GoogleDataTransport_Privacy"; - target = DD0D41A9315A48004E57F4F0E54095F1 /* GoogleDataTransport-GoogleDataTransport_Privacy */; - targetProxy = 81B5AF5008588295AC301A561E09476B /* PBXContainerItemProxy */; + name = GTMSessionFetcher; + target = D676E21115185671D7258A56944ABE98 /* GTMSessionFetcher */; + targetProxy = 5DF30CEAE5B596920F55709F082C9B55 /* PBXContainerItemProxy */; }; - CC30B82BF03A5A37C2DE4E52B2460B09 /* PBXTargetDependency */ = { + C5C35F0A4540E5C7F924DDEB4FA7E966 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = Flutter; target = 1EFDDC32A34D56D411E640A81DCD9E73 /* Flutter */; - targetProxy = 32936239E61CB2DF85C66FFD3E384D5C /* PBXContainerItemProxy */; + targetProxy = 3D99CA2591D1260D973B5D494D29AAF6 /* PBXContainerItemProxy */; }; - CCB3DB0D04012288F7DD8003B59AAE81 /* PBXTargetDependency */ = { + C5D33B485E32C9754EA65271D984A4B8 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = OrderedSet; - target = 2F8410D3DA69756D81B1FE8C64A8ED4B /* OrderedSet */; - targetProxy = 71B9E8FB2F1C443080DC3C49E8FFF57E /* PBXContainerItemProxy */; + name = "PromisesObjC-FBLPromises_Privacy"; + target = 1BFBEDBF7E03729D43C96530EE190825 /* PromisesObjC-FBLPromises_Privacy */; + targetProxy = AEDB46EAD5861920B82331A00EBF1EFD /* PBXContainerItemProxy */; }; - CF37E7576448CF68094CA2776E07F5DF /* PBXTargetDependency */ = { + CA9622702DDDFFC0212CB61D859BB93E /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = MLKitCommon; - target = 0A4338C5C8BD51549298BECF630A6D57 /* MLKitCommon */; - targetProxy = E81270407F57BF1070645E09C065A90D /* PBXContainerItemProxy */; + name = "url_launcher_ios-url_launcher_ios_privacy"; + target = 43BE97C40504244259CF3C1D21E7EDB5 /* url_launcher_ios-url_launcher_ios_privacy */; + targetProxy = D3E9BE821748FF58822CD7E1E964E716 /* PBXContainerItemProxy */; }; - D05CE60B9D57A0CDD0360C34501B452F /* PBXTargetDependency */ = { + CCD724E2AE9E83FA77DF723B895116B5 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = Flutter; - target = 1EFDDC32A34D56D411E640A81DCD9E73 /* Flutter */; - targetProxy = CC4E6A49E7152FF52C2646DB64FDEB7C /* PBXContainerItemProxy */; + name = sentry_flutter; + target = 9EE77E86DCDBAE9BB534B34A87623C77 /* sentry_flutter */; + targetProxy = 13E117BB32051E80621313C586E2A0B5 /* PBXContainerItemProxy */; }; - D3870D777C0ADD80A592E586E682DC4F /* PBXTargetDependency */ = { + CFED887BF35AEDC366467AE3735D8E35 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = Flutter; target = 1EFDDC32A34D56D411E640A81DCD9E73 /* Flutter */; - targetProxy = E23AE9500794488AFDC192D8A8C9B436 /* PBXContainerItemProxy */; - }; - D880D813650944C358C24A3758036999 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = sentry_flutter; - target = 9EE77E86DCDBAE9BB534B34A87623C77 /* sentry_flutter */; - targetProxy = 324C160B2D42094D7DAC2131A939526A /* PBXContainerItemProxy */; + targetProxy = C93A5F3825795809A6E4EAB87E3B6EF5 /* PBXContainerItemProxy */; }; - D9B5AC9E4E52B2696886751075EE456E /* PBXTargetDependency */ = { + D0475A91BA174C9FE2253FA120414930 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = nanopb; target = D2B5E7DCCBBFB32341D857D01211A1A3 /* nanopb */; - targetProxy = ED40CB557E6AE0E973DB24315D16165E /* PBXContainerItemProxy */; + targetProxy = 123FEF49DD4E821320C99AFC63E8FA72 /* PBXContainerItemProxy */; }; - DC05E4DE9D6A4BBA6E494B36F273B888 /* PBXTargetDependency */ = { + D1F670E97383C060910730372E78265B /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = GoogleUtilitiesComponents; - target = A64F5725956770327D080E1EB31878EE /* GoogleUtilitiesComponents */; - targetProxy = BE68FC20AE47AC4D501A28E4F93D8AD6 /* PBXContainerItemProxy */; + name = GoogleDataTransport; + target = 5C0371EE948D0357B8EE0E34ABB44BF0 /* GoogleDataTransport */; + targetProxy = BD4E49FCE4E8A6D8F2AC7719695D6800 /* PBXContainerItemProxy */; }; - DDD1EB1FC2CB9BF1469AA4B530B99E21 /* PBXTargetDependency */ = { + D28A0F423084E9E9F434416650BC2F34 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = Flutter; - target = 1EFDDC32A34D56D411E640A81DCD9E73 /* Flutter */; - targetProxy = 2679B37BDB1B1C68EFEBFB2A469BA737 /* PBXContainerItemProxy */; + name = GoogleUtilities; + target = 8D7F5D5DD528D21A72DC87ADA5B12E2D /* GoogleUtilities */; + targetProxy = 335CDF0484B33931D38ED0E9AE199678 /* PBXContainerItemProxy */; }; - E3554AB932F1ED713DD0DFF1F1234E20 /* PBXTargetDependency */ = { + D6FD12518A8FBD6BB68BCB77C9EA21BB /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = Flutter; - target = 1EFDDC32A34D56D411E640A81DCD9E73 /* Flutter */; - targetProxy = 0C5FBF045A03B3C3D742533442B24B07 /* PBXContainerItemProxy */; + name = GoogleDataTransport; + target = 5C0371EE948D0357B8EE0E34ABB44BF0 /* GoogleDataTransport */; + targetProxy = 0F74205F431F66CED9C42EEF1445F268 /* PBXContainerItemProxy */; }; - E38E63C2EE009DDB8677D5259FEF3647 /* PBXTargetDependency */ = { + D794D6D8CA0F1F16267BC642A057C56D /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = flutter_nekoton_bridge; target = A89B444A66B39759D9A7920AF442F69C /* flutter_nekoton_bridge */; - targetProxy = D692069573DA3C66508B48CB0D34E983 /* PBXContainerItemProxy */; + targetProxy = 9FF8DA050080E6724E722E1766EC476E /* PBXContainerItemProxy */; }; - E765EE21FADA10374F26FEA00CA9CB3B /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = image_picker_ios; - target = 845DF30C6C93A1F35C6DCEBAFECA8F8A /* image_picker_ios */; - targetProxy = 4C05A8EFB7890815267A70F623DC2CDC /* PBXContainerItemProxy */; - }; - E775E5EF5B0E37A302039E02D0565E28 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = connectivity_plus; - target = FB5330FE6EBCAEA8B61DAC8F21917289 /* connectivity_plus */; - targetProxy = 699E3FE4C0F92786327616B80C77DF41 /* PBXContainerItemProxy */; - }; - E7D7FB794F2C05CBFE9A5A1E5726FB7B /* PBXTargetDependency */ = { + DAFF25E7AB74E07201B4507DFAA7FA08 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = Flutter; target = 1EFDDC32A34D56D411E640A81DCD9E73 /* Flutter */; - targetProxy = 6A3BDC3C53645DFD773816A3FEA544DD /* PBXContainerItemProxy */; + targetProxy = 79D281A5B4C65F5342E424F6AD296688 /* PBXContainerItemProxy */; }; - E95463F127BA1837E34C9CBF087E5505 /* PBXTargetDependency */ = { + DD97D80B7218B5C9466D285A63983438 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = GoogleToolboxForMac; - target = D47C581D39D227080F83B16A22A56664 /* GoogleToolboxForMac */; - targetProxy = F1B88DC0E2FFA9717A495B5705595C41 /* PBXContainerItemProxy */; + name = GoogleUtilities; + target = 8D7F5D5DD528D21A72DC87ADA5B12E2D /* GoogleUtilities */; + targetProxy = 1B5A82AC0379CE43EEC7A934A943B8A0 /* PBXContainerItemProxy */; }; - E9F3B44F694E6E7A28E9A407B686D4B7 /* PBXTargetDependency */ = { + E255B94B0C91EF036590D8FABCEBABE0 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = GoogleMLKit; - target = 6D46A1F6123B14449A2A1FC04011860D /* GoogleMLKit */; - targetProxy = 413435551FDDED5F56656A9337AE7380 /* PBXContainerItemProxy */; + name = sqflite; + target = 8CB181E0B90ABC017A42AB50FCF7A7E0 /* sqflite */; + targetProxy = E683CF7BE94AB5B608FEE737F6AFD06F /* PBXContainerItemProxy */; }; - EA822EB0C39C4F8EE1738A847D153386 /* PBXTargetDependency */ = { + E5F4636D4A401EA0B0B1DD196DAB7568 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = GoogleDataTransport; - target = 5C0371EE948D0357B8EE0E34ABB44BF0 /* GoogleDataTransport */; - targetProxy = 7D973A7243E988E3FFFD95A0CEE1B0E7 /* PBXContainerItemProxy */; + name = MLKitCommon; + target = 0A4338C5C8BD51549298BECF630A6D57 /* MLKitCommon */; + targetProxy = BF76239543C0685EE492A0FB064B4C9D /* PBXContainerItemProxy */; }; - EBA9B6A97DCA0B23391080C8635254B5 /* PBXTargetDependency */ = { + E7DB68AEA985A4CC88A02BD3520902B1 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = GoogleUtilities; - target = 8D7F5D5DD528D21A72DC87ADA5B12E2D /* GoogleUtilities */; - targetProxy = 16C54CD278CB3002CD7BE80472FE91D5 /* PBXContainerItemProxy */; + name = GoogleToolboxForMac; + target = D47C581D39D227080F83B16A22A56664 /* GoogleToolboxForMac */; + targetProxy = 878F2050EB3E61DFECA773793DEBFC8E /* PBXContainerItemProxy */; }; - EDF28CE9F75726F67F62EB815901C1D9 /* PBXTargetDependency */ = { + E85118B267592E1A428C4AC65F0C7DFB /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "sqflite-sqflite_darwin_privacy"; - target = 372F11AACD7D15808C1D95D42113A50C /* sqflite-sqflite_darwin_privacy */; - targetProxy = A99974E12BB9FB510FDA42DD504FF4C6 /* PBXContainerItemProxy */; + name = Flutter; + target = 1EFDDC32A34D56D411E640A81DCD9E73 /* Flutter */; + targetProxy = 0842C4A8660D63C56CA60DB7171A5891 /* PBXContainerItemProxy */; }; - EF0C7E3B162369214F0FC57ADBDB9B2A /* PBXTargetDependency */ = { + EBDB7282FE2738838DD0546221EE1B0F /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = MLKitCommon; - target = 0A4338C5C8BD51549298BECF630A6D57 /* MLKitCommon */; - targetProxy = 171CDF2A242FC54BD49B538A29619DA3 /* PBXContainerItemProxy */; + name = Flutter; + target = 1EFDDC32A34D56D411E640A81DCD9E73 /* Flutter */; + targetProxy = A2DFBB093C5DF100BF5989CD2187A66C /* PBXContainerItemProxy */; }; - F0C2BD2D6CBEC148CDBF594D5F789B2E /* PBXTargetDependency */ = { + EECE19B712466F5A4BCB3B0923C8D73C /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = Flutter; target = 1EFDDC32A34D56D411E640A81DCD9E73 /* Flutter */; - targetProxy = 9A535C1B476B1D43F67A397C9ECEE335 /* PBXContainerItemProxy */; + targetProxy = 5B50635B2B92E1F213A78797605E200B /* PBXContainerItemProxy */; }; - F310AB62EF0B25B50FE4D524534AFF11 /* PBXTargetDependency */ = { + F283B80DEE183C34ED413CE30CAD5FD3 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = MLKitVision; - target = F1D55369E4C8976F396F83588DAC03C4 /* MLKitVision */; - targetProxy = 4077CB9D56D6057417552114ACA7F0F2 /* PBXContainerItemProxy */; + name = GoogleMLKit; + target = 6D46A1F6123B14449A2A1FC04011860D /* GoogleMLKit */; + targetProxy = 22E78FF54504F0B0562DB37BD7D2220E /* PBXContainerItemProxy */; }; - F43A5657C3D186A548BD49EDA0C4135D /* PBXTargetDependency */ = { + FA31167B771CEC81983CC70BED828D4F /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = MLKitBarcodeScanning; - target = 7EBF8091921DE5FE69E2062F2FAD948D /* MLKitBarcodeScanning */; - targetProxy = A72E5ADFA5DEA4641A42D5C91A1098B9 /* PBXContainerItemProxy */; + name = package_info_plus; + target = 54A00AF9F830F355D8FD8F6A4387F6A2 /* package_info_plus */; + targetProxy = 5688B35CACA7CEB88D1567802DD83634 /* PBXContainerItemProxy */; }; - FA0908B85B1373E1EFB66D8F38F590EA /* PBXTargetDependency */ = { + FB53C34EFAAECA606B7E310D6D3AE14B /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = MLImage; - target = BE3B5914C1194353E85796E3EE3CE245 /* MLImage */; - targetProxy = 4E2E1DC5C47D6CCA8AAB4F879C418507 /* PBXContainerItemProxy */; + name = Flutter; + target = 1EFDDC32A34D56D411E640A81DCD9E73 /* Flutter */; + targetProxy = 834FD93338E9F23211EEFAAAC203C50A /* PBXContainerItemProxy */; }; - FA84672301181161BD823493A867ECB0 /* PBXTargetDependency */ = { + FBFCF5473C90911F978122EEE699071B /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = GoogleMLKit; - target = 6D46A1F6123B14449A2A1FC04011860D /* GoogleMLKit */; - targetProxy = 2BA8247607B6DF404496619EAEB3EEC3 /* PBXContainerItemProxy */; + name = Flutter; + target = 1EFDDC32A34D56D411E640A81DCD9E73 /* Flutter */; + targetProxy = 1647EF5D9CB12E00864DF2ECA6AC29CB /* PBXContainerItemProxy */; }; - FF9D52703A7AEB72D31ACC7FA111D203 /* PBXTargetDependency */ = { + FD5A2D151E574BE92D0ADFA2AB23E7F3 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = PromisesObjC; - target = 2BBF7206D7FAC92C82A042A99C4A98F8 /* PromisesObjC */; - targetProxy = 80CC63698CC21C7BB9632F9FF898BA5C /* PBXContainerItemProxy */; + name = Sentry; + target = 94BDCD90B52278D1FB244A66E8B95A4A /* Sentry */; + targetProxy = B4316C289E8F6C6540A33C77F62C9C61 /* PBXContainerItemProxy */; }; /* End PBXTargetDependency section */ /* Begin XCBuildConfiguration section */ - 001DBFE31A9C1D27AA7E616878853836 /* Stage-production */ = { + 019FCB08F7BE119520AB52A6C717B734 /* Profile */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 85EF9BEBA8B20A13BA96488C86CD663A /* MLKitCommon.release.xcconfig */; - buildSettings = { - ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; - ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; - CLANG_ENABLE_OBJC_WEAK = NO; - GCC_PREPROCESSOR_DEFINITIONS = ( - "$(inherited)", - "PERMISSION_CAMERA=1", - "PERMISSION_PHOTOS=1", - ); - IPHONEOS_DEPLOYMENT_TARGET = 13.0; - LD_RUNPATH_SEARCH_PATHS = ( - "$(inherited)", - "@executable_path/Frameworks", - ); - SDKROOT = iphoneos; - TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; - }; - name = "Stage-production"; - }; - 006BA985453017D067960C40B5079071 /* Release-development */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 85EF9BEBA8B20A13BA96488C86CD663A /* MLKitCommon.release.xcconfig */; + baseConfigurationReference = 5D2B88AD25CD5EBE586D760474336767 /* MLKitBarcodeScanning.release.xcconfig */; buildSettings = { ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; @@ -13231,7 +13442,7 @@ TARGETED_DEVICE_FAMILY = "1,2"; VALIDATE_PRODUCT = YES; }; - name = "Release-development"; + name = Profile; }; 01BE29FB3E66C72E4BB8A8CB0610435B /* Release-production */ = { isa = XCBuildConfiguration; @@ -13272,6 +13483,33 @@ }; name = "Release-production"; }; + 01F27E5E0B9C3CA81A70CDF295694DAE /* Profile-production */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 6201BD6C84B86BD570988C7E3B8409CB /* package_info_plus.release.xcconfig */; + buildSettings = { + CLANG_ENABLE_OBJC_WEAK = NO; + CODE_SIGNING_ALLOWED = NO; + CODE_SIGNING_IDENTITY = "-"; + CODE_SIGNING_REQUIRED = NO; + CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/package_info_plus"; + EXPANDED_CODE_SIGN_IDENTITY = "-"; + GCC_PREPROCESSOR_DEFINITIONS = ( + "$(inherited)", + "PERMISSION_CAMERA=1", + "PERMISSION_PHOTOS=1", + ); + IBSC_MODULE = package_info_plus; + INFOPLIST_FILE = "Target Support Files/package_info_plus/ResourceBundle-package_info_plus_privacy-package_info_plus-Info.plist"; + IPHONEOS_DEPLOYMENT_TARGET = 13.0; + PRODUCT_NAME = package_info_plus_privacy; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; + WRAPPER_EXTENSION = bundle; + }; + name = "Profile-production"; + }; 023F795CC4B23A63B91403283EA37930 /* Release-staging */ = { isa = XCBuildConfiguration; baseConfigurationReference = 7BBC54695C99C2B14E25AEFD9F48CF32 /* GTMSessionFetcher.release.xcconfig */; @@ -13311,63 +13549,9 @@ }; name = "Release-staging"; }; - 02504B349641D5B004FF4BE565333E34 /* Profile-staging */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = B587A9A0D5365CAA9B8A2CC41EB17830 /* nanopb.release.xcconfig */; - buildSettings = { - CLANG_ENABLE_OBJC_WEAK = NO; - CODE_SIGNING_ALLOWED = NO; - CODE_SIGNING_IDENTITY = "-"; - CODE_SIGNING_REQUIRED = NO; - CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/nanopb"; - EXPANDED_CODE_SIGN_IDENTITY = "-"; - GCC_PREPROCESSOR_DEFINITIONS = ( - "$(inherited)", - "PERMISSION_CAMERA=1", - "PERMISSION_PHOTOS=1", - ); - IBSC_MODULE = nanopb; - INFOPLIST_FILE = "Target Support Files/nanopb/ResourceBundle-nanopb_Privacy-nanopb-Info.plist"; - IPHONEOS_DEPLOYMENT_TARGET = 13.0; - PRODUCT_NAME = nanopb_Privacy; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; - WRAPPER_EXTENSION = bundle; - }; - name = "Profile-staging"; - }; - 028F9A81D2A6074D18C4565692D820AF /* Release-development */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 9311BBA346794A168AC09B1625AB1683 /* path_provider_foundation.release.xcconfig */; - buildSettings = { - CLANG_ENABLE_OBJC_WEAK = NO; - CODE_SIGNING_ALLOWED = NO; - CODE_SIGNING_IDENTITY = "-"; - CODE_SIGNING_REQUIRED = NO; - CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/path_provider_foundation"; - EXPANDED_CODE_SIGN_IDENTITY = "-"; - GCC_PREPROCESSOR_DEFINITIONS = ( - "$(inherited)", - "PERMISSION_CAMERA=1", - "PERMISSION_PHOTOS=1", - ); - IBSC_MODULE = path_provider_foundation; - INFOPLIST_FILE = "Target Support Files/path_provider_foundation/ResourceBundle-path_provider_foundation_privacy-path_provider_foundation-Info.plist"; - IPHONEOS_DEPLOYMENT_TARGET = 13.0; - PRODUCT_NAME = path_provider_foundation_privacy; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; - WRAPPER_EXTENSION = bundle; - }; - name = "Release-development"; - }; 02B00ADE1354228CAB4926CCA04DE821 /* Release-development */ = { isa = XCBuildConfiguration; - baseConfigurationReference = B60761FA10DAC783EF5D7E4C1574226A /* connectivity_plus.release.xcconfig */; + baseConfigurationReference = 0F62AA5AF0EE048AB478074EDD1A2CD4 /* connectivity_plus.release.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO; @@ -13423,61 +13607,113 @@ }; name = "Release-development"; }; - 02BE811F14989950207C7309A97A7078 /* Release */ = { + 02CD4904F1DEC6760B1F7C4BF5E04E99 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = B91357BF97DBAECE656386331F10CCFD /* sqflite.release.xcconfig */; + baseConfigurationReference = FE5C3B02302BE4DBC83D2A553D5F5C1B /* MLKitVision.release.xcconfig */; buildSettings = { - CODE_SIGNING_ALLOWED = NO; - CODE_SIGNING_IDENTITY = "-"; - CODE_SIGNING_REQUIRED = NO; - CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/sqflite"; - EXPANDED_CODE_SIGN_IDENTITY = "-"; + ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; + ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; + CLANG_ENABLE_OBJC_WEAK = NO; GCC_PREPROCESSOR_DEFINITIONS = ( "$(inherited)", "PERMISSION_CAMERA=1", "PERMISSION_PHOTOS=1", ); - IBSC_MODULE = sqflite; - INFOPLIST_FILE = "Target Support Files/sqflite/ResourceBundle-sqflite_darwin_privacy-sqflite-Info.plist"; IPHONEOS_DEPLOYMENT_TARGET = 13.0; - PRODUCT_NAME = sqflite_darwin_privacy; + 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; }; - 02EEE2FD203D5C0B35E5E9952E02EA11 /* Debug-production */ = { + 033F6F3D9F7CF46BF49BBC70D96F870A /* Release-staging */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 7B2F4BE2D901E9309159228CD856EBAF /* flutter_secure_storage.release.xcconfig */; + baseConfigurationReference = D4F18F4F6B39AC1431EB143FE2915402 /* GoogleUtilitiesComponents.release.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; - CODE_SIGNING_ALLOWED = NO; - CODE_SIGNING_IDENTITY = "-"; - CODE_SIGNING_REQUIRED = NO; - CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/flutter_secure_storage"; - EXPANDED_CODE_SIGN_IDENTITY = "-"; + "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"; GCC_PREPROCESSOR_DEFINITIONS = ( "$(inherited)", "PERMISSION_CAMERA=1", "PERMISSION_PHOTOS=1", ); - IBSC_MODULE = flutter_secure_storage; - INFOPLIST_FILE = "Target Support Files/flutter_secure_storage/ResourceBundle-flutter_secure_storage-flutter_secure_storage-Info.plist"; + INFOPLIST_FILE = "Target Support Files/GoogleUtilitiesComponents/GoogleUtilitiesComponents-Info.plist"; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; IPHONEOS_DEPLOYMENT_TARGET = 13.0; - PRODUCT_NAME = flutter_secure_storage; + LD_RUNPATH_SEARCH_PATHS = ( + "$(inherited)", + "@executable_path/Frameworks", + "@loader_path/Frameworks", + ); + MACH_O_TYPE = staticlib; + MODULEMAP_FILE = "Target Support Files/GoogleUtilitiesComponents/GoogleUtilitiesComponents.modulemap"; + PRODUCT_MODULE_NAME = GoogleUtilitiesComponents; + PRODUCT_NAME = GoogleUtilitiesComponents; SDKROOT = iphoneos; SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; + SWIFT_VERSION = 5.0; TARGETED_DEVICE_FAMILY = "1,2"; VALIDATE_PRODUCT = YES; - WRAPPER_EXTENSION = bundle; + VERSIONING_SYSTEM = "apple-generic"; + VERSION_INFO_PREFIX = ""; }; - name = "Debug-production"; + name = "Release-staging"; + }; + 0378355EF959A8E179CD005A4F3D3AE1 /* Stage-production */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 0E95E1622AE3A8ECD9572E38ECCC7DA7 /* GoogleToolboxForMac.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"; + GCC_PREFIX_HEADER = "Target Support Files/GoogleToolboxForMac/GoogleToolboxForMac-prefix.pch"; + GCC_PREPROCESSOR_DEFINITIONS = ( + "$(inherited)", + "PERMISSION_CAMERA=1", + "PERMISSION_PHOTOS=1", + ); + INFOPLIST_FILE = "Target Support Files/GoogleToolboxForMac/GoogleToolboxForMac-Info.plist"; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; + IPHONEOS_DEPLOYMENT_TARGET = 13.0; + LD_RUNPATH_SEARCH_PATHS = ( + "$(inherited)", + "@executable_path/Frameworks", + "@loader_path/Frameworks", + ); + MODULEMAP_FILE = "Target Support Files/GoogleToolboxForMac/GoogleToolboxForMac.modulemap"; + PRODUCT_MODULE_NAME = GoogleToolboxForMac; + PRODUCT_NAME = GoogleToolboxForMac; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; + SWIFT_VERSION = 5.0; + TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; + VERSIONING_SYSTEM = "apple-generic"; + VERSION_INFO_PREFIX = ""; + }; + name = "Stage-production"; }; 0399AC9F9210C4170EA989F32A28FEF0 /* Debug-development */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 79066AF4601F7FFEE6681FB7DA45FA72 /* flutter_keyboard_visibility.release.xcconfig */; + baseConfigurationReference = A0E07105D46C98227F9CF101D83E460C /* flutter_keyboard_visibility.release.xcconfig */; buildSettings = { CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -13532,6 +13768,45 @@ }; name = "Debug-development"; }; + 0404E4CAB7CB99A989550C93DFC31BE7 /* Debug-production */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 8ABCAE069412CFA453F913E4A7E0184B /* GoogleUtilities.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"; + GCC_PREPROCESSOR_DEFINITIONS = ( + "$(inherited)", + "PERMISSION_CAMERA=1", + "PERMISSION_PHOTOS=1", + ); + INFOPLIST_FILE = "Target Support Files/GoogleUtilities/GoogleUtilities-Info.plist"; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; + IPHONEOS_DEPLOYMENT_TARGET = 13.0; + LD_RUNPATH_SEARCH_PATHS = ( + "$(inherited)", + "@executable_path/Frameworks", + "@loader_path/Frameworks", + ); + 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_VERSION = 5.0; + TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; + VERSIONING_SYSTEM = "apple-generic"; + VERSION_INFO_PREFIX = ""; + }; + name = "Debug-production"; + }; 04F0149273AAAC6C3F065574F787A176 /* Profile-staging */ = { isa = XCBuildConfiguration; baseConfigurationReference = 5D2DA3CB411FF35D30470F3AEFA259CB /* Flutter.release.xcconfig */; @@ -13555,44 +13830,32 @@ }; name = "Profile-staging"; }; - 051B4D978F0EA8E6621A7B761450F8E9 /* Debug */ = { + 051F262FD736D6C94092EBF93D546564 /* Profile */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 09591BCE938F1C26C6D192C1AB4F10A6 /* GoogleUtilities.debug.xcconfig */; + baseConfigurationReference = D1CCD0C16DFF0194B0A936A205ED4ED0 /* shared_preferences_foundation.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"; + CLANG_ENABLE_OBJC_WEAK = NO; + CODE_SIGNING_ALLOWED = NO; + CODE_SIGNING_IDENTITY = "-"; + CODE_SIGNING_REQUIRED = NO; + CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/shared_preferences_foundation"; + EXPANDED_CODE_SIGN_IDENTITY = "-"; GCC_PREPROCESSOR_DEFINITIONS = ( "$(inherited)", "PERMISSION_CAMERA=1", "PERMISSION_PHOTOS=1", ); - INFOPLIST_FILE = "Target Support Files/GoogleUtilities/GoogleUtilities-Info.plist"; - INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; + IBSC_MODULE = shared_preferences_foundation; + INFOPLIST_FILE = "Target Support Files/shared_preferences_foundation/ResourceBundle-shared_preferences_foundation_privacy-shared_preferences_foundation-Info.plist"; IPHONEOS_DEPLOYMENT_TARGET = 13.0; - LD_RUNPATH_SEARCH_PATHS = ( - "$(inherited)", - "@executable_path/Frameworks", - "@loader_path/Frameworks", - ); - MODULEMAP_FILE = "Target Support Files/GoogleUtilities/GoogleUtilities.modulemap"; - ONLY_ACTIVE_ARCH = NO; - PRODUCT_MODULE_NAME = GoogleUtilities; - PRODUCT_NAME = GoogleUtilities; + PRODUCT_NAME = shared_preferences_foundation_privacy; SDKROOT = iphoneos; SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_VERSION = 5.0; TARGETED_DEVICE_FAMILY = "1,2"; - VERSIONING_SYSTEM = "apple-generic"; - VERSION_INFO_PREFIX = ""; + VALIDATE_PRODUCT = YES; + WRAPPER_EXTENSION = bundle; }; - name = Debug; + name = Profile; }; 052ED098D5234C94BE39779FDB97C10F /* Debug */ = { isa = XCBuildConfiguration; @@ -13619,7 +13882,7 @@ }; 05892A77CCA8F912552160C707ECB2C5 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 237D5AEE9D0DF37297BCD85E1DDD01D6 /* integration_test.debug.xcconfig */; + baseConfigurationReference = CC66E79ED8448E0E578E3150D0D34DC5 /* integration_test.debug.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO; @@ -13677,7 +13940,7 @@ }; 05A41ABF0C9508D12F5F58E51CECB1DC /* Debug-staging */ = { isa = XCBuildConfiguration; - baseConfigurationReference = B91357BF97DBAECE656386331F10CCFD /* sqflite.release.xcconfig */; + baseConfigurationReference = B3F81CBF23C2B71680A734B4B74EA6EF /* sqflite.release.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO; @@ -13735,7 +13998,7 @@ }; 05DB69C5A049CD8022AF7EB6B943BD8A /* Stage-production */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 73DB9045D22A4FBE50F8FACF34C6F052 /* url_launcher_ios.release.xcconfig */; + baseConfigurationReference = F9F252ACFB155ACF9BB56FB267880E01 /* url_launcher_ios.release.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO; @@ -13788,7 +14051,7 @@ }; 05F4D381AD6B31503865D80463E570F8 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 30F98EB803FD5C328558272910C8246D /* flutter_native_splash.debug.xcconfig */; + baseConfigurationReference = 665D58522994802C9F46348C975A8E0A /* flutter_native_splash.debug.xcconfig */; buildSettings = { CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -13843,6 +14106,31 @@ }; name = Debug; }; + 0624D84A7B11C81CD73B32795B597D74 /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = B587A9A0D5365CAA9B8A2CC41EB17830 /* nanopb.release.xcconfig */; + buildSettings = { + CODE_SIGNING_ALLOWED = NO; + CODE_SIGNING_IDENTITY = "-"; + CODE_SIGNING_REQUIRED = NO; + CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/nanopb"; + EXPANDED_CODE_SIGN_IDENTITY = "-"; + GCC_PREPROCESSOR_DEFINITIONS = ( + "$(inherited)", + "PERMISSION_CAMERA=1", + "PERMISSION_PHOTOS=1", + ); + IBSC_MODULE = nanopb; + INFOPLIST_FILE = "Target Support Files/nanopb/ResourceBundle-nanopb_Privacy-nanopb-Info.plist"; + IPHONEOS_DEPLOYMENT_TARGET = 13.0; + PRODUCT_NAME = nanopb_Privacy; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + TARGETED_DEVICE_FAMILY = "1,2"; + WRAPPER_EXTENSION = bundle; + }; + name = Release; + }; 064A2CDEF932280762E751DBA9097AF0 /* Profile-production */ = { isa = XCBuildConfiguration; baseConfigurationReference = F5EB28E53B3AA94DEBC148DF055F6B17 /* Pods-Runner.profile-production.xcconfig */; @@ -13903,142 +14191,9 @@ }; name = "Profile-production"; }; - 06BD1DB059E02448B6A0CE97B44518C8 /* Debug-production */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 8ABCAE069412CFA453F913E4A7E0184B /* GoogleUtilities.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"; - GCC_PREPROCESSOR_DEFINITIONS = ( - "$(inherited)", - "PERMISSION_CAMERA=1", - "PERMISSION_PHOTOS=1", - ); - INFOPLIST_FILE = "Target Support Files/GoogleUtilities/GoogleUtilities-Info.plist"; - INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; - IPHONEOS_DEPLOYMENT_TARGET = 13.0; - LD_RUNPATH_SEARCH_PATHS = ( - "$(inherited)", - "@executable_path/Frameworks", - "@loader_path/Frameworks", - ); - 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_VERSION = 5.0; - TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; - VERSIONING_SYSTEM = "apple-generic"; - VERSION_INFO_PREFIX = ""; - }; - name = "Debug-production"; - }; - 06F6DC8341C79F3C0917789954C5646E /* Profile-production */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = C782F3D64A5DB279B07DD4535BD2F969 /* image_picker_ios.release.xcconfig */; - buildSettings = { - CLANG_ENABLE_OBJC_WEAK = NO; - CODE_SIGNING_ALLOWED = NO; - CODE_SIGNING_IDENTITY = "-"; - CODE_SIGNING_REQUIRED = NO; - CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/image_picker_ios"; - EXPANDED_CODE_SIGN_IDENTITY = "-"; - GCC_PREPROCESSOR_DEFINITIONS = ( - "$(inherited)", - "PERMISSION_CAMERA=1", - "PERMISSION_PHOTOS=1", - ); - IBSC_MODULE = image_picker_ios; - INFOPLIST_FILE = "Target Support Files/image_picker_ios/ResourceBundle-image_picker_ios_privacy-image_picker_ios-Info.plist"; - IPHONEOS_DEPLOYMENT_TARGET = 13.0; - PRODUCT_NAME = image_picker_ios_privacy; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; - WRAPPER_EXTENSION = bundle; - }; - name = "Profile-production"; - }; - 07376C3E987E518721E007B79049C02D /* Debug-production */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = B587A9A0D5365CAA9B8A2CC41EB17830 /* nanopb.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"; - GCC_PREFIX_HEADER = "Target Support Files/nanopb/nanopb-prefix.pch"; - GCC_PREPROCESSOR_DEFINITIONS = ( - "$(inherited)", - "PERMISSION_CAMERA=1", - "PERMISSION_PHOTOS=1", - ); - INFOPLIST_FILE = "Target Support Files/nanopb/nanopb-Info.plist"; - INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; - IPHONEOS_DEPLOYMENT_TARGET = 13.0; - LD_RUNPATH_SEARCH_PATHS = ( - "$(inherited)", - "@executable_path/Frameworks", - "@loader_path/Frameworks", - ); - 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_VERSION = 5.0; - TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; - VERSIONING_SYSTEM = "apple-generic"; - VERSION_INFO_PREFIX = ""; - }; - name = "Debug-production"; - }; - 0738D6F4402E2520D0C4DA21EBDE30C0 /* Profile-staging */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = C782F3D64A5DB279B07DD4535BD2F969 /* image_picker_ios.release.xcconfig */; - buildSettings = { - CLANG_ENABLE_OBJC_WEAK = NO; - CODE_SIGNING_ALLOWED = NO; - CODE_SIGNING_IDENTITY = "-"; - CODE_SIGNING_REQUIRED = NO; - CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/image_picker_ios"; - EXPANDED_CODE_SIGN_IDENTITY = "-"; - GCC_PREPROCESSOR_DEFINITIONS = ( - "$(inherited)", - "PERMISSION_CAMERA=1", - "PERMISSION_PHOTOS=1", - ); - IBSC_MODULE = image_picker_ios; - INFOPLIST_FILE = "Target Support Files/image_picker_ios/ResourceBundle-image_picker_ios_privacy-image_picker_ios-Info.plist"; - IPHONEOS_DEPLOYMENT_TARGET = 13.0; - PRODUCT_NAME = image_picker_ios_privacy; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; - WRAPPER_EXTENSION = bundle; - }; - name = "Profile-staging"; - }; 07554587599E502588502DFBF8D8F6BD /* Release-development */ = { isa = XCBuildConfiguration; - baseConfigurationReference = C630DC976CFC529906571DA851643B86 /* integration_test.release.xcconfig */; + baseConfigurationReference = 5ACA34BFC6EAE3E5A15EE45A206A60FA /* integration_test.release.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO; @@ -14094,9 +14249,36 @@ }; name = "Release-development"; }; + 079A15D02A2EA38096D6B4C9FFB0C72E /* Release-development */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 196B9320A9BD7C09E7C5420F49D709B3 /* share_plus.release.xcconfig */; + buildSettings = { + CLANG_ENABLE_OBJC_WEAK = NO; + CODE_SIGNING_ALLOWED = NO; + CODE_SIGNING_IDENTITY = "-"; + CODE_SIGNING_REQUIRED = NO; + CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/share_plus"; + EXPANDED_CODE_SIGN_IDENTITY = "-"; + GCC_PREPROCESSOR_DEFINITIONS = ( + "$(inherited)", + "PERMISSION_CAMERA=1", + "PERMISSION_PHOTOS=1", + ); + IBSC_MODULE = share_plus; + INFOPLIST_FILE = "Target Support Files/share_plus/ResourceBundle-share_plus_privacy-share_plus-Info.plist"; + IPHONEOS_DEPLOYMENT_TARGET = 13.0; + PRODUCT_NAME = share_plus_privacy; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; + WRAPPER_EXTENSION = bundle; + }; + name = "Release-development"; + }; 07F7B7D20BF4CFC06F8519E279EE9FFF /* Debug-staging */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 9281357EC3038ADC39C884ED1A1D94E1 /* flutter_inappwebview.release.xcconfig */; + baseConfigurationReference = F3BAFA0B70330F234C6B8BF559E7A252 /* flutter_inappwebview.release.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO; @@ -14152,9 +14334,9 @@ }; name = "Debug-staging"; }; - 07F9387E4B7682B690CDCB441154D861 /* Profile-staging */ = { + 0851F78B0B82B221D7183DCA21BBAAF2 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 8ABCAE069412CFA453F913E4A7E0184B /* GoogleUtilities.release.xcconfig */; + baseConfigurationReference = 09591BCE938F1C26C6D192C1AB4F10A6 /* GoogleUtilities.debug.xcconfig */; buildSettings = { "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; @@ -14178,6 +14360,7 @@ "@loader_path/Frameworks", ); MODULEMAP_FILE = "Target Support Files/GoogleUtilities/GoogleUtilities.modulemap"; + ONLY_ACTIVE_ARCH = NO; PRODUCT_MODULE_NAME = GoogleUtilities; PRODUCT_NAME = GoogleUtilities; SDKROOT = iphoneos; @@ -14185,15 +14368,14 @@ SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; SWIFT_VERSION = 5.0; TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; VERSIONING_SYSTEM = "apple-generic"; VERSION_INFO_PREFIX = ""; }; - name = "Profile-staging"; + name = Debug; }; 0865BB2A3AD701BED2E2A993175B5C17 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 429B8F30C0075AC28A8387DE578B0028 /* flutter_secure_storage.debug.xcconfig */; + baseConfigurationReference = EECAC159C73F566285813641A0A1ECAA /* flutter_secure_storage.debug.xcconfig */; buildSettings = { CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -14250,7 +14432,7 @@ }; 087C5B63FECE19B61D683E04021C790C /* Release-development */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 7B2F4BE2D901E9309159228CD856EBAF /* flutter_secure_storage.release.xcconfig */; + baseConfigurationReference = 13146A48D1544CF0CF218B3A514C848E /* flutter_secure_storage.release.xcconfig */; buildSettings = { CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -14305,99 +14487,57 @@ }; name = "Release-development"; }; - 08800FC3E503DCB6CA2BD12F15E8D27F /* Profile */ = { + 08D51FE7859CE93690D3C2C116FFAD26 /* Profile-staging */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 4A911B9FACB388B308D1ABB5669DD583 /* permission_handler_apple.release.xcconfig */; + baseConfigurationReference = 52D3A45B276300DECC1173BE9A70A0A1 /* GoogleMLKit.release.xcconfig */; buildSettings = { + ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; + ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; CLANG_ENABLE_OBJC_WEAK = NO; - CODE_SIGNING_ALLOWED = NO; - CODE_SIGNING_IDENTITY = "-"; - CODE_SIGNING_REQUIRED = NO; - CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/permission_handler_apple"; - EXPANDED_CODE_SIGN_IDENTITY = "-"; GCC_PREPROCESSOR_DEFINITIONS = ( "$(inherited)", "PERMISSION_CAMERA=1", "PERMISSION_PHOTOS=1", ); - IBSC_MODULE = permission_handler_apple; - INFOPLIST_FILE = "Target Support Files/permission_handler_apple/ResourceBundle-permission_handler_apple_privacy-permission_handler_apple-Info.plist"; - IPHONEOS_DEPLOYMENT_TARGET = 13.0; - PRODUCT_NAME = permission_handler_apple_privacy; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; - WRAPPER_EXTENSION = bundle; - }; - name = Profile; - }; - 0881900B04C75430F2B88A07486E7161 /* Release-production */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 0E95E1622AE3A8ECD9572E38ECCC7DA7 /* GoogleToolboxForMac.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"; - GCC_PREFIX_HEADER = "Target Support Files/GoogleToolboxForMac/GoogleToolboxForMac-prefix.pch"; - GCC_PREPROCESSOR_DEFINITIONS = ( - "$(inherited)", - "PERMISSION_CAMERA=1", - "PERMISSION_PHOTOS=1", - ); - INFOPLIST_FILE = "Target Support Files/GoogleToolboxForMac/GoogleToolboxForMac-Info.plist"; - INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; IPHONEOS_DEPLOYMENT_TARGET = 13.0; LD_RUNPATH_SEARCH_PATHS = ( "$(inherited)", "@executable_path/Frameworks", - "@loader_path/Frameworks", ); - MODULEMAP_FILE = "Target Support Files/GoogleToolboxForMac/GoogleToolboxForMac.modulemap"; - PRODUCT_MODULE_NAME = GoogleToolboxForMac; - PRODUCT_NAME = GoogleToolboxForMac; SDKROOT = iphoneos; - SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_VERSION = 5.0; TARGETED_DEVICE_FAMILY = "1,2"; VALIDATE_PRODUCT = YES; - VERSIONING_SYSTEM = "apple-generic"; - VERSION_INFO_PREFIX = ""; }; - name = "Release-production"; + name = "Profile-staging"; }; - 08D51FE7859CE93690D3C2C116FFAD26 /* Profile-staging */ = { + 08D9E7D768AD52B7F0903712D33E2A58 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 52D3A45B276300DECC1173BE9A70A0A1 /* GoogleMLKit.release.xcconfig */; + baseConfigurationReference = 4BB6D83A83366DD3295B456FF36F5E3F /* permission_handler_apple.release.xcconfig */; buildSettings = { - ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; - ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; - CLANG_ENABLE_OBJC_WEAK = NO; + CODE_SIGNING_ALLOWED = NO; + CODE_SIGNING_IDENTITY = "-"; + CODE_SIGNING_REQUIRED = NO; + CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/permission_handler_apple"; + EXPANDED_CODE_SIGN_IDENTITY = "-"; GCC_PREPROCESSOR_DEFINITIONS = ( "$(inherited)", "PERMISSION_CAMERA=1", "PERMISSION_PHOTOS=1", ); + IBSC_MODULE = permission_handler_apple; + INFOPLIST_FILE = "Target Support Files/permission_handler_apple/ResourceBundle-permission_handler_apple_privacy-permission_handler_apple-Info.plist"; IPHONEOS_DEPLOYMENT_TARGET = 13.0; - LD_RUNPATH_SEARCH_PATHS = ( - "$(inherited)", - "@executable_path/Frameworks", - ); + PRODUCT_NAME = permission_handler_apple_privacy; SDKROOT = iphoneos; + SKIP_INSTALL = YES; TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; + WRAPPER_EXTENSION = bundle; }; - name = "Profile-staging"; + name = Release; }; 09E0D4B68D3A1EDC018EFDF657C7FC78 /* Stage-production */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 869E5D3B5708F94FBC923E7B50C1DD07 /* flutter_nekoton_bridge.release.xcconfig */; + baseConfigurationReference = 5B385CBA22624866DCD19C0B8CCF9C42 /* flutter_nekoton_bridge.release.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -14476,115 +14616,89 @@ }; name = "Release-development"; }; - 0A498062252B30A3DDBC216B9BB806B8 /* Debug-development */ = { + 0AA40B3B7A8B571344203D83265AED84 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 19CE9AC8B13646CC03FBC77F131FF183 /* GoogleDataTransport.release.xcconfig */; + baseConfigurationReference = 96032D57D2E112ABF8EF589DE1640244 /* PromisesObjC.debug.xcconfig */; buildSettings = { - CLANG_ENABLE_OBJC_WEAK = NO; CODE_SIGNING_ALLOWED = NO; CODE_SIGNING_IDENTITY = "-"; CODE_SIGNING_REQUIRED = NO; - CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/GoogleDataTransport"; + CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/PromisesObjC"; EXPANDED_CODE_SIGN_IDENTITY = "-"; GCC_PREPROCESSOR_DEFINITIONS = ( "$(inherited)", "PERMISSION_CAMERA=1", "PERMISSION_PHOTOS=1", ); - IBSC_MODULE = GoogleDataTransport; - INFOPLIST_FILE = "Target Support Files/GoogleDataTransport/ResourceBundle-GoogleDataTransport_Privacy-GoogleDataTransport-Info.plist"; + IBSC_MODULE = FBLPromises; + INFOPLIST_FILE = "Target Support Files/PromisesObjC/ResourceBundle-FBLPromises_Privacy-PromisesObjC-Info.plist"; IPHONEOS_DEPLOYMENT_TARGET = 13.0; - PRODUCT_NAME = GoogleDataTransport_Privacy; + ONLY_ACTIVE_ARCH = NO; + PRODUCT_NAME = FBLPromises_Privacy; SDKROOT = iphoneos; SKIP_INSTALL = YES; TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; WRAPPER_EXTENSION = bundle; }; - name = "Debug-development"; + name = Debug; }; - 0A4AC1D4950C5A898287BB72B583CBBF /* Debug-development */ = { + 0AA6E1AECDF8E051F4B66000394A010E /* Debug-staging */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 0E95E1622AE3A8ECD9572E38ECCC7DA7 /* GoogleToolboxForMac.release.xcconfig */; + baseConfigurationReference = 9ECF4B2E725AF88A4D8BD77668F776C4 /* local_auth_darwin.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"; - GCC_PREFIX_HEADER = "Target Support Files/GoogleToolboxForMac/GoogleToolboxForMac-prefix.pch"; + CLANG_ENABLE_OBJC_WEAK = NO; + CODE_SIGNING_ALLOWED = NO; + CODE_SIGNING_IDENTITY = "-"; + CODE_SIGNING_REQUIRED = NO; + CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/local_auth_darwin"; + EXPANDED_CODE_SIGN_IDENTITY = "-"; GCC_PREPROCESSOR_DEFINITIONS = ( "$(inherited)", "PERMISSION_CAMERA=1", "PERMISSION_PHOTOS=1", ); - INFOPLIST_FILE = "Target Support Files/GoogleToolboxForMac/GoogleToolboxForMac-Info.plist"; - INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; + IBSC_MODULE = local_auth_darwin; + INFOPLIST_FILE = "Target Support Files/local_auth_darwin/ResourceBundle-local_auth_darwin_privacy-local_auth_darwin-Info.plist"; IPHONEOS_DEPLOYMENT_TARGET = 13.0; - LD_RUNPATH_SEARCH_PATHS = ( - "$(inherited)", - "@executable_path/Frameworks", - "@loader_path/Frameworks", - ); - MODULEMAP_FILE = "Target Support Files/GoogleToolboxForMac/GoogleToolboxForMac.modulemap"; - PRODUCT_MODULE_NAME = GoogleToolboxForMac; - PRODUCT_NAME = GoogleToolboxForMac; + PRODUCT_NAME = local_auth_darwin_privacy; SDKROOT = iphoneos; SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_VERSION = 5.0; TARGETED_DEVICE_FAMILY = "1,2"; VALIDATE_PRODUCT = YES; - VERSIONING_SYSTEM = "apple-generic"; - VERSION_INFO_PREFIX = ""; + WRAPPER_EXTENSION = bundle; }; - name = "Debug-development"; + name = "Debug-staging"; }; - 0B2B675AFBA8B57F24319CC47765853D /* Release */ = { + 0B5BD8BC593391868F48F1242EF58B93 /* Debug-production */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 8ABCAE069412CFA453F913E4A7E0184B /* GoogleUtilities.release.xcconfig */; + baseConfigurationReference = FC4CA41561F8B1B855AED3763329DD2C /* PromisesObjC.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"; + CLANG_ENABLE_OBJC_WEAK = NO; + CODE_SIGNING_ALLOWED = NO; + CODE_SIGNING_IDENTITY = "-"; + CODE_SIGNING_REQUIRED = NO; + CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/PromisesObjC"; + EXPANDED_CODE_SIGN_IDENTITY = "-"; GCC_PREPROCESSOR_DEFINITIONS = ( "$(inherited)", "PERMISSION_CAMERA=1", "PERMISSION_PHOTOS=1", ); - INFOPLIST_FILE = "Target Support Files/GoogleUtilities/GoogleUtilities-Info.plist"; - INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; + IBSC_MODULE = FBLPromises; + INFOPLIST_FILE = "Target Support Files/PromisesObjC/ResourceBundle-FBLPromises_Privacy-PromisesObjC-Info.plist"; IPHONEOS_DEPLOYMENT_TARGET = 13.0; - LD_RUNPATH_SEARCH_PATHS = ( - "$(inherited)", - "@executable_path/Frameworks", - "@loader_path/Frameworks", - ); - MODULEMAP_FILE = "Target Support Files/GoogleUtilities/GoogleUtilities.modulemap"; - PRODUCT_MODULE_NAME = GoogleUtilities; - PRODUCT_NAME = GoogleUtilities; + PRODUCT_NAME = FBLPromises_Privacy; SDKROOT = iphoneos; SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_VERSION = 5.0; TARGETED_DEVICE_FAMILY = "1,2"; VALIDATE_PRODUCT = YES; - VERSIONING_SYSTEM = "apple-generic"; - VERSION_INFO_PREFIX = ""; + WRAPPER_EXTENSION = bundle; }; - name = Release; + name = "Debug-production"; }; 0B660173C49B1CE2B9D964383F4C9991 /* Profile */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 1E47B40DD78F33D7394C9CDADE9B41A7 /* share_plus.release.xcconfig */; + baseConfigurationReference = 196B9320A9BD7C09E7C5420F49D709B3 /* share_plus.release.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO; @@ -14640,9 +14754,36 @@ }; name = Profile; }; + 0BF1D9D79261948ED94AC55D0B5D17EF /* Profile */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 57D6AA21B16FC3FF93AD29A67F768BB2 /* flutter_native_splash.release.xcconfig */; + buildSettings = { + CLANG_ENABLE_OBJC_WEAK = NO; + CODE_SIGNING_ALLOWED = NO; + CODE_SIGNING_IDENTITY = "-"; + CODE_SIGNING_REQUIRED = NO; + CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/flutter_native_splash"; + EXPANDED_CODE_SIGN_IDENTITY = "-"; + GCC_PREPROCESSOR_DEFINITIONS = ( + "$(inherited)", + "PERMISSION_CAMERA=1", + "PERMISSION_PHOTOS=1", + ); + IBSC_MODULE = flutter_native_splash; + INFOPLIST_FILE = "Target Support Files/flutter_native_splash/ResourceBundle-flutter_native_splash_privacy-flutter_native_splash-Info.plist"; + IPHONEOS_DEPLOYMENT_TARGET = 13.0; + PRODUCT_NAME = flutter_native_splash_privacy; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; + WRAPPER_EXTENSION = bundle; + }; + name = Profile; + }; 0C641F8188B5D3445D27CA0787BF2233 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 73DB9045D22A4FBE50F8FACF34C6F052 /* url_launcher_ios.release.xcconfig */; + baseConfigurationReference = F9F252ACFB155ACF9BB56FB267880E01 /* url_launcher_ios.release.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO; @@ -14695,7 +14836,7 @@ }; 0CB04A3345E10E20947530545B34E46D /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 7B2F4BE2D901E9309159228CD856EBAF /* flutter_secure_storage.release.xcconfig */; + baseConfigurationReference = 13146A48D1544CF0CF218B3A514C848E /* flutter_secure_storage.release.xcconfig */; buildSettings = { CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -14752,7 +14893,7 @@ }; 0D028E0F77AC36AEB4F74CCFB45BBCB2 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 692CE151EB259A1A320BC0593B8D2D93 /* image_picker_ios.debug.xcconfig */; + baseConfigurationReference = D8944A35B58A4CCD31AF2857AEC05164 /* image_picker_ios.debug.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO; @@ -14808,85 +14949,9 @@ }; name = Debug; }; - 0D7D584C30071F47DCE65DA058C2E5D0 /* Release-production */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 85EF9BEBA8B20A13BA96488C86CD663A /* MLKitCommon.release.xcconfig */; - buildSettings = { - ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; - ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; - CLANG_ENABLE_OBJC_WEAK = NO; - GCC_PREPROCESSOR_DEFINITIONS = ( - "$(inherited)", - "PERMISSION_CAMERA=1", - "PERMISSION_PHOTOS=1", - ); - IPHONEOS_DEPLOYMENT_TARGET = 13.0; - LD_RUNPATH_SEARCH_PATHS = ( - "$(inherited)", - "@executable_path/Frameworks", - ); - SDKROOT = iphoneos; - TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; - }; - name = "Release-production"; - }; - 0D9BDD05B4C7E0C77B5B147D894991FD /* Profile-development */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = C782F3D64A5DB279B07DD4535BD2F969 /* image_picker_ios.release.xcconfig */; - buildSettings = { - CLANG_ENABLE_OBJC_WEAK = NO; - CODE_SIGNING_ALLOWED = NO; - CODE_SIGNING_IDENTITY = "-"; - CODE_SIGNING_REQUIRED = NO; - CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/image_picker_ios"; - EXPANDED_CODE_SIGN_IDENTITY = "-"; - GCC_PREPROCESSOR_DEFINITIONS = ( - "$(inherited)", - "PERMISSION_CAMERA=1", - "PERMISSION_PHOTOS=1", - ); - IBSC_MODULE = image_picker_ios; - INFOPLIST_FILE = "Target Support Files/image_picker_ios/ResourceBundle-image_picker_ios_privacy-image_picker_ios-Info.plist"; - IPHONEOS_DEPLOYMENT_TARGET = 13.0; - PRODUCT_NAME = image_picker_ios_privacy; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; - WRAPPER_EXTENSION = bundle; - }; - name = "Profile-development"; - }; - 0DA1AB8B0B4BE8200F6FBF41FAEABEAC /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 2C0178C1EDE28CC099A2ADAB1A94C43C /* sqflite.debug.xcconfig */; - buildSettings = { - CODE_SIGNING_ALLOWED = NO; - CODE_SIGNING_IDENTITY = "-"; - CODE_SIGNING_REQUIRED = NO; - CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/sqflite"; - EXPANDED_CODE_SIGN_IDENTITY = "-"; - GCC_PREPROCESSOR_DEFINITIONS = ( - "$(inherited)", - "PERMISSION_CAMERA=1", - "PERMISSION_PHOTOS=1", - ); - IBSC_MODULE = sqflite; - INFOPLIST_FILE = "Target Support Files/sqflite/ResourceBundle-sqflite_darwin_privacy-sqflite-Info.plist"; - IPHONEOS_DEPLOYMENT_TARGET = 13.0; - ONLY_ACTIVE_ARCH = NO; - PRODUCT_NAME = sqflite_darwin_privacy; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - TARGETED_DEVICE_FAMILY = "1,2"; - WRAPPER_EXTENSION = bundle; - }; - name = Debug; - }; 0DC73AD96E97FBDA59E3B93679EA5D4C /* Release-production */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 3C623764A02C0B6BA3A628060F65377B /* flutter_native_splash.release.xcconfig */; + baseConfigurationReference = 57D6AA21B16FC3FF93AD29A67F768BB2 /* flutter_native_splash.release.xcconfig */; buildSettings = { CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -14943,7 +15008,7 @@ }; 0DEFF72786D172FE0B7EDD88DDE0941E /* Debug-production */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 6D3FC8F30A9759CEC467C9CBCFF1BDA6 /* mobile_scanner.release.xcconfig */; + baseConfigurationReference = 55CABBFDA741B6809730DEE1165E60C9 /* mobile_scanner.release.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO; @@ -15002,7 +15067,7 @@ }; 0E98F181B47A7AD9F373190BC18BFB88 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 79066AF4601F7FFEE6681FB7DA45FA72 /* flutter_keyboard_visibility.release.xcconfig */; + baseConfigurationReference = A0E07105D46C98227F9CF101D83E460C /* flutter_keyboard_visibility.release.xcconfig */; buildSettings = { CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -15057,36 +15122,9 @@ }; name = Release; }; - 0EC5D7F8EA8CF3CEE3C29F53A29E4AA7 /* Debug-production */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 06772A7CF38F34E24C0E8F60729C6339 /* local_auth_darwin.release.xcconfig */; - buildSettings = { - CLANG_ENABLE_OBJC_WEAK = NO; - CODE_SIGNING_ALLOWED = NO; - CODE_SIGNING_IDENTITY = "-"; - CODE_SIGNING_REQUIRED = NO; - CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/local_auth_darwin"; - EXPANDED_CODE_SIGN_IDENTITY = "-"; - GCC_PREPROCESSOR_DEFINITIONS = ( - "$(inherited)", - "PERMISSION_CAMERA=1", - "PERMISSION_PHOTOS=1", - ); - IBSC_MODULE = local_auth_darwin; - INFOPLIST_FILE = "Target Support Files/local_auth_darwin/ResourceBundle-local_auth_darwin_privacy-local_auth_darwin-Info.plist"; - IPHONEOS_DEPLOYMENT_TARGET = 13.0; - PRODUCT_NAME = local_auth_darwin_privacy; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; - WRAPPER_EXTENSION = bundle; - }; - name = "Debug-production"; - }; 0EC65B0D2643AD2B5F314AE245220485 /* Release-staging */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 3C623764A02C0B6BA3A628060F65377B /* flutter_native_splash.release.xcconfig */; + baseConfigurationReference = 57D6AA21B16FC3FF93AD29A67F768BB2 /* flutter_native_splash.release.xcconfig */; buildSettings = { CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -15141,32 +15179,32 @@ }; name = "Release-staging"; }; - 0ED744FBB398559600F481993C56408B /* Debug-production */ = { + 0EDC0D8623352470F170B31C14A52B23 /* Profile-staging */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 3C623764A02C0B6BA3A628060F65377B /* flutter_native_splash.release.xcconfig */; + baseConfigurationReference = 9ECF4B2E725AF88A4D8BD77668F776C4 /* local_auth_darwin.release.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; CODE_SIGNING_ALLOWED = NO; CODE_SIGNING_IDENTITY = "-"; CODE_SIGNING_REQUIRED = NO; - CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/flutter_native_splash"; + CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/local_auth_darwin"; EXPANDED_CODE_SIGN_IDENTITY = "-"; GCC_PREPROCESSOR_DEFINITIONS = ( "$(inherited)", "PERMISSION_CAMERA=1", "PERMISSION_PHOTOS=1", ); - IBSC_MODULE = flutter_native_splash; - INFOPLIST_FILE = "Target Support Files/flutter_native_splash/ResourceBundle-flutter_native_splash_privacy-flutter_native_splash-Info.plist"; + IBSC_MODULE = local_auth_darwin; + INFOPLIST_FILE = "Target Support Files/local_auth_darwin/ResourceBundle-local_auth_darwin_privacy-local_auth_darwin-Info.plist"; IPHONEOS_DEPLOYMENT_TARGET = 13.0; - PRODUCT_NAME = flutter_native_splash_privacy; + PRODUCT_NAME = local_auth_darwin_privacy; SDKROOT = iphoneos; SKIP_INSTALL = YES; TARGETED_DEVICE_FAMILY = "1,2"; VALIDATE_PRODUCT = YES; WRAPPER_EXTENSION = bundle; }; - name = "Debug-production"; + name = "Profile-staging"; }; 0F4F8DD3C5FB334BD2767C91D16C3969 /* Profile-development */ = { isa = XCBuildConfiguration; @@ -15208,48 +15246,52 @@ }; name = "Profile-development"; }; - 0F9810AC1BCF745FD29DC29D38BFF88C /* Debug-staging */ = { + 0F69FCF876DC552D17A13C3D16F45C7F /* Release-development */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 5D2B88AD25CD5EBE586D760474336767 /* MLKitBarcodeScanning.release.xcconfig */; + baseConfigurationReference = 4BB6D83A83366DD3295B456FF36F5E3F /* permission_handler_apple.release.xcconfig */; buildSettings = { - ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; - ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; CLANG_ENABLE_OBJC_WEAK = NO; + CODE_SIGNING_ALLOWED = NO; + CODE_SIGNING_IDENTITY = "-"; + CODE_SIGNING_REQUIRED = NO; + CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/permission_handler_apple"; + EXPANDED_CODE_SIGN_IDENTITY = "-"; GCC_PREPROCESSOR_DEFINITIONS = ( "$(inherited)", "PERMISSION_CAMERA=1", "PERMISSION_PHOTOS=1", ); + IBSC_MODULE = permission_handler_apple; + INFOPLIST_FILE = "Target Support Files/permission_handler_apple/ResourceBundle-permission_handler_apple_privacy-permission_handler_apple-Info.plist"; IPHONEOS_DEPLOYMENT_TARGET = 13.0; - LD_RUNPATH_SEARCH_PATHS = ( - "$(inherited)", - "@executable_path/Frameworks", - ); + PRODUCT_NAME = permission_handler_apple_privacy; SDKROOT = iphoneos; + SKIP_INSTALL = YES; TARGETED_DEVICE_FAMILY = "1,2"; VALIDATE_PRODUCT = YES; + WRAPPER_EXTENSION = bundle; }; - name = "Debug-staging"; + name = "Release-development"; }; - 101FFAC9A985191DCC5B27FF1880DD6D /* Debug-staging */ = { + 0FE343C847EEAFC80011E3F879E1EE1D /* Debug-staging */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 4A911B9FACB388B308D1ABB5669DD583 /* permission_handler_apple.release.xcconfig */; + baseConfigurationReference = 0F62AA5AF0EE048AB478074EDD1A2CD4 /* connectivity_plus.release.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; CODE_SIGNING_ALLOWED = NO; CODE_SIGNING_IDENTITY = "-"; CODE_SIGNING_REQUIRED = NO; - CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/permission_handler_apple"; + CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/connectivity_plus"; EXPANDED_CODE_SIGN_IDENTITY = "-"; GCC_PREPROCESSOR_DEFINITIONS = ( "$(inherited)", "PERMISSION_CAMERA=1", "PERMISSION_PHOTOS=1", ); - IBSC_MODULE = permission_handler_apple; - INFOPLIST_FILE = "Target Support Files/permission_handler_apple/ResourceBundle-permission_handler_apple_privacy-permission_handler_apple-Info.plist"; + IBSC_MODULE = connectivity_plus; + INFOPLIST_FILE = "Target Support Files/connectivity_plus/ResourceBundle-connectivity_plus_privacy-connectivity_plus-Info.plist"; IPHONEOS_DEPLOYMENT_TARGET = 13.0; - PRODUCT_NAME = permission_handler_apple_privacy; + PRODUCT_NAME = connectivity_plus_privacy; SDKROOT = iphoneos; SKIP_INSTALL = YES; TARGETED_DEVICE_FAMILY = "1,2"; @@ -15258,25 +15300,25 @@ }; name = "Debug-staging"; }; - 10594748714012A18A0AE56D4A5C8C95 /* Release-development */ = { + 10022A0987104FEF12403319B18CAE4F /* Release-development */ = { isa = XCBuildConfiguration; - baseConfigurationReference = F4C3D5A980B27BD2C418D61228F67F01 /* package_info_plus.release.xcconfig */; + baseConfigurationReference = D1CCD0C16DFF0194B0A936A205ED4ED0 /* shared_preferences_foundation.release.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; CODE_SIGNING_ALLOWED = NO; CODE_SIGNING_IDENTITY = "-"; CODE_SIGNING_REQUIRED = NO; - CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/package_info_plus"; + CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/shared_preferences_foundation"; EXPANDED_CODE_SIGN_IDENTITY = "-"; GCC_PREPROCESSOR_DEFINITIONS = ( "$(inherited)", "PERMISSION_CAMERA=1", "PERMISSION_PHOTOS=1", ); - IBSC_MODULE = package_info_plus; - INFOPLIST_FILE = "Target Support Files/package_info_plus/ResourceBundle-package_info_plus_privacy-package_info_plus-Info.plist"; + IBSC_MODULE = shared_preferences_foundation; + INFOPLIST_FILE = "Target Support Files/shared_preferences_foundation/ResourceBundle-shared_preferences_foundation_privacy-shared_preferences_foundation-Info.plist"; IPHONEOS_DEPLOYMENT_TARGET = 13.0; - PRODUCT_NAME = package_info_plus_privacy; + PRODUCT_NAME = shared_preferences_foundation_privacy; SDKROOT = iphoneos; SKIP_INSTALL = YES; TARGETED_DEVICE_FAMILY = "1,2"; @@ -15285,137 +15327,118 @@ }; name = "Release-development"; }; - 106F4AE2AACD8C0CBED64864C5430A2B /* Profile-staging */ = { + 108525416281A07AD9890260D0FA5B4F /* Release-production */ = { isa = XCBuildConfiguration; - baseConfigurationReference = B60761FA10DAC783EF5D7E4C1574226A /* connectivity_plus.release.xcconfig */; + baseConfigurationReference = 19CE9AC8B13646CC03FBC77F131FF183 /* GoogleDataTransport.release.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; CODE_SIGNING_ALLOWED = NO; CODE_SIGNING_IDENTITY = "-"; CODE_SIGNING_REQUIRED = NO; - CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/connectivity_plus"; + CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/GoogleDataTransport"; EXPANDED_CODE_SIGN_IDENTITY = "-"; GCC_PREPROCESSOR_DEFINITIONS = ( "$(inherited)", "PERMISSION_CAMERA=1", "PERMISSION_PHOTOS=1", ); - IBSC_MODULE = connectivity_plus; - INFOPLIST_FILE = "Target Support Files/connectivity_plus/ResourceBundle-connectivity_plus_privacy-connectivity_plus-Info.plist"; + IBSC_MODULE = GoogleDataTransport; + INFOPLIST_FILE = "Target Support Files/GoogleDataTransport/ResourceBundle-GoogleDataTransport_Privacy-GoogleDataTransport-Info.plist"; IPHONEOS_DEPLOYMENT_TARGET = 13.0; - PRODUCT_NAME = connectivity_plus_privacy; + PRODUCT_NAME = GoogleDataTransport_Privacy; SDKROOT = iphoneos; SKIP_INSTALL = YES; TARGETED_DEVICE_FAMILY = "1,2"; VALIDATE_PRODUCT = YES; WRAPPER_EXTENSION = bundle; }; - name = "Profile-staging"; + name = "Release-production"; }; - 122FF9A4D259E38072D66AF96A1030E3 /* Stage-production */ = { + 109DBFBF935DEF93BF5613760BCE1D01 /* Debug-production */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 9D69F5F0798882A34E95D912A7DDF7B1 /* sentry_flutter.release.xcconfig */; + baseConfigurationReference = 196B9320A9BD7C09E7C5420F49D709B3 /* share_plus.release.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; - CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = 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_BITCODE = NO; - "EXCLUDED_ARCHS[sdk=iphoneos*]" = "$(inherited) armv7"; - "EXCLUDED_ARCHS[sdk=iphonesimulator*]" = "$(inherited) i386"; - "FRAMEWORK_SEARCH_PATHS[sdk=iphoneos*]" = ( - "\"/Users/user/flutter/bin/cache/artifacts/engine/ios-release/Flutter.xcframework/ios-arm64\"", - "$(inherited)", - ); - "FRAMEWORK_SEARCH_PATHS[sdk=iphonesimulator*]" = ( - "\"/Users/user/flutter/bin/cache/artifacts/engine/ios-release/Flutter.xcframework/ios-arm64_x86_64-simulator\"", - "$(inherited)", - ); - GCC_PREFIX_HEADER = "Target Support Files/sentry_flutter/sentry_flutter-prefix.pch"; + CODE_SIGNING_ALLOWED = NO; + CODE_SIGNING_IDENTITY = "-"; + CODE_SIGNING_REQUIRED = NO; + CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/share_plus"; + EXPANDED_CODE_SIGN_IDENTITY = "-"; GCC_PREPROCESSOR_DEFINITIONS = ( "$(inherited)", "PERMISSION_CAMERA=1", "PERMISSION_PHOTOS=1", ); - INFOPLIST_FILE = "Target Support Files/sentry_flutter/sentry_flutter-Info.plist"; - INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; + IBSC_MODULE = share_plus; + INFOPLIST_FILE = "Target Support Files/share_plus/ResourceBundle-share_plus_privacy-share_plus-Info.plist"; IPHONEOS_DEPLOYMENT_TARGET = 13.0; - LD_RUNPATH_SEARCH_PATHS = ( - "$(inherited)", - "@executable_path/Frameworks", - "@loader_path/Frameworks", - ); - MODULEMAP_FILE = "Target Support Files/sentry_flutter/sentry_flutter.modulemap"; - OTHER_LDFLAGS = ( - "$(inherited)", - "-framework", - Flutter, - ); - PRODUCT_MODULE_NAME = sentry_flutter; - PRODUCT_NAME = sentry_flutter; + PRODUCT_NAME = share_plus_privacy; SDKROOT = iphoneos; SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_VERSION = 5.0; TARGETED_DEVICE_FAMILY = "1,2"; VALIDATE_PRODUCT = YES; - "VALID_ARCHS[sdk=iphonesimulator*]" = "$(ARCHS_STANDARD)"; - VERSIONING_SYSTEM = "apple-generic"; - VERSION_INFO_PREFIX = ""; + WRAPPER_EXTENSION = bundle; }; - name = "Stage-production"; + name = "Debug-production"; }; - 1242D629407DCFB7146FD99180AE05DF /* Profile-production */ = { + 113684FF775DBF18AE962C85ABE37A00 /* Debug-staging */ = { isa = XCBuildConfiguration; - baseConfigurationReference = B60761FA10DAC783EF5D7E4C1574226A /* connectivity_plus.release.xcconfig */; + baseConfigurationReference = 2529F7B6D57D43838BFCB332D2EDFE47 /* path_provider_foundation.release.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; CODE_SIGNING_ALLOWED = NO; CODE_SIGNING_IDENTITY = "-"; CODE_SIGNING_REQUIRED = NO; - CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/connectivity_plus"; + CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/path_provider_foundation"; EXPANDED_CODE_SIGN_IDENTITY = "-"; GCC_PREPROCESSOR_DEFINITIONS = ( "$(inherited)", "PERMISSION_CAMERA=1", "PERMISSION_PHOTOS=1", ); - IBSC_MODULE = connectivity_plus; - INFOPLIST_FILE = "Target Support Files/connectivity_plus/ResourceBundle-connectivity_plus_privacy-connectivity_plus-Info.plist"; + IBSC_MODULE = path_provider_foundation; + INFOPLIST_FILE = "Target Support Files/path_provider_foundation/ResourceBundle-path_provider_foundation_privacy-path_provider_foundation-Info.plist"; IPHONEOS_DEPLOYMENT_TARGET = 13.0; - PRODUCT_NAME = connectivity_plus_privacy; + PRODUCT_NAME = path_provider_foundation_privacy; SDKROOT = iphoneos; SKIP_INSTALL = YES; TARGETED_DEVICE_FAMILY = "1,2"; VALIDATE_PRODUCT = YES; WRAPPER_EXTENSION = bundle; }; - name = "Profile-production"; + name = "Debug-staging"; }; - 126E2FCDE5D94A46D447A20BA2645AF5 /* Debug-development */ = { + 122FF9A4D259E38072D66AF96A1030E3 /* Stage-production */ = { isa = XCBuildConfiguration; - baseConfigurationReference = B587A9A0D5365CAA9B8A2CC41EB17830 /* nanopb.release.xcconfig */; + baseConfigurationReference = 28C6A92040B7AE9155DE2648EB0D7296 /* sentry_flutter.release.xcconfig */; buildSettings = { + CLANG_ENABLE_OBJC_WEAK = NO; + CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = 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"; - GCC_PREFIX_HEADER = "Target Support Files/nanopb/nanopb-prefix.pch"; + ENABLE_BITCODE = NO; + "EXCLUDED_ARCHS[sdk=iphoneos*]" = "$(inherited) armv7"; + "EXCLUDED_ARCHS[sdk=iphonesimulator*]" = "$(inherited) i386"; + "FRAMEWORK_SEARCH_PATHS[sdk=iphoneos*]" = ( + "\"/Users/user/flutter/bin/cache/artifacts/engine/ios-release/Flutter.xcframework/ios-arm64\"", + "$(inherited)", + ); + "FRAMEWORK_SEARCH_PATHS[sdk=iphonesimulator*]" = ( + "\"/Users/user/flutter/bin/cache/artifacts/engine/ios-release/Flutter.xcframework/ios-arm64_x86_64-simulator\"", + "$(inherited)", + ); + GCC_PREFIX_HEADER = "Target Support Files/sentry_flutter/sentry_flutter-prefix.pch"; GCC_PREPROCESSOR_DEFINITIONS = ( "$(inherited)", "PERMISSION_CAMERA=1", "PERMISSION_PHOTOS=1", ); - INFOPLIST_FILE = "Target Support Files/nanopb/nanopb-Info.plist"; + INFOPLIST_FILE = "Target Support Files/sentry_flutter/sentry_flutter-Info.plist"; INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; IPHONEOS_DEPLOYMENT_TARGET = 13.0; LD_RUNPATH_SEARCH_PATHS = ( @@ -15423,23 +15446,29 @@ "@executable_path/Frameworks", "@loader_path/Frameworks", ); - MODULEMAP_FILE = "Target Support Files/nanopb/nanopb.modulemap"; - PRODUCT_MODULE_NAME = nanopb; - PRODUCT_NAME = nanopb; + MODULEMAP_FILE = "Target Support Files/sentry_flutter/sentry_flutter.modulemap"; + OTHER_LDFLAGS = ( + "$(inherited)", + "-framework", + Flutter, + ); + PRODUCT_MODULE_NAME = sentry_flutter; + PRODUCT_NAME = sentry_flutter; SDKROOT = iphoneos; SKIP_INSTALL = YES; SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; SWIFT_VERSION = 5.0; TARGETED_DEVICE_FAMILY = "1,2"; VALIDATE_PRODUCT = YES; + "VALID_ARCHS[sdk=iphonesimulator*]" = "$(ARCHS_STANDARD)"; VERSIONING_SYSTEM = "apple-generic"; VERSION_INFO_PREFIX = ""; }; - name = "Debug-development"; + name = "Stage-production"; }; 12AB23AB621916D1843F62FF8A4EB291 /* Release-production */ = { isa = XCBuildConfiguration; - baseConfigurationReference = F4C3D5A980B27BD2C418D61228F67F01 /* package_info_plus.release.xcconfig */; + baseConfigurationReference = 6201BD6C84B86BD570988C7E3B8409CB /* package_info_plus.release.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO; @@ -15495,6 +15524,33 @@ }; name = "Release-production"; }; + 130867E30F75A79787A6279E9C85EDEF /* Release-development */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 0F62AA5AF0EE048AB478074EDD1A2CD4 /* connectivity_plus.release.xcconfig */; + buildSettings = { + CLANG_ENABLE_OBJC_WEAK = NO; + CODE_SIGNING_ALLOWED = NO; + CODE_SIGNING_IDENTITY = "-"; + CODE_SIGNING_REQUIRED = NO; + CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/connectivity_plus"; + EXPANDED_CODE_SIGN_IDENTITY = "-"; + GCC_PREPROCESSOR_DEFINITIONS = ( + "$(inherited)", + "PERMISSION_CAMERA=1", + "PERMISSION_PHOTOS=1", + ); + IBSC_MODULE = connectivity_plus; + INFOPLIST_FILE = "Target Support Files/connectivity_plus/ResourceBundle-connectivity_plus_privacy-connectivity_plus-Info.plist"; + IPHONEOS_DEPLOYMENT_TARGET = 13.0; + PRODUCT_NAME = connectivity_plus_privacy; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; + WRAPPER_EXTENSION = bundle; + }; + name = "Release-development"; + }; 13476F651BE8372574F142AC5CC68893 /* Debug-development */ = { isa = XCBuildConfiguration; baseConfigurationReference = 52D3A45B276300DECC1173BE9A70A0A1 /* GoogleMLKit.release.xcconfig */; @@ -15518,86 +15574,93 @@ }; name = "Debug-development"; }; - 13FDC8E6DAF7A8352FDAA7ACE0280085 /* Profile-staging */ = { + 13651C3CAEDC8012F48BAC752EEB1FB2 /* Profile-production */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 73DB9045D22A4FBE50F8FACF34C6F052 /* url_launcher_ios.release.xcconfig */; + baseConfigurationReference = 26DCE60E629963FB754A022AED7ACC73 /* MLImage.release.xcconfig */; buildSettings = { + ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; + ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; CLANG_ENABLE_OBJC_WEAK = NO; - CODE_SIGNING_ALLOWED = NO; - CODE_SIGNING_IDENTITY = "-"; - CODE_SIGNING_REQUIRED = NO; - CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/url_launcher_ios"; - EXPANDED_CODE_SIGN_IDENTITY = "-"; GCC_PREPROCESSOR_DEFINITIONS = ( "$(inherited)", "PERMISSION_CAMERA=1", "PERMISSION_PHOTOS=1", ); - IBSC_MODULE = url_launcher_ios; - INFOPLIST_FILE = "Target Support Files/url_launcher_ios/ResourceBundle-url_launcher_ios_privacy-url_launcher_ios-Info.plist"; IPHONEOS_DEPLOYMENT_TARGET = 13.0; - PRODUCT_NAME = url_launcher_ios_privacy; + LD_RUNPATH_SEARCH_PATHS = ( + "$(inherited)", + "@executable_path/Frameworks", + ); SDKROOT = iphoneos; - SKIP_INSTALL = YES; TARGETED_DEVICE_FAMILY = "1,2"; VALIDATE_PRODUCT = YES; - WRAPPER_EXTENSION = bundle; }; - name = "Profile-staging"; + name = "Profile-production"; }; - 144122CE9B89EE4A3C9718F1B62A275A /* Release-production */ = { + 138007FAF3E52F8FB5C05C03685507FF /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 73DB9045D22A4FBE50F8FACF34C6F052 /* url_launcher_ios.release.xcconfig */; + baseConfigurationReference = 44714AD113F4B1583BDC85E549AFF081 /* nanopb.debug.xcconfig */; buildSettings = { - CLANG_ENABLE_OBJC_WEAK = NO; - CODE_SIGNING_ALLOWED = NO; - CODE_SIGNING_IDENTITY = "-"; - CODE_SIGNING_REQUIRED = NO; - CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/url_launcher_ios"; - EXPANDED_CODE_SIGN_IDENTITY = "-"; + "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"; + GCC_PREFIX_HEADER = "Target Support Files/nanopb/nanopb-prefix.pch"; GCC_PREPROCESSOR_DEFINITIONS = ( "$(inherited)", "PERMISSION_CAMERA=1", "PERMISSION_PHOTOS=1", ); - IBSC_MODULE = url_launcher_ios; - INFOPLIST_FILE = "Target Support Files/url_launcher_ios/ResourceBundle-url_launcher_ios_privacy-url_launcher_ios-Info.plist"; + INFOPLIST_FILE = "Target Support Files/nanopb/nanopb-Info.plist"; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; IPHONEOS_DEPLOYMENT_TARGET = 13.0; - PRODUCT_NAME = url_launcher_ios_privacy; + LD_RUNPATH_SEARCH_PATHS = ( + "$(inherited)", + "@executable_path/Frameworks", + "@loader_path/Frameworks", + ); + MODULEMAP_FILE = "Target Support Files/nanopb/nanopb.modulemap"; + ONLY_ACTIVE_ARCH = NO; + PRODUCT_MODULE_NAME = nanopb; + PRODUCT_NAME = nanopb; SDKROOT = iphoneos; SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; + SWIFT_VERSION = 5.0; TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; - WRAPPER_EXTENSION = bundle; + VERSIONING_SYSTEM = "apple-generic"; + VERSION_INFO_PREFIX = ""; }; - name = "Release-production"; + name = Debug; }; - 148787A92ECED4DFEF31D16155DE9FAA /* Debug-production */ = { + 14274404609446E996E9A6B3E1260D01 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = C3A8E22467ADEB42B7D83259E1A6F078 /* Sentry.release.xcconfig */; + baseConfigurationReference = 13146A48D1544CF0CF218B3A514C848E /* flutter_secure_storage.release.xcconfig */; buildSettings = { - CLANG_ENABLE_OBJC_WEAK = NO; CODE_SIGNING_ALLOWED = NO; CODE_SIGNING_IDENTITY = "-"; CODE_SIGNING_REQUIRED = NO; - CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/Sentry"; + CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/flutter_secure_storage"; EXPANDED_CODE_SIGN_IDENTITY = "-"; GCC_PREPROCESSOR_DEFINITIONS = ( "$(inherited)", "PERMISSION_CAMERA=1", "PERMISSION_PHOTOS=1", ); - IBSC_MODULE = Sentry; - INFOPLIST_FILE = "Target Support Files/Sentry/ResourceBundle-Sentry-Sentry-Info.plist"; + IBSC_MODULE = flutter_secure_storage; + INFOPLIST_FILE = "Target Support Files/flutter_secure_storage/ResourceBundle-flutter_secure_storage-flutter_secure_storage-Info.plist"; IPHONEOS_DEPLOYMENT_TARGET = 13.0; - PRODUCT_NAME = Sentry; + PRODUCT_NAME = flutter_secure_storage; SDKROOT = iphoneos; SKIP_INSTALL = YES; TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; WRAPPER_EXTENSION = bundle; }; - name = "Debug-production"; + name = Release; }; 148F08465A9D32D79D4B4661F3A487C7 /* Debug-production */ = { isa = XCBuildConfiguration; @@ -15638,72 +15701,9 @@ }; name = "Debug-production"; }; - 14DA1B0242B5D4AB9C34F6D15530E198 /* Debug-staging */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 0E95E1622AE3A8ECD9572E38ECCC7DA7 /* GoogleToolboxForMac.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"; - GCC_PREFIX_HEADER = "Target Support Files/GoogleToolboxForMac/GoogleToolboxForMac-prefix.pch"; - GCC_PREPROCESSOR_DEFINITIONS = ( - "$(inherited)", - "PERMISSION_CAMERA=1", - "PERMISSION_PHOTOS=1", - ); - INFOPLIST_FILE = "Target Support Files/GoogleToolboxForMac/GoogleToolboxForMac-Info.plist"; - INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; - IPHONEOS_DEPLOYMENT_TARGET = 13.0; - LD_RUNPATH_SEARCH_PATHS = ( - "$(inherited)", - "@executable_path/Frameworks", - "@loader_path/Frameworks", - ); - MODULEMAP_FILE = "Target Support Files/GoogleToolboxForMac/GoogleToolboxForMac.modulemap"; - PRODUCT_MODULE_NAME = GoogleToolboxForMac; - PRODUCT_NAME = GoogleToolboxForMac; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_VERSION = 5.0; - TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; - VERSIONING_SYSTEM = "apple-generic"; - VERSION_INFO_PREFIX = ""; - }; - name = "Debug-staging"; - }; - 14F89D222CDDD26FFA83FF6A5927B0E5 /* Profile-production */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 5D2B88AD25CD5EBE586D760474336767 /* MLKitBarcodeScanning.release.xcconfig */; - buildSettings = { - ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; - ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; - CLANG_ENABLE_OBJC_WEAK = NO; - GCC_PREPROCESSOR_DEFINITIONS = ( - "$(inherited)", - "PERMISSION_CAMERA=1", - "PERMISSION_PHOTOS=1", - ); - IPHONEOS_DEPLOYMENT_TARGET = 13.0; - LD_RUNPATH_SEARCH_PATHS = ( - "$(inherited)", - "@executable_path/Frameworks", - ); - SDKROOT = iphoneos; - TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; - }; - name = "Profile-production"; - }; 150FEE29A87C4C8161426F7352BDE487 /* Profile-production */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 869E5D3B5708F94FBC923E7B50C1DD07 /* flutter_nekoton_bridge.release.xcconfig */; + baseConfigurationReference = 5B385CBA22624866DCD19C0B8CCF9C42 /* flutter_nekoton_bridge.release.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -15744,7 +15744,7 @@ }; 1526281CAACAE7F31B87AFC88D622E14 /* Profile-staging */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 79066AF4601F7FFEE6681FB7DA45FA72 /* flutter_keyboard_visibility.release.xcconfig */; + baseConfigurationReference = A0E07105D46C98227F9CF101D83E460C /* flutter_keyboard_visibility.release.xcconfig */; buildSettings = { CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -15799,32 +15799,32 @@ }; name = "Profile-staging"; }; - 1572B1084267B4E8AC106780372A03E5 /* Debug-development */ = { + 155B04C6678AC75C2517ADA224F9554B /* Profile-development */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 1E47B40DD78F33D7394C9CDADE9B41A7 /* share_plus.release.xcconfig */; + baseConfigurationReference = 2529F7B6D57D43838BFCB332D2EDFE47 /* path_provider_foundation.release.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; CODE_SIGNING_ALLOWED = NO; CODE_SIGNING_IDENTITY = "-"; CODE_SIGNING_REQUIRED = NO; - CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/share_plus"; + CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/path_provider_foundation"; EXPANDED_CODE_SIGN_IDENTITY = "-"; GCC_PREPROCESSOR_DEFINITIONS = ( "$(inherited)", "PERMISSION_CAMERA=1", "PERMISSION_PHOTOS=1", ); - IBSC_MODULE = share_plus; - INFOPLIST_FILE = "Target Support Files/share_plus/ResourceBundle-share_plus_privacy-share_plus-Info.plist"; + IBSC_MODULE = path_provider_foundation; + INFOPLIST_FILE = "Target Support Files/path_provider_foundation/ResourceBundle-path_provider_foundation_privacy-path_provider_foundation-Info.plist"; IPHONEOS_DEPLOYMENT_TARGET = 13.0; - PRODUCT_NAME = share_plus_privacy; + PRODUCT_NAME = path_provider_foundation_privacy; SDKROOT = iphoneos; SKIP_INSTALL = YES; TARGETED_DEVICE_FAMILY = "1,2"; VALIDATE_PRODUCT = YES; WRAPPER_EXTENSION = bundle; }; - name = "Debug-development"; + name = "Profile-development"; }; 15AD23510812E7DBC84A6229994E5719 /* Profile-development */ = { isa = XCBuildConfiguration; @@ -15865,34 +15865,9 @@ }; name = "Profile-development"; }; - 165338F4543F50B6AF507338F0D089A0 /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 9311BBA346794A168AC09B1625AB1683 /* path_provider_foundation.release.xcconfig */; - buildSettings = { - CODE_SIGNING_ALLOWED = NO; - CODE_SIGNING_IDENTITY = "-"; - CODE_SIGNING_REQUIRED = NO; - CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/path_provider_foundation"; - EXPANDED_CODE_SIGN_IDENTITY = "-"; - GCC_PREPROCESSOR_DEFINITIONS = ( - "$(inherited)", - "PERMISSION_CAMERA=1", - "PERMISSION_PHOTOS=1", - ); - IBSC_MODULE = path_provider_foundation; - INFOPLIST_FILE = "Target Support Files/path_provider_foundation/ResourceBundle-path_provider_foundation_privacy-path_provider_foundation-Info.plist"; - IPHONEOS_DEPLOYMENT_TARGET = 13.0; - PRODUCT_NAME = path_provider_foundation_privacy; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - TARGETED_DEVICE_FAMILY = "1,2"; - WRAPPER_EXTENSION = bundle; - }; - name = Release; - }; 167038AAA4084C1F7CAED95F8C88BA14 /* Stage-production */ = { isa = XCBuildConfiguration; - baseConfigurationReference = C630DC976CFC529906571DA851643B86 /* integration_test.release.xcconfig */; + baseConfigurationReference = 5ACA34BFC6EAE3E5A15EE45A206A60FA /* integration_test.release.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO; @@ -15948,62 +15923,96 @@ }; name = "Stage-production"; }; - 16E60560AF31BC7189893999F1B6CC01 /* Profile */ = { + 16CACC17F81EE63C246157058EC2A8B8 /* Debug-production */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 9311BBA346794A168AC09B1625AB1683 /* path_provider_foundation.release.xcconfig */; + baseConfigurationReference = FE5C3B02302BE4DBC83D2A553D5F5C1B /* MLKitVision.release.xcconfig */; buildSettings = { + ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; + ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; CLANG_ENABLE_OBJC_WEAK = NO; - CODE_SIGNING_ALLOWED = NO; - CODE_SIGNING_IDENTITY = "-"; - CODE_SIGNING_REQUIRED = NO; - CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/path_provider_foundation"; - EXPANDED_CODE_SIGN_IDENTITY = "-"; GCC_PREPROCESSOR_DEFINITIONS = ( "$(inherited)", "PERMISSION_CAMERA=1", "PERMISSION_PHOTOS=1", ); - IBSC_MODULE = path_provider_foundation; - INFOPLIST_FILE = "Target Support Files/path_provider_foundation/ResourceBundle-path_provider_foundation_privacy-path_provider_foundation-Info.plist"; IPHONEOS_DEPLOYMENT_TARGET = 13.0; - PRODUCT_NAME = path_provider_foundation_privacy; + LD_RUNPATH_SEARCH_PATHS = ( + "$(inherited)", + "@executable_path/Frameworks", + ); SDKROOT = iphoneos; - SKIP_INSTALL = YES; TARGETED_DEVICE_FAMILY = "1,2"; VALIDATE_PRODUCT = YES; - WRAPPER_EXTENSION = bundle; }; - name = Profile; + name = "Debug-production"; }; - 1750CCCCE37A777806615E39F3D4EAF1 /* Debug */ = { + 1730FCD4CB40460D77EE05C871AD578F /* Release-staging */ = { isa = XCBuildConfiguration; - baseConfigurationReference = D2218A6EC0D27E04360FF7B5CD567548 /* path_provider_foundation.debug.xcconfig */; + baseConfigurationReference = 85EF9BEBA8B20A13BA96488C86CD663A /* MLKitCommon.release.xcconfig */; buildSettings = { - CODE_SIGNING_ALLOWED = NO; - CODE_SIGNING_IDENTITY = "-"; - CODE_SIGNING_REQUIRED = NO; - CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/path_provider_foundation"; - EXPANDED_CODE_SIGN_IDENTITY = "-"; + ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; + ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; + CLANG_ENABLE_OBJC_WEAK = NO; GCC_PREPROCESSOR_DEFINITIONS = ( "$(inherited)", "PERMISSION_CAMERA=1", "PERMISSION_PHOTOS=1", ); - IBSC_MODULE = path_provider_foundation; - INFOPLIST_FILE = "Target Support Files/path_provider_foundation/ResourceBundle-path_provider_foundation_privacy-path_provider_foundation-Info.plist"; IPHONEOS_DEPLOYMENT_TARGET = 13.0; - ONLY_ACTIVE_ARCH = NO; - PRODUCT_NAME = path_provider_foundation_privacy; + LD_RUNPATH_SEARCH_PATHS = ( + "$(inherited)", + "@executable_path/Frameworks", + ); + SDKROOT = iphoneos; + TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; + }; + name = "Release-staging"; + }; + 17570987CEAD6A3A22C6D074281D4047 /* Profile-staging */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = D4F18F4F6B39AC1431EB143FE2915402 /* GoogleUtilitiesComponents.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"; + GCC_PREPROCESSOR_DEFINITIONS = ( + "$(inherited)", + "PERMISSION_CAMERA=1", + "PERMISSION_PHOTOS=1", + ); + INFOPLIST_FILE = "Target Support Files/GoogleUtilitiesComponents/GoogleUtilitiesComponents-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/GoogleUtilitiesComponents/GoogleUtilitiesComponents.modulemap"; + PRODUCT_MODULE_NAME = GoogleUtilitiesComponents; + PRODUCT_NAME = GoogleUtilitiesComponents; SDKROOT = iphoneos; SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; + SWIFT_VERSION = 5.0; TARGETED_DEVICE_FAMILY = "1,2"; - WRAPPER_EXTENSION = bundle; + VALIDATE_PRODUCT = YES; + VERSIONING_SYSTEM = "apple-generic"; + VERSION_INFO_PREFIX = ""; }; - name = Debug; + name = "Profile-staging"; }; 179310AFDE36707FBFF1E4E8CD6F4F02 /* Profile-staging */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 9D69F5F0798882A34E95D912A7DDF7B1 /* sentry_flutter.release.xcconfig */; + baseConfigurationReference = 28C6A92040B7AE9155DE2648EB0D7296 /* sentry_flutter.release.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO; @@ -16059,9 +16068,36 @@ }; name = "Profile-staging"; }; + 17A17DC9363BC983E46DDE819B45C648 /* Profile-development */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 4BB6D83A83366DD3295B456FF36F5E3F /* permission_handler_apple.release.xcconfig */; + buildSettings = { + CLANG_ENABLE_OBJC_WEAK = NO; + CODE_SIGNING_ALLOWED = NO; + CODE_SIGNING_IDENTITY = "-"; + CODE_SIGNING_REQUIRED = NO; + CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/permission_handler_apple"; + EXPANDED_CODE_SIGN_IDENTITY = "-"; + GCC_PREPROCESSOR_DEFINITIONS = ( + "$(inherited)", + "PERMISSION_CAMERA=1", + "PERMISSION_PHOTOS=1", + ); + IBSC_MODULE = permission_handler_apple; + INFOPLIST_FILE = "Target Support Files/permission_handler_apple/ResourceBundle-permission_handler_apple_privacy-permission_handler_apple-Info.plist"; + IPHONEOS_DEPLOYMENT_TARGET = 13.0; + PRODUCT_NAME = permission_handler_apple_privacy; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; + WRAPPER_EXTENSION = bundle; + }; + name = "Profile-development"; + }; 17E2A625738F1193F84D70C3C1094B3F /* Profile */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 3C623764A02C0B6BA3A628060F65377B /* flutter_native_splash.release.xcconfig */; + baseConfigurationReference = 57D6AA21B16FC3FF93AD29A67F768BB2 /* flutter_native_splash.release.xcconfig */; buildSettings = { CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -16116,78 +16152,33 @@ }; name = Profile; }; - 18048B9CB9D884AA8E65CF39A9C57AD8 /* Release-development */ = { + 184D118D8149BA8D90396128BE128F2A /* Debug-development */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 7B2F4BE2D901E9309159228CD856EBAF /* flutter_secure_storage.release.xcconfig */; + baseConfigurationReference = FE5C3B02302BE4DBC83D2A553D5F5C1B /* MLKitVision.release.xcconfig */; buildSettings = { + ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; + ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; CLANG_ENABLE_OBJC_WEAK = NO; - CODE_SIGNING_ALLOWED = NO; - CODE_SIGNING_IDENTITY = "-"; - CODE_SIGNING_REQUIRED = NO; - CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/flutter_secure_storage"; - EXPANDED_CODE_SIGN_IDENTITY = "-"; GCC_PREPROCESSOR_DEFINITIONS = ( "$(inherited)", "PERMISSION_CAMERA=1", "PERMISSION_PHOTOS=1", ); - IBSC_MODULE = flutter_secure_storage; - INFOPLIST_FILE = "Target Support Files/flutter_secure_storage/ResourceBundle-flutter_secure_storage-flutter_secure_storage-Info.plist"; - IPHONEOS_DEPLOYMENT_TARGET = 13.0; - PRODUCT_NAME = flutter_secure_storage; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; - WRAPPER_EXTENSION = bundle; - }; - name = "Release-development"; - }; - 18090C2FC04390932EFF1738E28DD7F6 /* Profile-staging */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = B587A9A0D5365CAA9B8A2CC41EB17830 /* nanopb.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"; - GCC_PREFIX_HEADER = "Target Support Files/nanopb/nanopb-prefix.pch"; - GCC_PREPROCESSOR_DEFINITIONS = ( - "$(inherited)", - "PERMISSION_CAMERA=1", - "PERMISSION_PHOTOS=1", - ); - INFOPLIST_FILE = "Target Support Files/nanopb/nanopb-Info.plist"; - INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; IPHONEOS_DEPLOYMENT_TARGET = 13.0; LD_RUNPATH_SEARCH_PATHS = ( "$(inherited)", "@executable_path/Frameworks", - "@loader_path/Frameworks", ); - 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_VERSION = 5.0; TARGETED_DEVICE_FAMILY = "1,2"; VALIDATE_PRODUCT = YES; - VERSIONING_SYSTEM = "apple-generic"; - VERSION_INFO_PREFIX = ""; }; - name = "Profile-staging"; + name = "Debug-development"; }; - 186C6D51E248CD3B23A2D260267D7B01 /* Profile-development */ = { + 18BA3620F22DE50352C0C01DB72E74E0 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = D4F18F4F6B39AC1431EB143FE2915402 /* GoogleUtilitiesComponents.release.xcconfig */; + baseConfigurationReference = 8ABCAE069412CFA453F913E4A7E0184B /* GoogleUtilities.release.xcconfig */; buildSettings = { - CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; @@ -16201,7 +16192,7 @@ "PERMISSION_CAMERA=1", "PERMISSION_PHOTOS=1", ); - INFOPLIST_FILE = "Target Support Files/GoogleUtilitiesComponents/GoogleUtilitiesComponents-Info.plist"; + INFOPLIST_FILE = "Target Support Files/GoogleUtilities/GoogleUtilities-Info.plist"; INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; IPHONEOS_DEPLOYMENT_TARGET = 13.0; LD_RUNPATH_SEARCH_PATHS = ( @@ -16209,10 +16200,9 @@ "@executable_path/Frameworks", "@loader_path/Frameworks", ); - MACH_O_TYPE = staticlib; - MODULEMAP_FILE = "Target Support Files/GoogleUtilitiesComponents/GoogleUtilitiesComponents.modulemap"; - PRODUCT_MODULE_NAME = GoogleUtilitiesComponents; - PRODUCT_NAME = GoogleUtilitiesComponents; + 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) "; @@ -16222,11 +16212,11 @@ VERSIONING_SYSTEM = "apple-generic"; VERSION_INFO_PREFIX = ""; }; - name = "Profile-development"; + name = Release; }; 18EE661A614475753706F4A87CC22EB0 /* Profile-development */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 3C623764A02C0B6BA3A628060F65377B /* flutter_native_splash.release.xcconfig */; + baseConfigurationReference = 57D6AA21B16FC3FF93AD29A67F768BB2 /* flutter_native_splash.release.xcconfig */; buildSettings = { CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -16281,63 +16271,117 @@ }; name = "Profile-development"; }; - 19B55B3EB60B8A758C2021CAD7AA3F52 /* Profile */ = { + 195F3CF3973739EE679D36BD03F6995F /* Profile-staging */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 3C623764A02C0B6BA3A628060F65377B /* flutter_native_splash.release.xcconfig */; + baseConfigurationReference = C3A8E22467ADEB42B7D83259E1A6F078 /* Sentry.release.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; CODE_SIGNING_ALLOWED = NO; CODE_SIGNING_IDENTITY = "-"; CODE_SIGNING_REQUIRED = NO; - CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/flutter_native_splash"; + CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/Sentry"; EXPANDED_CODE_SIGN_IDENTITY = "-"; GCC_PREPROCESSOR_DEFINITIONS = ( "$(inherited)", "PERMISSION_CAMERA=1", "PERMISSION_PHOTOS=1", ); - IBSC_MODULE = flutter_native_splash; - INFOPLIST_FILE = "Target Support Files/flutter_native_splash/ResourceBundle-flutter_native_splash_privacy-flutter_native_splash-Info.plist"; + IBSC_MODULE = Sentry; + INFOPLIST_FILE = "Target Support Files/Sentry/ResourceBundle-Sentry-Sentry-Info.plist"; IPHONEOS_DEPLOYMENT_TARGET = 13.0; - PRODUCT_NAME = flutter_native_splash_privacy; + PRODUCT_NAME = Sentry; SDKROOT = iphoneos; SKIP_INSTALL = YES; TARGETED_DEVICE_FAMILY = "1,2"; VALIDATE_PRODUCT = YES; WRAPPER_EXTENSION = bundle; }; - name = Profile; + name = "Profile-staging"; }; - 1A1C5045C9DD4F7088C66AAE70011E7E /* Release-development */ = { + 1973FE89340E28A0A117F4958D4F9FEC /* Profile-staging */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 06772A7CF38F34E24C0E8F60729C6339 /* local_auth_darwin.release.xcconfig */; + baseConfigurationReference = 98AE98BF8E201BFC344D7356F2883701 /* image_picker_ios.release.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; CODE_SIGNING_ALLOWED = NO; CODE_SIGNING_IDENTITY = "-"; CODE_SIGNING_REQUIRED = NO; - CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/local_auth_darwin"; + CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/image_picker_ios"; EXPANDED_CODE_SIGN_IDENTITY = "-"; GCC_PREPROCESSOR_DEFINITIONS = ( "$(inherited)", "PERMISSION_CAMERA=1", "PERMISSION_PHOTOS=1", ); - IBSC_MODULE = local_auth_darwin; - INFOPLIST_FILE = "Target Support Files/local_auth_darwin/ResourceBundle-local_auth_darwin_privacy-local_auth_darwin-Info.plist"; + IBSC_MODULE = image_picker_ios; + INFOPLIST_FILE = "Target Support Files/image_picker_ios/ResourceBundle-image_picker_ios_privacy-image_picker_ios-Info.plist"; IPHONEOS_DEPLOYMENT_TARGET = 13.0; - PRODUCT_NAME = local_auth_darwin_privacy; + PRODUCT_NAME = image_picker_ios_privacy; SDKROOT = iphoneos; SKIP_INSTALL = YES; TARGETED_DEVICE_FAMILY = "1,2"; VALIDATE_PRODUCT = YES; WRAPPER_EXTENSION = bundle; }; - name = "Release-development"; + name = "Profile-staging"; + }; + 1A6C7C915BAD3FC2208C6487DBDA19CC /* Profile-staging */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 59E64776226CA679807D58D84423DF5F /* flutter_email_sender.release.xcconfig */; + buildSettings = { + CLANG_ENABLE_OBJC_WEAK = NO; + CODE_SIGNING_ALLOWED = NO; + CODE_SIGNING_IDENTITY = "-"; + CODE_SIGNING_REQUIRED = NO; + CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/flutter_email_sender"; + EXPANDED_CODE_SIGN_IDENTITY = "-"; + GCC_PREPROCESSOR_DEFINITIONS = ( + "$(inherited)", + "PERMISSION_CAMERA=1", + "PERMISSION_PHOTOS=1", + ); + IBSC_MODULE = flutter_email_sender; + INFOPLIST_FILE = "Target Support Files/flutter_email_sender/ResourceBundle-flutter_email_sender-flutter_email_sender-Info.plist"; + IPHONEOS_DEPLOYMENT_TARGET = 13.0; + PRODUCT_NAME = flutter_email_sender; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; + WRAPPER_EXTENSION = bundle; + }; + name = "Profile-staging"; + }; + 1A89B714EEDF632089044DD5583BF479 /* Debug-development */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = C3A8E22467ADEB42B7D83259E1A6F078 /* Sentry.release.xcconfig */; + buildSettings = { + CLANG_ENABLE_OBJC_WEAK = NO; + CODE_SIGNING_ALLOWED = NO; + CODE_SIGNING_IDENTITY = "-"; + CODE_SIGNING_REQUIRED = NO; + CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/Sentry"; + EXPANDED_CODE_SIGN_IDENTITY = "-"; + GCC_PREPROCESSOR_DEFINITIONS = ( + "$(inherited)", + "PERMISSION_CAMERA=1", + "PERMISSION_PHOTOS=1", + ); + IBSC_MODULE = Sentry; + INFOPLIST_FILE = "Target Support Files/Sentry/ResourceBundle-Sentry-Sentry-Info.plist"; + IPHONEOS_DEPLOYMENT_TARGET = 13.0; + PRODUCT_NAME = Sentry; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; + WRAPPER_EXTENSION = bundle; + }; + name = "Debug-development"; }; 1B0346A4B34A4345C8386D193630A22A /* Profile-staging */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 869E5D3B5708F94FBC923E7B50C1DD07 /* flutter_nekoton_bridge.release.xcconfig */; + baseConfigurationReference = 5B385CBA22624866DCD19C0B8CCF9C42 /* flutter_nekoton_bridge.release.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -16376,33 +16420,6 @@ }; name = "Profile-staging"; }; - 1BD2A848B883EC9B91298CA09A5A89CF /* Profile-production */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 73DB9045D22A4FBE50F8FACF34C6F052 /* url_launcher_ios.release.xcconfig */; - buildSettings = { - CLANG_ENABLE_OBJC_WEAK = NO; - CODE_SIGNING_ALLOWED = NO; - CODE_SIGNING_IDENTITY = "-"; - CODE_SIGNING_REQUIRED = NO; - CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/url_launcher_ios"; - EXPANDED_CODE_SIGN_IDENTITY = "-"; - GCC_PREPROCESSOR_DEFINITIONS = ( - "$(inherited)", - "PERMISSION_CAMERA=1", - "PERMISSION_PHOTOS=1", - ); - IBSC_MODULE = url_launcher_ios; - INFOPLIST_FILE = "Target Support Files/url_launcher_ios/ResourceBundle-url_launcher_ios_privacy-url_launcher_ios-Info.plist"; - IPHONEOS_DEPLOYMENT_TARGET = 13.0; - PRODUCT_NAME = url_launcher_ios_privacy; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; - WRAPPER_EXTENSION = bundle; - }; - name = "Profile-production"; - }; 1C247C1B3CE9A3040378FC9225A4C231 /* Debug */ = { isa = XCBuildConfiguration; baseConfigurationReference = 757B02BCD712116282DBABF6B0A28406 /* GTMSessionFetcher.debug.xcconfig */; @@ -16444,7 +16461,7 @@ }; 1C4B151DCA50855192268F459F2E1854 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 9311BBA346794A168AC09B1625AB1683 /* path_provider_foundation.release.xcconfig */; + baseConfigurationReference = 2529F7B6D57D43838BFCB332D2EDFE47 /* path_provider_foundation.release.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO; @@ -16498,7 +16515,7 @@ }; 1CA87C77F0CA9856A0413F646634C304 /* Profile */ = { isa = XCBuildConfiguration; - baseConfigurationReference = B91357BF97DBAECE656386331F10CCFD /* sqflite.release.xcconfig */; + baseConfigurationReference = B3F81CBF23C2B71680A734B4B74EA6EF /* sqflite.release.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO; @@ -16554,75 +16571,117 @@ }; name = Profile; }; - 1CD10D90689756DBB75BB4432ACD4622 /* Profile-development */ = { + 1CB50D8E2EBFC1C7B731C318232073CD /* Debug-production */ = { isa = XCBuildConfiguration; - baseConfigurationReference = B587A9A0D5365CAA9B8A2CC41EB17830 /* nanopb.release.xcconfig */; + baseConfigurationReference = 57D6AA21B16FC3FF93AD29A67F768BB2 /* flutter_native_splash.release.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; CODE_SIGNING_ALLOWED = NO; CODE_SIGNING_IDENTITY = "-"; CODE_SIGNING_REQUIRED = NO; - CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/nanopb"; + CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/flutter_native_splash"; EXPANDED_CODE_SIGN_IDENTITY = "-"; GCC_PREPROCESSOR_DEFINITIONS = ( "$(inherited)", "PERMISSION_CAMERA=1", "PERMISSION_PHOTOS=1", ); - IBSC_MODULE = nanopb; - INFOPLIST_FILE = "Target Support Files/nanopb/ResourceBundle-nanopb_Privacy-nanopb-Info.plist"; + IBSC_MODULE = flutter_native_splash; + INFOPLIST_FILE = "Target Support Files/flutter_native_splash/ResourceBundle-flutter_native_splash_privacy-flutter_native_splash-Info.plist"; IPHONEOS_DEPLOYMENT_TARGET = 13.0; - PRODUCT_NAME = nanopb_Privacy; + PRODUCT_NAME = flutter_native_splash_privacy; SDKROOT = iphoneos; SKIP_INSTALL = YES; TARGETED_DEVICE_FAMILY = "1,2"; VALIDATE_PRODUCT = YES; WRAPPER_EXTENSION = bundle; }; - name = "Profile-development"; + name = "Debug-production"; }; - 1DF481390C575781A240B4F88F0A3849 /* Profile-development */ = { + 1CF02C4FB3C14BDE94D8E91D1B9DE2DF /* Debug-staging */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 8ABCAE069412CFA453F913E4A7E0184B /* GoogleUtilities.release.xcconfig */; + baseConfigurationReference = C3A8E22467ADEB42B7D83259E1A6F078 /* Sentry.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"; + CLANG_ENABLE_OBJC_WEAK = NO; + CODE_SIGNING_ALLOWED = NO; + CODE_SIGNING_IDENTITY = "-"; + CODE_SIGNING_REQUIRED = NO; + CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/Sentry"; + EXPANDED_CODE_SIGN_IDENTITY = "-"; GCC_PREPROCESSOR_DEFINITIONS = ( "$(inherited)", "PERMISSION_CAMERA=1", "PERMISSION_PHOTOS=1", ); - INFOPLIST_FILE = "Target Support Files/GoogleUtilities/GoogleUtilities-Info.plist"; - INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; + IBSC_MODULE = Sentry; + INFOPLIST_FILE = "Target Support Files/Sentry/ResourceBundle-Sentry-Sentry-Info.plist"; IPHONEOS_DEPLOYMENT_TARGET = 13.0; - LD_RUNPATH_SEARCH_PATHS = ( + PRODUCT_NAME = Sentry; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; + WRAPPER_EXTENSION = bundle; + }; + name = "Debug-staging"; + }; + 1D0FF723E5AD86443242AF183382A4BC /* Release-staging */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 59E64776226CA679807D58D84423DF5F /* flutter_email_sender.release.xcconfig */; + buildSettings = { + CLANG_ENABLE_OBJC_WEAK = NO; + CODE_SIGNING_ALLOWED = NO; + CODE_SIGNING_IDENTITY = "-"; + CODE_SIGNING_REQUIRED = NO; + CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/flutter_email_sender"; + EXPANDED_CODE_SIGN_IDENTITY = "-"; + GCC_PREPROCESSOR_DEFINITIONS = ( "$(inherited)", - "@executable_path/Frameworks", - "@loader_path/Frameworks", + "PERMISSION_CAMERA=1", + "PERMISSION_PHOTOS=1", ); - MODULEMAP_FILE = "Target Support Files/GoogleUtilities/GoogleUtilities.modulemap"; - PRODUCT_MODULE_NAME = GoogleUtilities; - PRODUCT_NAME = GoogleUtilities; + IBSC_MODULE = flutter_email_sender; + INFOPLIST_FILE = "Target Support Files/flutter_email_sender/ResourceBundle-flutter_email_sender-flutter_email_sender-Info.plist"; + IPHONEOS_DEPLOYMENT_TARGET = 13.0; + PRODUCT_NAME = flutter_email_sender; SDKROOT = iphoneos; SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_VERSION = 5.0; TARGETED_DEVICE_FAMILY = "1,2"; VALIDATE_PRODUCT = YES; - VERSIONING_SYSTEM = "apple-generic"; - VERSION_INFO_PREFIX = ""; + WRAPPER_EXTENSION = bundle; }; - name = "Profile-development"; + name = "Release-staging"; + }; + 1DD72DCCCD674A19758111361207B7FF /* Release-development */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 57D6AA21B16FC3FF93AD29A67F768BB2 /* flutter_native_splash.release.xcconfig */; + buildSettings = { + CLANG_ENABLE_OBJC_WEAK = NO; + CODE_SIGNING_ALLOWED = NO; + CODE_SIGNING_IDENTITY = "-"; + CODE_SIGNING_REQUIRED = NO; + CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/flutter_native_splash"; + EXPANDED_CODE_SIGN_IDENTITY = "-"; + GCC_PREPROCESSOR_DEFINITIONS = ( + "$(inherited)", + "PERMISSION_CAMERA=1", + "PERMISSION_PHOTOS=1", + ); + IBSC_MODULE = flutter_native_splash; + INFOPLIST_FILE = "Target Support Files/flutter_native_splash/ResourceBundle-flutter_native_splash_privacy-flutter_native_splash-Info.plist"; + IPHONEOS_DEPLOYMENT_TARGET = 13.0; + PRODUCT_NAME = flutter_native_splash_privacy; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; + WRAPPER_EXTENSION = bundle; + }; + name = "Release-development"; }; 1E1912EB3F8B26799C0A84911278D78C /* Profile-production */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 9D69F5F0798882A34E95D912A7DDF7B1 /* sentry_flutter.release.xcconfig */; + baseConfigurationReference = 28C6A92040B7AE9155DE2648EB0D7296 /* sentry_flutter.release.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO; @@ -16678,32 +16737,32 @@ }; name = "Profile-production"; }; - 1E45DCD2F757C78ACAA761D3DBA4275B /* Debug-staging */ = { + 1E99DF98956DABF37220A6312AB5CB05 /* Profile */ = { isa = XCBuildConfiguration; - baseConfigurationReference = FC4CA41561F8B1B855AED3763329DD2C /* PromisesObjC.release.xcconfig */; + baseConfigurationReference = 59E64776226CA679807D58D84423DF5F /* flutter_email_sender.release.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; CODE_SIGNING_ALLOWED = NO; CODE_SIGNING_IDENTITY = "-"; CODE_SIGNING_REQUIRED = NO; - CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/PromisesObjC"; + CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/flutter_email_sender"; EXPANDED_CODE_SIGN_IDENTITY = "-"; GCC_PREPROCESSOR_DEFINITIONS = ( "$(inherited)", "PERMISSION_CAMERA=1", "PERMISSION_PHOTOS=1", ); - IBSC_MODULE = FBLPromises; - INFOPLIST_FILE = "Target Support Files/PromisesObjC/ResourceBundle-FBLPromises_Privacy-PromisesObjC-Info.plist"; + IBSC_MODULE = flutter_email_sender; + INFOPLIST_FILE = "Target Support Files/flutter_email_sender/ResourceBundle-flutter_email_sender-flutter_email_sender-Info.plist"; IPHONEOS_DEPLOYMENT_TARGET = 13.0; - PRODUCT_NAME = FBLPromises_Privacy; + PRODUCT_NAME = flutter_email_sender; SDKROOT = iphoneos; SKIP_INSTALL = YES; TARGETED_DEVICE_FAMILY = "1,2"; VALIDATE_PRODUCT = YES; WRAPPER_EXTENSION = bundle; }; - name = "Debug-staging"; + name = Profile; }; 1EB9E7CE1206EC07002D6A8D78B5A044 /* Profile-production */ = { isa = XCBuildConfiguration; @@ -16744,62 +16803,11 @@ }; name = "Profile-production"; }; - 1ED6F480FFDD7BD45783ED5BD2C7FC87 /* Release-development */ = { + 1F61F754D676B5037FF6D0BA1A624684 /* Profile-staging */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 4A911B9FACB388B308D1ABB5669DD583 /* permission_handler_apple.release.xcconfig */; + baseConfigurationReference = C3A8E22467ADEB42B7D83259E1A6F078 /* Sentry.release.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; - CODE_SIGNING_ALLOWED = NO; - CODE_SIGNING_IDENTITY = "-"; - CODE_SIGNING_REQUIRED = NO; - CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/permission_handler_apple"; - EXPANDED_CODE_SIGN_IDENTITY = "-"; - GCC_PREPROCESSOR_DEFINITIONS = ( - "$(inherited)", - "PERMISSION_CAMERA=1", - "PERMISSION_PHOTOS=1", - ); - IBSC_MODULE = permission_handler_apple; - INFOPLIST_FILE = "Target Support Files/permission_handler_apple/ResourceBundle-permission_handler_apple_privacy-permission_handler_apple-Info.plist"; - IPHONEOS_DEPLOYMENT_TARGET = 13.0; - PRODUCT_NAME = permission_handler_apple_privacy; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; - WRAPPER_EXTENSION = bundle; - }; - name = "Release-development"; - }; - 1F04039369FF068771704502449DF434 /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 3C623764A02C0B6BA3A628060F65377B /* flutter_native_splash.release.xcconfig */; - buildSettings = { - CODE_SIGNING_ALLOWED = NO; - CODE_SIGNING_IDENTITY = "-"; - CODE_SIGNING_REQUIRED = NO; - CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/flutter_native_splash"; - EXPANDED_CODE_SIGN_IDENTITY = "-"; - GCC_PREPROCESSOR_DEFINITIONS = ( - "$(inherited)", - "PERMISSION_CAMERA=1", - "PERMISSION_PHOTOS=1", - ); - IBSC_MODULE = flutter_native_splash; - INFOPLIST_FILE = "Target Support Files/flutter_native_splash/ResourceBundle-flutter_native_splash_privacy-flutter_native_splash-Info.plist"; - IPHONEOS_DEPLOYMENT_TARGET = 13.0; - PRODUCT_NAME = flutter_native_splash_privacy; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - TARGETED_DEVICE_FAMILY = "1,2"; - WRAPPER_EXTENSION = bundle; - }; - name = Release; - }; - 1F562EA4FF6C1070D848A38F2CB4538B /* Profile */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = B587A9A0D5365CAA9B8A2CC41EB17830 /* nanopb.release.xcconfig */; - buildSettings = { "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; @@ -16808,13 +16816,13 @@ DYLIB_COMPATIBILITY_VERSION = 1; DYLIB_CURRENT_VERSION = 1; DYLIB_INSTALL_NAME_BASE = "@rpath"; - GCC_PREFIX_HEADER = "Target Support Files/nanopb/nanopb-prefix.pch"; + GCC_PREFIX_HEADER = "Target Support Files/Sentry/Sentry-prefix.pch"; GCC_PREPROCESSOR_DEFINITIONS = ( "$(inherited)", "PERMISSION_CAMERA=1", "PERMISSION_PHOTOS=1", ); - INFOPLIST_FILE = "Target Support Files/nanopb/nanopb-Info.plist"; + INFOPLIST_FILE = "Target Support Files/Sentry/Sentry-Info.plist"; INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; IPHONEOS_DEPLOYMENT_TARGET = 13.0; LD_RUNPATH_SEARCH_PATHS = ( @@ -16822,118 +16830,50 @@ "@executable_path/Frameworks", "@loader_path/Frameworks", ); - MODULEMAP_FILE = "Target Support Files/nanopb/nanopb.modulemap"; - PRODUCT_MODULE_NAME = nanopb; - PRODUCT_NAME = nanopb; + MODULEMAP_FILE = "Target Support Files/Sentry/Sentry.modulemap"; + PRODUCT_MODULE_NAME = Sentry; + PRODUCT_NAME = Sentry; SDKROOT = iphoneos; SKIP_INSTALL = YES; SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_VERSION = 5.0; + SWIFT_VERSION = 5.5; TARGETED_DEVICE_FAMILY = "1,2"; VALIDATE_PRODUCT = YES; VERSIONING_SYSTEM = "apple-generic"; VERSION_INFO_PREFIX = ""; }; - name = Profile; - }; - 1F5D9CEDEC5664F5A3D170A910C87D45 /* Debug-development */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 73DB9045D22A4FBE50F8FACF34C6F052 /* url_launcher_ios.release.xcconfig */; - buildSettings = { - CLANG_ENABLE_OBJC_WEAK = NO; - CODE_SIGNING_ALLOWED = NO; - CODE_SIGNING_IDENTITY = "-"; - CODE_SIGNING_REQUIRED = NO; - CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/url_launcher_ios"; - EXPANDED_CODE_SIGN_IDENTITY = "-"; - GCC_PREPROCESSOR_DEFINITIONS = ( - "$(inherited)", - "PERMISSION_CAMERA=1", - "PERMISSION_PHOTOS=1", - ); - IBSC_MODULE = url_launcher_ios; - INFOPLIST_FILE = "Target Support Files/url_launcher_ios/ResourceBundle-url_launcher_ios_privacy-url_launcher_ios-Info.plist"; - IPHONEOS_DEPLOYMENT_TARGET = 13.0; - PRODUCT_NAME = url_launcher_ios_privacy; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; - WRAPPER_EXTENSION = bundle; - }; - name = "Debug-development"; + name = "Profile-staging"; }; - 1F60E58EEE21A06BFE457E82F0F58EF9 /* Debug-staging */ = { + 1F7E15445A0CDB80C26051C3BFED64F9 /* Profile-production */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 7B2F4BE2D901E9309159228CD856EBAF /* flutter_secure_storage.release.xcconfig */; + baseConfigurationReference = FC4CA41561F8B1B855AED3763329DD2C /* PromisesObjC.release.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; CODE_SIGNING_ALLOWED = NO; CODE_SIGNING_IDENTITY = "-"; CODE_SIGNING_REQUIRED = NO; - CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/flutter_secure_storage"; + CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/PromisesObjC"; EXPANDED_CODE_SIGN_IDENTITY = "-"; GCC_PREPROCESSOR_DEFINITIONS = ( "$(inherited)", "PERMISSION_CAMERA=1", "PERMISSION_PHOTOS=1", ); - IBSC_MODULE = flutter_secure_storage; - INFOPLIST_FILE = "Target Support Files/flutter_secure_storage/ResourceBundle-flutter_secure_storage-flutter_secure_storage-Info.plist"; + IBSC_MODULE = FBLPromises; + INFOPLIST_FILE = "Target Support Files/PromisesObjC/ResourceBundle-FBLPromises_Privacy-PromisesObjC-Info.plist"; IPHONEOS_DEPLOYMENT_TARGET = 13.0; - PRODUCT_NAME = flutter_secure_storage; + PRODUCT_NAME = FBLPromises_Privacy; SDKROOT = iphoneos; SKIP_INSTALL = YES; TARGETED_DEVICE_FAMILY = "1,2"; VALIDATE_PRODUCT = YES; WRAPPER_EXTENSION = bundle; }; - name = "Debug-staging"; - }; - 1F61F754D676B5037FF6D0BA1A624684 /* Profile-staging */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = C3A8E22467ADEB42B7D83259E1A6F078 /* Sentry.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"; - GCC_PREFIX_HEADER = "Target Support Files/Sentry/Sentry-prefix.pch"; - GCC_PREPROCESSOR_DEFINITIONS = ( - "$(inherited)", - "PERMISSION_CAMERA=1", - "PERMISSION_PHOTOS=1", - ); - INFOPLIST_FILE = "Target Support Files/Sentry/Sentry-Info.plist"; - INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; - IPHONEOS_DEPLOYMENT_TARGET = 13.0; - LD_RUNPATH_SEARCH_PATHS = ( - "$(inherited)", - "@executable_path/Frameworks", - "@loader_path/Frameworks", - ); - MODULEMAP_FILE = "Target Support Files/Sentry/Sentry.modulemap"; - PRODUCT_MODULE_NAME = Sentry; - PRODUCT_NAME = Sentry; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_VERSION = 5.5; - TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; - VERSIONING_SYSTEM = "apple-generic"; - VERSION_INFO_PREFIX = ""; - }; - name = "Profile-staging"; + name = "Profile-production"; }; - 1FA294E1633FFFEC60FA0DEE822CC933 /* Stage-production */ = { + 1FAE11D758F55E84ED969D658CDBD45C /* Profile-staging */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 5D2B88AD25CD5EBE586D760474336767 /* MLKitBarcodeScanning.release.xcconfig */; + baseConfigurationReference = 26DCE60E629963FB754A022AED7ACC73 /* MLImage.release.xcconfig */; buildSettings = { ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; @@ -16952,52 +16892,38 @@ TARGETED_DEVICE_FAMILY = "1,2"; VALIDATE_PRODUCT = YES; }; - name = "Stage-production"; + name = "Profile-staging"; }; - 1FD82312CFAC99B06A0344354E5BBEC0 /* Profile */ = { + 1FC8D2FDC018CF7FE48B66E818992B4C /* Profile */ = { isa = XCBuildConfiguration; - baseConfigurationReference = D4F18F4F6B39AC1431EB143FE2915402 /* GoogleUtilitiesComponents.release.xcconfig */; + baseConfigurationReference = 196B9320A9BD7C09E7C5420F49D709B3 /* share_plus.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"; + CODE_SIGNING_ALLOWED = NO; + CODE_SIGNING_IDENTITY = "-"; + CODE_SIGNING_REQUIRED = NO; + CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/share_plus"; + EXPANDED_CODE_SIGN_IDENTITY = "-"; GCC_PREPROCESSOR_DEFINITIONS = ( "$(inherited)", "PERMISSION_CAMERA=1", "PERMISSION_PHOTOS=1", ); - INFOPLIST_FILE = "Target Support Files/GoogleUtilitiesComponents/GoogleUtilitiesComponents-Info.plist"; - INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; + IBSC_MODULE = share_plus; + INFOPLIST_FILE = "Target Support Files/share_plus/ResourceBundle-share_plus_privacy-share_plus-Info.plist"; 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/GoogleUtilitiesComponents/GoogleUtilitiesComponents.modulemap"; - PRODUCT_MODULE_NAME = GoogleUtilitiesComponents; - PRODUCT_NAME = GoogleUtilitiesComponents; + PRODUCT_NAME = share_plus_privacy; SDKROOT = iphoneos; SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_VERSION = 5.0; TARGETED_DEVICE_FAMILY = "1,2"; VALIDATE_PRODUCT = YES; - VERSIONING_SYSTEM = "apple-generic"; - VERSION_INFO_PREFIX = ""; + WRAPPER_EXTENSION = bundle; }; name = Profile; }; 1FE14B2D8C90F59249F2FE9DAFF83013 /* Profile-development */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 7B2F4BE2D901E9309159228CD856EBAF /* flutter_secure_storage.release.xcconfig */; + baseConfigurationReference = 13146A48D1544CF0CF218B3A514C848E /* flutter_secure_storage.release.xcconfig */; buildSettings = { CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -17052,9 +16978,36 @@ }; name = "Profile-development"; }; + 2099FFF7BF87DAAE314DD427058926EA /* Profile */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 4BB6D83A83366DD3295B456FF36F5E3F /* permission_handler_apple.release.xcconfig */; + buildSettings = { + CLANG_ENABLE_OBJC_WEAK = NO; + CODE_SIGNING_ALLOWED = NO; + CODE_SIGNING_IDENTITY = "-"; + CODE_SIGNING_REQUIRED = NO; + CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/permission_handler_apple"; + EXPANDED_CODE_SIGN_IDENTITY = "-"; + GCC_PREPROCESSOR_DEFINITIONS = ( + "$(inherited)", + "PERMISSION_CAMERA=1", + "PERMISSION_PHOTOS=1", + ); + IBSC_MODULE = permission_handler_apple; + INFOPLIST_FILE = "Target Support Files/permission_handler_apple/ResourceBundle-permission_handler_apple_privacy-permission_handler_apple-Info.plist"; + IPHONEOS_DEPLOYMENT_TARGET = 13.0; + PRODUCT_NAME = permission_handler_apple_privacy; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; + WRAPPER_EXTENSION = bundle; + }; + name = Profile; + }; 20AF576690AC7F31D8DB6F681B0CF577 /* Profile */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 73DB9045D22A4FBE50F8FACF34C6F052 /* url_launcher_ios.release.xcconfig */; + baseConfigurationReference = F9F252ACFB155ACF9BB56FB267880E01 /* url_launcher_ios.release.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO; @@ -17144,130 +17097,89 @@ }; name = "Release-development"; }; - 21CC8F5157878094457058F690F175D3 /* Debug-production */ = { + 2191EB27D3D4C0DFEAFB4E2B2DE77E2A /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 9311BBA346794A168AC09B1625AB1683 /* path_provider_foundation.release.xcconfig */; + baseConfigurationReference = ECD77C4498C8B5690FAD6D3E053D7AEA /* local_auth_darwin.debug.xcconfig */; buildSettings = { - CLANG_ENABLE_OBJC_WEAK = NO; CODE_SIGNING_ALLOWED = NO; CODE_SIGNING_IDENTITY = "-"; CODE_SIGNING_REQUIRED = NO; - CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/path_provider_foundation"; + CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/local_auth_darwin"; EXPANDED_CODE_SIGN_IDENTITY = "-"; GCC_PREPROCESSOR_DEFINITIONS = ( "$(inherited)", "PERMISSION_CAMERA=1", "PERMISSION_PHOTOS=1", ); - IBSC_MODULE = path_provider_foundation; - INFOPLIST_FILE = "Target Support Files/path_provider_foundation/ResourceBundle-path_provider_foundation_privacy-path_provider_foundation-Info.plist"; + IBSC_MODULE = local_auth_darwin; + INFOPLIST_FILE = "Target Support Files/local_auth_darwin/ResourceBundle-local_auth_darwin_privacy-local_auth_darwin-Info.plist"; IPHONEOS_DEPLOYMENT_TARGET = 13.0; - PRODUCT_NAME = path_provider_foundation_privacy; + ONLY_ACTIVE_ARCH = NO; + PRODUCT_NAME = local_auth_darwin_privacy; SDKROOT = iphoneos; SKIP_INSTALL = YES; TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; WRAPPER_EXTENSION = bundle; }; - name = "Debug-production"; + name = Debug; }; - 21E47B8CB74A5896D75C92109E786F3B /* Release-staging */ = { + 228475031C3B8557EB7EB35AC3B6B549 /* Profile-development */ = { isa = XCBuildConfiguration; - baseConfigurationReference = D4F18F4F6B39AC1431EB143FE2915402 /* GoogleUtilitiesComponents.release.xcconfig */; + baseConfigurationReference = 13146A48D1544CF0CF218B3A514C848E /* flutter_secure_storage.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"; - GCC_PREPROCESSOR_DEFINITIONS = ( - "$(inherited)", - "PERMISSION_CAMERA=1", - "PERMISSION_PHOTOS=1", - ); - INFOPLIST_FILE = "Target Support Files/GoogleUtilitiesComponents/GoogleUtilitiesComponents-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/GoogleUtilitiesComponents/GoogleUtilitiesComponents.modulemap"; - PRODUCT_MODULE_NAME = GoogleUtilitiesComponents; - PRODUCT_NAME = GoogleUtilitiesComponents; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_VERSION = 5.0; - TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; - VERSIONING_SYSTEM = "apple-generic"; - VERSION_INFO_PREFIX = ""; - }; - name = "Release-staging"; - }; - 23233D27476E9E806EB75AC934A53184 /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 3CBAA32448D7092D3388A6F5B2EAD77B /* connectivity_plus.debug.xcconfig */; - buildSettings = { CODE_SIGNING_ALLOWED = NO; CODE_SIGNING_IDENTITY = "-"; CODE_SIGNING_REQUIRED = NO; - CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/connectivity_plus"; + CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/flutter_secure_storage"; EXPANDED_CODE_SIGN_IDENTITY = "-"; GCC_PREPROCESSOR_DEFINITIONS = ( "$(inherited)", "PERMISSION_CAMERA=1", "PERMISSION_PHOTOS=1", ); - IBSC_MODULE = connectivity_plus; - INFOPLIST_FILE = "Target Support Files/connectivity_plus/ResourceBundle-connectivity_plus_privacy-connectivity_plus-Info.plist"; + IBSC_MODULE = flutter_secure_storage; + INFOPLIST_FILE = "Target Support Files/flutter_secure_storage/ResourceBundle-flutter_secure_storage-flutter_secure_storage-Info.plist"; IPHONEOS_DEPLOYMENT_TARGET = 13.0; - ONLY_ACTIVE_ARCH = NO; - PRODUCT_NAME = connectivity_plus_privacy; + PRODUCT_NAME = flutter_secure_storage; SDKROOT = iphoneos; SKIP_INSTALL = YES; TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; WRAPPER_EXTENSION = bundle; }; - name = Debug; + name = "Profile-development"; }; - 235FFBAE9224BDCBFC9D0818C8AF5838 /* Debug-staging */ = { + 22D984A88591AC433FCD7590A0CA9A7C /* Profile-staging */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 19CE9AC8B13646CC03FBC77F131FF183 /* GoogleDataTransport.release.xcconfig */; + baseConfigurationReference = F9F252ACFB155ACF9BB56FB267880E01 /* url_launcher_ios.release.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; CODE_SIGNING_ALLOWED = NO; CODE_SIGNING_IDENTITY = "-"; CODE_SIGNING_REQUIRED = NO; - CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/GoogleDataTransport"; + CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/url_launcher_ios"; EXPANDED_CODE_SIGN_IDENTITY = "-"; GCC_PREPROCESSOR_DEFINITIONS = ( "$(inherited)", "PERMISSION_CAMERA=1", "PERMISSION_PHOTOS=1", ); - IBSC_MODULE = GoogleDataTransport; - INFOPLIST_FILE = "Target Support Files/GoogleDataTransport/ResourceBundle-GoogleDataTransport_Privacy-GoogleDataTransport-Info.plist"; + IBSC_MODULE = url_launcher_ios; + INFOPLIST_FILE = "Target Support Files/url_launcher_ios/ResourceBundle-url_launcher_ios_privacy-url_launcher_ios-Info.plist"; IPHONEOS_DEPLOYMENT_TARGET = 13.0; - PRODUCT_NAME = GoogleDataTransport_Privacy; + PRODUCT_NAME = url_launcher_ios_privacy; SDKROOT = iphoneos; SKIP_INSTALL = YES; TARGETED_DEVICE_FAMILY = "1,2"; VALIDATE_PRODUCT = YES; WRAPPER_EXTENSION = bundle; }; - name = "Debug-staging"; + name = "Profile-staging"; }; 2385553EB7E7F70C95A82F8351593803 /* Release-development */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 9281357EC3038ADC39C884ED1A1D94E1 /* flutter_inappwebview.release.xcconfig */; + baseConfigurationReference = F3BAFA0B70330F234C6B8BF559E7A252 /* flutter_inappwebview.release.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO; @@ -17323,34 +17235,76 @@ }; name = "Release-development"; }; - 2389CF44DDBC74140194652ADFE97EA2 /* Release */ = { + 23C4A58E7AB7B93F50C1D9075CAB736D /* Debug-production */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = B587A9A0D5365CAA9B8A2CC41EB17830 /* nanopb.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"; + GCC_PREFIX_HEADER = "Target Support Files/nanopb/nanopb-prefix.pch"; + GCC_PREPROCESSOR_DEFINITIONS = ( + "$(inherited)", + "PERMISSION_CAMERA=1", + "PERMISSION_PHOTOS=1", + ); + INFOPLIST_FILE = "Target Support Files/nanopb/nanopb-Info.plist"; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; + IPHONEOS_DEPLOYMENT_TARGET = 13.0; + LD_RUNPATH_SEARCH_PATHS = ( + "$(inherited)", + "@executable_path/Frameworks", + "@loader_path/Frameworks", + ); + 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_VERSION = 5.0; + TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; + VERSIONING_SYSTEM = "apple-generic"; + VERSION_INFO_PREFIX = ""; + }; + name = "Debug-production"; + }; + 23C6C2D6EAD594DE5920640A16B1AFC8 /* Debug-development */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 7B2F4BE2D901E9309159228CD856EBAF /* flutter_secure_storage.release.xcconfig */; + baseConfigurationReference = D1CCD0C16DFF0194B0A936A205ED4ED0 /* shared_preferences_foundation.release.xcconfig */; buildSettings = { + CLANG_ENABLE_OBJC_WEAK = NO; CODE_SIGNING_ALLOWED = NO; CODE_SIGNING_IDENTITY = "-"; CODE_SIGNING_REQUIRED = NO; - CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/flutter_secure_storage"; + CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/shared_preferences_foundation"; EXPANDED_CODE_SIGN_IDENTITY = "-"; GCC_PREPROCESSOR_DEFINITIONS = ( "$(inherited)", "PERMISSION_CAMERA=1", "PERMISSION_PHOTOS=1", ); - IBSC_MODULE = flutter_secure_storage; - INFOPLIST_FILE = "Target Support Files/flutter_secure_storage/ResourceBundle-flutter_secure_storage-flutter_secure_storage-Info.plist"; + IBSC_MODULE = shared_preferences_foundation; + INFOPLIST_FILE = "Target Support Files/shared_preferences_foundation/ResourceBundle-shared_preferences_foundation_privacy-shared_preferences_foundation-Info.plist"; IPHONEOS_DEPLOYMENT_TARGET = 13.0; - PRODUCT_NAME = flutter_secure_storage; + PRODUCT_NAME = shared_preferences_foundation_privacy; SDKROOT = iphoneos; SKIP_INSTALL = YES; TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; WRAPPER_EXTENSION = bundle; }; - name = Release; + name = "Debug-development"; }; 23EF37DBF86E3DC058AAD78B627E7C2B /* Debug-staging */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 73DB9045D22A4FBE50F8FACF34C6F052 /* url_launcher_ios.release.xcconfig */; + baseConfigurationReference = F9F252ACFB155ACF9BB56FB267880E01 /* url_launcher_ios.release.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO; @@ -17403,7 +17357,7 @@ }; 23EF44D7026DD72D88BA88D55A953C48 /* Profile */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 9311BBA346794A168AC09B1625AB1683 /* path_provider_foundation.release.xcconfig */; + baseConfigurationReference = 2529F7B6D57D43838BFCB332D2EDFE47 /* path_provider_foundation.release.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO; @@ -17457,7 +17411,7 @@ }; 242435866C1973457D3254A4A7ABB8AB /* Debug-development */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 3C623764A02C0B6BA3A628060F65377B /* flutter_native_splash.release.xcconfig */; + baseConfigurationReference = 57D6AA21B16FC3FF93AD29A67F768BB2 /* flutter_native_splash.release.xcconfig */; buildSettings = { CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -17512,9 +17466,116 @@ }; name = "Debug-development"; }; + 24346F6BA658BA69B507405137DAD7FA /* Stage-production */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = D4F18F4F6B39AC1431EB143FE2915402 /* GoogleUtilitiesComponents.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"; + GCC_PREPROCESSOR_DEFINITIONS = ( + "$(inherited)", + "PERMISSION_CAMERA=1", + "PERMISSION_PHOTOS=1", + ); + INFOPLIST_FILE = "Target Support Files/GoogleUtilitiesComponents/GoogleUtilitiesComponents-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/GoogleUtilitiesComponents/GoogleUtilitiesComponents.modulemap"; + PRODUCT_MODULE_NAME = GoogleUtilitiesComponents; + PRODUCT_NAME = GoogleUtilitiesComponents; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; + SWIFT_VERSION = 5.0; + TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; + VERSIONING_SYSTEM = "apple-generic"; + VERSION_INFO_PREFIX = ""; + }; + name = "Stage-production"; + }; + 247ADF3C2FE52F7B1DB3E3BD36C49960 /* Debug-staging */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = D1CCD0C16DFF0194B0A936A205ED4ED0 /* shared_preferences_foundation.release.xcconfig */; + buildSettings = { + CLANG_ENABLE_OBJC_WEAK = NO; + CODE_SIGNING_ALLOWED = NO; + CODE_SIGNING_IDENTITY = "-"; + CODE_SIGNING_REQUIRED = NO; + CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/shared_preferences_foundation"; + EXPANDED_CODE_SIGN_IDENTITY = "-"; + GCC_PREPROCESSOR_DEFINITIONS = ( + "$(inherited)", + "PERMISSION_CAMERA=1", + "PERMISSION_PHOTOS=1", + ); + IBSC_MODULE = shared_preferences_foundation; + INFOPLIST_FILE = "Target Support Files/shared_preferences_foundation/ResourceBundle-shared_preferences_foundation_privacy-shared_preferences_foundation-Info.plist"; + IPHONEOS_DEPLOYMENT_TARGET = 13.0; + PRODUCT_NAME = shared_preferences_foundation_privacy; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; + WRAPPER_EXTENSION = bundle; + }; + name = "Debug-staging"; + }; + 2484AC9DA2FEFAD7C4A11C6F44BB4E99 /* Stage-production */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 8ABCAE069412CFA453F913E4A7E0184B /* GoogleUtilities.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"; + GCC_PREPROCESSOR_DEFINITIONS = ( + "$(inherited)", + "PERMISSION_CAMERA=1", + "PERMISSION_PHOTOS=1", + ); + INFOPLIST_FILE = "Target Support Files/GoogleUtilities/GoogleUtilities-Info.plist"; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; + IPHONEOS_DEPLOYMENT_TARGET = 13.0; + LD_RUNPATH_SEARCH_PATHS = ( + "$(inherited)", + "@executable_path/Frameworks", + "@loader_path/Frameworks", + ); + 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_VERSION = 5.0; + TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; + VERSIONING_SYSTEM = "apple-generic"; + VERSION_INFO_PREFIX = ""; + }; + name = "Stage-production"; + }; 24FDEF26D5D20173984045DA06344561 /* Debug-staging */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 9311BBA346794A168AC09B1625AB1683 /* path_provider_foundation.release.xcconfig */; + baseConfigurationReference = 2529F7B6D57D43838BFCB332D2EDFE47 /* path_provider_foundation.release.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO; @@ -17568,7 +17629,7 @@ }; 2567F05DC3AFE5E2DFDED5FC6312CD2D /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 55E516637C2F7465762B5C2428BF50E8 /* flutter_email_sender.debug.xcconfig */; + baseConfigurationReference = FB633F8BFD9D6596E94916C974E76A66 /* flutter_email_sender.debug.xcconfig */; buildSettings = { CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -17624,36 +17685,9 @@ }; name = Debug; }; - 256879F173A7B7CF262593FEF11B90C4 /* Release-staging */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 1E47B40DD78F33D7394C9CDADE9B41A7 /* share_plus.release.xcconfig */; - buildSettings = { - CLANG_ENABLE_OBJC_WEAK = NO; - CODE_SIGNING_ALLOWED = NO; - CODE_SIGNING_IDENTITY = "-"; - CODE_SIGNING_REQUIRED = NO; - CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/share_plus"; - EXPANDED_CODE_SIGN_IDENTITY = "-"; - GCC_PREPROCESSOR_DEFINITIONS = ( - "$(inherited)", - "PERMISSION_CAMERA=1", - "PERMISSION_PHOTOS=1", - ); - IBSC_MODULE = share_plus; - INFOPLIST_FILE = "Target Support Files/share_plus/ResourceBundle-share_plus_privacy-share_plus-Info.plist"; - IPHONEOS_DEPLOYMENT_TARGET = 13.0; - PRODUCT_NAME = share_plus_privacy; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; - WRAPPER_EXTENSION = bundle; - }; - name = "Release-staging"; - }; 2570AC5C33A403BED1FEA51BA2A802A2 /* Release-development */ = { isa = XCBuildConfiguration; - baseConfigurationReference = F4C3D5A980B27BD2C418D61228F67F01 /* package_info_plus.release.xcconfig */; + baseConfigurationReference = 6201BD6C84B86BD570988C7E3B8409CB /* package_info_plus.release.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO; @@ -17711,7 +17745,7 @@ }; 2595185BBC417819D47CDC72038A51D9 /* Release-production */ = { isa = XCBuildConfiguration; - baseConfigurationReference = B91357BF97DBAECE656386331F10CCFD /* sqflite.release.xcconfig */; + baseConfigurationReference = B3F81CBF23C2B71680A734B4B74EA6EF /* sqflite.release.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO; @@ -17767,66 +17801,50 @@ }; name = "Release-production"; }; - 25B0A81034B1AF7567B5CA1DE4EACE15 /* Debug-staging */ = { + 259EABE3B6EC944EE78CD15DDB871157 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = D4F18F4F6B39AC1431EB143FE2915402 /* GoogleUtilitiesComponents.release.xcconfig */; + baseConfigurationReference = 9ECF4B2E725AF88A4D8BD77668F776C4 /* local_auth_darwin.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"; + CODE_SIGNING_ALLOWED = NO; + CODE_SIGNING_IDENTITY = "-"; + CODE_SIGNING_REQUIRED = NO; + CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/local_auth_darwin"; + EXPANDED_CODE_SIGN_IDENTITY = "-"; GCC_PREPROCESSOR_DEFINITIONS = ( "$(inherited)", "PERMISSION_CAMERA=1", "PERMISSION_PHOTOS=1", ); - INFOPLIST_FILE = "Target Support Files/GoogleUtilitiesComponents/GoogleUtilitiesComponents-Info.plist"; - INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; + IBSC_MODULE = local_auth_darwin; + INFOPLIST_FILE = "Target Support Files/local_auth_darwin/ResourceBundle-local_auth_darwin_privacy-local_auth_darwin-Info.plist"; 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/GoogleUtilitiesComponents/GoogleUtilitiesComponents.modulemap"; - PRODUCT_MODULE_NAME = GoogleUtilitiesComponents; - PRODUCT_NAME = GoogleUtilitiesComponents; + PRODUCT_NAME = local_auth_darwin_privacy; SDKROOT = iphoneos; SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_VERSION = 5.0; TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; - VERSIONING_SYSTEM = "apple-generic"; - VERSION_INFO_PREFIX = ""; + WRAPPER_EXTENSION = bundle; }; - name = "Debug-staging"; + name = Release; }; - 25C7B8C2843EADABF683538F127259BC /* Debug-production */ = { + 25DEEF4F80B4523A13EFCA85FDF4F67D /* Debug-production */ = { isa = XCBuildConfiguration; - baseConfigurationReference = C782F3D64A5DB279B07DD4535BD2F969 /* image_picker_ios.release.xcconfig */; + baseConfigurationReference = D1CCD0C16DFF0194B0A936A205ED4ED0 /* shared_preferences_foundation.release.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; CODE_SIGNING_ALLOWED = NO; CODE_SIGNING_IDENTITY = "-"; CODE_SIGNING_REQUIRED = NO; - CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/image_picker_ios"; + CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/shared_preferences_foundation"; EXPANDED_CODE_SIGN_IDENTITY = "-"; GCC_PREPROCESSOR_DEFINITIONS = ( "$(inherited)", "PERMISSION_CAMERA=1", "PERMISSION_PHOTOS=1", ); - IBSC_MODULE = image_picker_ios; - INFOPLIST_FILE = "Target Support Files/image_picker_ios/ResourceBundle-image_picker_ios_privacy-image_picker_ios-Info.plist"; + IBSC_MODULE = shared_preferences_foundation; + INFOPLIST_FILE = "Target Support Files/shared_preferences_foundation/ResourceBundle-shared_preferences_foundation_privacy-shared_preferences_foundation-Info.plist"; IPHONEOS_DEPLOYMENT_TARGET = 13.0; - PRODUCT_NAME = image_picker_ios_privacy; + PRODUCT_NAME = shared_preferences_foundation_privacy; SDKROOT = iphoneos; SKIP_INSTALL = YES; TARGETED_DEVICE_FAMILY = "1,2"; @@ -17837,7 +17855,7 @@ }; 25EDC84CED56C742DC041C51088B85E6 /* Stage-production */ = { isa = XCBuildConfiguration; - baseConfigurationReference = C782F3D64A5DB279B07DD4535BD2F969 /* image_picker_ios.release.xcconfig */; + baseConfigurationReference = 98AE98BF8E201BFC344D7356F2883701 /* image_picker_ios.release.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO; @@ -17893,109 +17911,71 @@ }; name = "Stage-production"; }; - 268EC6D5CBE9FD6D79BE8F69BC9A4948 /* Profile */ = { + 26E07AFA0DD50837F0D3445686A7ADF3 /* Release-staging */ = { isa = XCBuildConfiguration; - baseConfigurationReference = F4C3D5A980B27BD2C418D61228F67F01 /* package_info_plus.release.xcconfig */; - buildSettings = { - CLANG_ENABLE_OBJC_WEAK = NO; - CODE_SIGNING_ALLOWED = NO; - CODE_SIGNING_IDENTITY = "-"; - CODE_SIGNING_REQUIRED = NO; - CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/package_info_plus"; - EXPANDED_CODE_SIGN_IDENTITY = "-"; - GCC_PREPROCESSOR_DEFINITIONS = ( - "$(inherited)", - "PERMISSION_CAMERA=1", - "PERMISSION_PHOTOS=1", - ); - IBSC_MODULE = package_info_plus; - INFOPLIST_FILE = "Target Support Files/package_info_plus/ResourceBundle-package_info_plus_privacy-package_info_plus-Info.plist"; - IPHONEOS_DEPLOYMENT_TARGET = 13.0; - PRODUCT_NAME = package_info_plus_privacy; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; - WRAPPER_EXTENSION = bundle; - }; - name = Profile; - }; - 27047D9F28F3148459E4FC9F9C2779F0 /* Debug-production */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 85EF9BEBA8B20A13BA96488C86CD663A /* MLKitCommon.release.xcconfig */; + baseConfigurationReference = 8ABCAE069412CFA453F913E4A7E0184B /* GoogleUtilities.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"; GCC_PREPROCESSOR_DEFINITIONS = ( "$(inherited)", "PERMISSION_CAMERA=1", "PERMISSION_PHOTOS=1", ); + INFOPLIST_FILE = "Target Support Files/GoogleUtilities/GoogleUtilities-Info.plist"; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; IPHONEOS_DEPLOYMENT_TARGET = 13.0; LD_RUNPATH_SEARCH_PATHS = ( "$(inherited)", "@executable_path/Frameworks", + "@loader_path/Frameworks", ); - SDKROOT = iphoneos; - TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; - }; - name = "Debug-production"; - }; - 272143EC5CF2FA33E005C07B060A02A7 /* Profile-development */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 19CE9AC8B13646CC03FBC77F131FF183 /* GoogleDataTransport.release.xcconfig */; - buildSettings = { - CLANG_ENABLE_OBJC_WEAK = NO; - CODE_SIGNING_ALLOWED = NO; - CODE_SIGNING_IDENTITY = "-"; - CODE_SIGNING_REQUIRED = NO; - CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/GoogleDataTransport"; - EXPANDED_CODE_SIGN_IDENTITY = "-"; - GCC_PREPROCESSOR_DEFINITIONS = ( - "$(inherited)", - "PERMISSION_CAMERA=1", - "PERMISSION_PHOTOS=1", - ); - IBSC_MODULE = GoogleDataTransport; - INFOPLIST_FILE = "Target Support Files/GoogleDataTransport/ResourceBundle-GoogleDataTransport_Privacy-GoogleDataTransport-Info.plist"; - IPHONEOS_DEPLOYMENT_TARGET = 13.0; - PRODUCT_NAME = GoogleDataTransport_Privacy; + 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_VERSION = 5.0; TARGETED_DEVICE_FAMILY = "1,2"; VALIDATE_PRODUCT = YES; - WRAPPER_EXTENSION = bundle; + VERSIONING_SYSTEM = "apple-generic"; + VERSION_INFO_PREFIX = ""; }; - name = "Profile-development"; + name = "Release-staging"; }; - 27249699F762C41BB4F54B900DC8DF0C /* Debug-staging */ = { + 26E636A7D471BD12F37F4D8BAC8FD220 /* Profile-development */ = { isa = XCBuildConfiguration; - baseConfigurationReference = B587A9A0D5365CAA9B8A2CC41EB17830 /* nanopb.release.xcconfig */; + baseConfigurationReference = 196B9320A9BD7C09E7C5420F49D709B3 /* share_plus.release.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; CODE_SIGNING_ALLOWED = NO; CODE_SIGNING_IDENTITY = "-"; CODE_SIGNING_REQUIRED = NO; - CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/nanopb"; + CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/share_plus"; EXPANDED_CODE_SIGN_IDENTITY = "-"; GCC_PREPROCESSOR_DEFINITIONS = ( "$(inherited)", "PERMISSION_CAMERA=1", "PERMISSION_PHOTOS=1", ); - IBSC_MODULE = nanopb; - INFOPLIST_FILE = "Target Support Files/nanopb/ResourceBundle-nanopb_Privacy-nanopb-Info.plist"; + IBSC_MODULE = share_plus; + INFOPLIST_FILE = "Target Support Files/share_plus/ResourceBundle-share_plus_privacy-share_plus-Info.plist"; IPHONEOS_DEPLOYMENT_TARGET = 13.0; - PRODUCT_NAME = nanopb_Privacy; + PRODUCT_NAME = share_plus_privacy; SDKROOT = iphoneos; SKIP_INSTALL = YES; TARGETED_DEVICE_FAMILY = "1,2"; VALIDATE_PRODUCT = YES; WRAPPER_EXTENSION = bundle; }; - name = "Debug-staging"; + name = "Profile-development"; }; 2775A2B73F8F20CEB75221B16AE41764 /* Release-development */ = { isa = XCBuildConfiguration; @@ -18057,36 +18037,36 @@ }; name = "Release-development"; }; - 27DA0DF7F2414E733323959514ED71AA /* Debug-production */ = { + 27805E63102D0622C3FCA26E345E8E55 /* Stage-production */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 73DB9045D22A4FBE50F8FACF34C6F052 /* url_launcher_ios.release.xcconfig */; + baseConfigurationReference = 57D6AA21B16FC3FF93AD29A67F768BB2 /* flutter_native_splash.release.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; CODE_SIGNING_ALLOWED = NO; CODE_SIGNING_IDENTITY = "-"; CODE_SIGNING_REQUIRED = NO; - CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/url_launcher_ios"; + CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/flutter_native_splash"; EXPANDED_CODE_SIGN_IDENTITY = "-"; GCC_PREPROCESSOR_DEFINITIONS = ( "$(inherited)", "PERMISSION_CAMERA=1", "PERMISSION_PHOTOS=1", ); - IBSC_MODULE = url_launcher_ios; - INFOPLIST_FILE = "Target Support Files/url_launcher_ios/ResourceBundle-url_launcher_ios_privacy-url_launcher_ios-Info.plist"; + IBSC_MODULE = flutter_native_splash; + INFOPLIST_FILE = "Target Support Files/flutter_native_splash/ResourceBundle-flutter_native_splash_privacy-flutter_native_splash-Info.plist"; IPHONEOS_DEPLOYMENT_TARGET = 13.0; - PRODUCT_NAME = url_launcher_ios_privacy; + PRODUCT_NAME = flutter_native_splash_privacy; SDKROOT = iphoneos; SKIP_INSTALL = YES; TARGETED_DEVICE_FAMILY = "1,2"; VALIDATE_PRODUCT = YES; WRAPPER_EXTENSION = bundle; }; - name = "Debug-production"; + name = "Stage-production"; }; 28483D2DDAA6E382ACD2144595DE5E60 /* Profile-development */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 79066AF4601F7FFEE6681FB7DA45FA72 /* flutter_keyboard_visibility.release.xcconfig */; + baseConfigurationReference = A0E07105D46C98227F9CF101D83E460C /* flutter_keyboard_visibility.release.xcconfig */; buildSettings = { CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -18141,33 +18121,6 @@ }; name = "Profile-development"; }; - 284F95CEA5655C316FB4AA15AD01D896 /* Release-development */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = B91357BF97DBAECE656386331F10CCFD /* sqflite.release.xcconfig */; - buildSettings = { - CLANG_ENABLE_OBJC_WEAK = NO; - CODE_SIGNING_ALLOWED = NO; - CODE_SIGNING_IDENTITY = "-"; - CODE_SIGNING_REQUIRED = NO; - CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/sqflite"; - EXPANDED_CODE_SIGN_IDENTITY = "-"; - GCC_PREPROCESSOR_DEFINITIONS = ( - "$(inherited)", - "PERMISSION_CAMERA=1", - "PERMISSION_PHOTOS=1", - ); - IBSC_MODULE = sqflite; - INFOPLIST_FILE = "Target Support Files/sqflite/ResourceBundle-sqflite_darwin_privacy-sqflite-Info.plist"; - IPHONEOS_DEPLOYMENT_TARGET = 13.0; - PRODUCT_NAME = sqflite_darwin_privacy; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; - WRAPPER_EXTENSION = bundle; - }; - name = "Release-development"; - }; 2876EF9B224754876A29E8CFCF2A7328 /* Profile-production */ = { isa = XCBuildConfiguration; buildSettings = { @@ -18253,115 +18206,9 @@ }; name = "Debug-production"; }; - 28B8F43AB35933CC442AE0477418C704 /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 8ABCAE069412CFA453F913E4A7E0184B /* GoogleUtilities.release.xcconfig */; - buildSettings = { - CODE_SIGNING_ALLOWED = NO; - CODE_SIGNING_IDENTITY = "-"; - CODE_SIGNING_REQUIRED = NO; - CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/GoogleUtilities"; - EXPANDED_CODE_SIGN_IDENTITY = "-"; - GCC_PREPROCESSOR_DEFINITIONS = ( - "$(inherited)", - "PERMISSION_CAMERA=1", - "PERMISSION_PHOTOS=1", - ); - IBSC_MODULE = GoogleUtilities; - INFOPLIST_FILE = "Target Support Files/GoogleUtilities/ResourceBundle-GoogleUtilities_Privacy-GoogleUtilities-Info.plist"; - IPHONEOS_DEPLOYMENT_TARGET = 13.0; - PRODUCT_NAME = GoogleUtilities_Privacy; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - TARGETED_DEVICE_FAMILY = "1,2"; - WRAPPER_EXTENSION = bundle; - }; - name = Release; - }; - 2941003B4C11D7188F28406E599F898C /* Profile-staging */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 9311BBA346794A168AC09B1625AB1683 /* path_provider_foundation.release.xcconfig */; - buildSettings = { - CLANG_ENABLE_OBJC_WEAK = NO; - CODE_SIGNING_ALLOWED = NO; - CODE_SIGNING_IDENTITY = "-"; - CODE_SIGNING_REQUIRED = NO; - CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/path_provider_foundation"; - EXPANDED_CODE_SIGN_IDENTITY = "-"; - GCC_PREPROCESSOR_DEFINITIONS = ( - "$(inherited)", - "PERMISSION_CAMERA=1", - "PERMISSION_PHOTOS=1", - ); - IBSC_MODULE = path_provider_foundation; - INFOPLIST_FILE = "Target Support Files/path_provider_foundation/ResourceBundle-path_provider_foundation_privacy-path_provider_foundation-Info.plist"; - IPHONEOS_DEPLOYMENT_TARGET = 13.0; - PRODUCT_NAME = path_provider_foundation_privacy; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; - WRAPPER_EXTENSION = bundle; - }; - name = "Profile-staging"; - }; - 298AFDDC69410EC347C15691AE838098 /* Release-staging */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 8ABCAE069412CFA453F913E4A7E0184B /* GoogleUtilities.release.xcconfig */; - buildSettings = { - CLANG_ENABLE_OBJC_WEAK = NO; - CODE_SIGNING_ALLOWED = NO; - CODE_SIGNING_IDENTITY = "-"; - CODE_SIGNING_REQUIRED = NO; - CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/GoogleUtilities"; - EXPANDED_CODE_SIGN_IDENTITY = "-"; - GCC_PREPROCESSOR_DEFINITIONS = ( - "$(inherited)", - "PERMISSION_CAMERA=1", - "PERMISSION_PHOTOS=1", - ); - IBSC_MODULE = GoogleUtilities; - INFOPLIST_FILE = "Target Support Files/GoogleUtilities/ResourceBundle-GoogleUtilities_Privacy-GoogleUtilities-Info.plist"; - IPHONEOS_DEPLOYMENT_TARGET = 13.0; - PRODUCT_NAME = GoogleUtilities_Privacy; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; - WRAPPER_EXTENSION = bundle; - }; - name = "Release-staging"; - }; - 29AA073755258D7252DF87E3391BAC4A /* Release-staging */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 9311BBA346794A168AC09B1625AB1683 /* path_provider_foundation.release.xcconfig */; - buildSettings = { - CLANG_ENABLE_OBJC_WEAK = NO; - CODE_SIGNING_ALLOWED = NO; - CODE_SIGNING_IDENTITY = "-"; - CODE_SIGNING_REQUIRED = NO; - CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/path_provider_foundation"; - EXPANDED_CODE_SIGN_IDENTITY = "-"; - GCC_PREPROCESSOR_DEFINITIONS = ( - "$(inherited)", - "PERMISSION_CAMERA=1", - "PERMISSION_PHOTOS=1", - ); - IBSC_MODULE = path_provider_foundation; - INFOPLIST_FILE = "Target Support Files/path_provider_foundation/ResourceBundle-path_provider_foundation_privacy-path_provider_foundation-Info.plist"; - IPHONEOS_DEPLOYMENT_TARGET = 13.0; - PRODUCT_NAME = path_provider_foundation_privacy; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; - WRAPPER_EXTENSION = bundle; - }; - name = "Release-staging"; - }; 2A4D5123831F05B968FBDFED5213B5E0 /* Release-production */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 79066AF4601F7FFEE6681FB7DA45FA72 /* flutter_keyboard_visibility.release.xcconfig */; + baseConfigurationReference = A0E07105D46C98227F9CF101D83E460C /* flutter_keyboard_visibility.release.xcconfig */; buildSettings = { CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -18416,52 +18263,25 @@ }; name = "Release-production"; }; - 2A7ED52152E74E71DF4168E06D1F427D /* Profile-development */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = A7D0232BFA7DB2BABBC206DCBF4E211C /* flutter_email_sender.release.xcconfig */; - buildSettings = { - CLANG_ENABLE_OBJC_WEAK = NO; - CODE_SIGNING_ALLOWED = NO; - CODE_SIGNING_IDENTITY = "-"; - CODE_SIGNING_REQUIRED = NO; - CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/flutter_email_sender"; - EXPANDED_CODE_SIGN_IDENTITY = "-"; - GCC_PREPROCESSOR_DEFINITIONS = ( - "$(inherited)", - "PERMISSION_CAMERA=1", - "PERMISSION_PHOTOS=1", - ); - IBSC_MODULE = flutter_email_sender; - INFOPLIST_FILE = "Target Support Files/flutter_email_sender/ResourceBundle-flutter_email_sender-flutter_email_sender-Info.plist"; - IPHONEOS_DEPLOYMENT_TARGET = 13.0; - PRODUCT_NAME = flutter_email_sender; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; - WRAPPER_EXTENSION = bundle; - }; - name = "Profile-development"; - }; - 2A8CFDE6E050A96D3277A72B5AC51D1F /* Debug */ = { + 2AA2283484A43332312AEFFFFA5113C9 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 44714AD113F4B1583BDC85E549AFF081 /* nanopb.debug.xcconfig */; + baseConfigurationReference = 52F650C38F364BA6AD78BDD7775115D5 /* sqflite.debug.xcconfig */; buildSettings = { CODE_SIGNING_ALLOWED = NO; CODE_SIGNING_IDENTITY = "-"; CODE_SIGNING_REQUIRED = NO; - CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/nanopb"; + CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/sqflite"; EXPANDED_CODE_SIGN_IDENTITY = "-"; GCC_PREPROCESSOR_DEFINITIONS = ( "$(inherited)", "PERMISSION_CAMERA=1", "PERMISSION_PHOTOS=1", ); - IBSC_MODULE = nanopb; - INFOPLIST_FILE = "Target Support Files/nanopb/ResourceBundle-nanopb_Privacy-nanopb-Info.plist"; + IBSC_MODULE = sqflite; + INFOPLIST_FILE = "Target Support Files/sqflite/ResourceBundle-sqflite_darwin_privacy-sqflite-Info.plist"; IPHONEOS_DEPLOYMENT_TARGET = 13.0; ONLY_ACTIVE_ARCH = NO; - PRODUCT_NAME = nanopb_Privacy; + PRODUCT_NAME = sqflite_darwin_privacy; SDKROOT = iphoneos; SKIP_INSTALL = YES; TARGETED_DEVICE_FAMILY = "1,2"; @@ -18471,7 +18291,7 @@ }; 2AA5EBDF43D33D08750F621DCDE13201 /* Debug-development */ = { isa = XCBuildConfiguration; - baseConfigurationReference = A7D0232BFA7DB2BABBC206DCBF4E211C /* flutter_email_sender.release.xcconfig */; + baseConfigurationReference = 59E64776226CA679807D58D84423DF5F /* flutter_email_sender.release.xcconfig */; buildSettings = { CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -18527,88 +18347,89 @@ }; name = "Debug-development"; }; - 2AC6880FF4CE1A4546D7146909BA6858 /* Release */ = { + 2B1F267FC91DFFD841A1974CB66A28C6 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 73DB9045D22A4FBE50F8FACF34C6F052 /* url_launcher_ios.release.xcconfig */; + baseConfigurationReference = EECAC159C73F566285813641A0A1ECAA /* flutter_secure_storage.debug.xcconfig */; buildSettings = { CODE_SIGNING_ALLOWED = NO; CODE_SIGNING_IDENTITY = "-"; CODE_SIGNING_REQUIRED = NO; - CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/url_launcher_ios"; + CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/flutter_secure_storage"; EXPANDED_CODE_SIGN_IDENTITY = "-"; GCC_PREPROCESSOR_DEFINITIONS = ( "$(inherited)", "PERMISSION_CAMERA=1", "PERMISSION_PHOTOS=1", ); - IBSC_MODULE = url_launcher_ios; - INFOPLIST_FILE = "Target Support Files/url_launcher_ios/ResourceBundle-url_launcher_ios_privacy-url_launcher_ios-Info.plist"; + IBSC_MODULE = flutter_secure_storage; + INFOPLIST_FILE = "Target Support Files/flutter_secure_storage/ResourceBundle-flutter_secure_storage-flutter_secure_storage-Info.plist"; IPHONEOS_DEPLOYMENT_TARGET = 13.0; - PRODUCT_NAME = url_launcher_ios_privacy; + ONLY_ACTIVE_ARCH = NO; + PRODUCT_NAME = flutter_secure_storage; SDKROOT = iphoneos; SKIP_INSTALL = YES; TARGETED_DEVICE_FAMILY = "1,2"; WRAPPER_EXTENSION = bundle; }; - name = Release; + name = Debug; }; - 2BACDB553E8C35CCEFDC5A5F4303846F /* Debug-development */ = { + 2BDC869E9F77A94DF6A164E2DCE65A99 /* Release-production */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 4A911B9FACB388B308D1ABB5669DD583 /* permission_handler_apple.release.xcconfig */; + baseConfigurationReference = D1CCD0C16DFF0194B0A936A205ED4ED0 /* shared_preferences_foundation.release.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; CODE_SIGNING_ALLOWED = NO; CODE_SIGNING_IDENTITY = "-"; CODE_SIGNING_REQUIRED = NO; - CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/permission_handler_apple"; + CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/shared_preferences_foundation"; EXPANDED_CODE_SIGN_IDENTITY = "-"; GCC_PREPROCESSOR_DEFINITIONS = ( "$(inherited)", "PERMISSION_CAMERA=1", "PERMISSION_PHOTOS=1", ); - IBSC_MODULE = permission_handler_apple; - INFOPLIST_FILE = "Target Support Files/permission_handler_apple/ResourceBundle-permission_handler_apple_privacy-permission_handler_apple-Info.plist"; + IBSC_MODULE = shared_preferences_foundation; + INFOPLIST_FILE = "Target Support Files/shared_preferences_foundation/ResourceBundle-shared_preferences_foundation_privacy-shared_preferences_foundation-Info.plist"; IPHONEOS_DEPLOYMENT_TARGET = 13.0; - PRODUCT_NAME = permission_handler_apple_privacy; + PRODUCT_NAME = shared_preferences_foundation_privacy; SDKROOT = iphoneos; SKIP_INSTALL = YES; TARGETED_DEVICE_FAMILY = "1,2"; VALIDATE_PRODUCT = YES; WRAPPER_EXTENSION = bundle; }; - name = "Debug-development"; + name = "Release-production"; }; - 2BF7E2E23F6BE44AA27BF66EFB29B789 /* Profile-production */ = { + 2C0F95AEFDC370BA57847E2F88C9CD45 /* Debug-development */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 86E540DA830E020FCC7DEA27000E1A98 /* shared_preferences_foundation.release.xcconfig */; + baseConfigurationReference = 0F62AA5AF0EE048AB478074EDD1A2CD4 /* connectivity_plus.release.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; CODE_SIGNING_ALLOWED = NO; CODE_SIGNING_IDENTITY = "-"; CODE_SIGNING_REQUIRED = NO; - CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/shared_preferences_foundation"; + CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/connectivity_plus"; EXPANDED_CODE_SIGN_IDENTITY = "-"; GCC_PREPROCESSOR_DEFINITIONS = ( "$(inherited)", "PERMISSION_CAMERA=1", "PERMISSION_PHOTOS=1", ); - IBSC_MODULE = shared_preferences_foundation; - INFOPLIST_FILE = "Target Support Files/shared_preferences_foundation/ResourceBundle-shared_preferences_foundation_privacy-shared_preferences_foundation-Info.plist"; + IBSC_MODULE = connectivity_plus; + INFOPLIST_FILE = "Target Support Files/connectivity_plus/ResourceBundle-connectivity_plus_privacy-connectivity_plus-Info.plist"; IPHONEOS_DEPLOYMENT_TARGET = 13.0; - PRODUCT_NAME = shared_preferences_foundation_privacy; + PRODUCT_NAME = connectivity_plus_privacy; SDKROOT = iphoneos; SKIP_INSTALL = YES; TARGETED_DEVICE_FAMILY = "1,2"; VALIDATE_PRODUCT = YES; WRAPPER_EXTENSION = bundle; }; - name = "Profile-production"; + name = "Debug-development"; }; 2D077531C43F9AA0FCE58D016DA8989C /* Release-production */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 4A911B9FACB388B308D1ABB5669DD583 /* permission_handler_apple.release.xcconfig */; + baseConfigurationReference = 4BB6D83A83366DD3295B456FF36F5E3F /* permission_handler_apple.release.xcconfig */; buildSettings = { CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -18665,33 +18486,6 @@ }; name = "Release-production"; }; - 2D2E58CF5C8F7E4DA633CF8C9564295A /* Stage-production */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = A7D0232BFA7DB2BABBC206DCBF4E211C /* flutter_email_sender.release.xcconfig */; - buildSettings = { - CLANG_ENABLE_OBJC_WEAK = NO; - CODE_SIGNING_ALLOWED = NO; - CODE_SIGNING_IDENTITY = "-"; - CODE_SIGNING_REQUIRED = NO; - CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/flutter_email_sender"; - EXPANDED_CODE_SIGN_IDENTITY = "-"; - GCC_PREPROCESSOR_DEFINITIONS = ( - "$(inherited)", - "PERMISSION_CAMERA=1", - "PERMISSION_PHOTOS=1", - ); - IBSC_MODULE = flutter_email_sender; - INFOPLIST_FILE = "Target Support Files/flutter_email_sender/ResourceBundle-flutter_email_sender-flutter_email_sender-Info.plist"; - IPHONEOS_DEPLOYMENT_TARGET = 13.0; - PRODUCT_NAME = flutter_email_sender; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; - WRAPPER_EXTENSION = bundle; - }; - name = "Stage-production"; - }; 2D55864860B19F6CEE7756BED545DDEF /* Profile-staging */ = { isa = XCBuildConfiguration; baseConfigurationReference = 19CE9AC8B13646CC03FBC77F131FF183 /* GoogleDataTransport.release.xcconfig */; @@ -18756,7 +18550,7 @@ }; 2DCCC5C58F4C9E92C435D4928DFE2DAD /* Debug-development */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 6D3FC8F30A9759CEC467C9CBCFF1BDA6 /* mobile_scanner.release.xcconfig */; + baseConfigurationReference = 55CABBFDA741B6809730DEE1165E60C9 /* mobile_scanner.release.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO; @@ -18813,36 +18607,32 @@ }; name = "Debug-development"; }; - 2DD14EDB37296674B88793904967E639 /* Debug-production */ = { + 2E5E8E02E6A0CB8A600C728B5599BF4A /* Profile-production */ = { isa = XCBuildConfiguration; - baseConfigurationReference = A7D0232BFA7DB2BABBC206DCBF4E211C /* flutter_email_sender.release.xcconfig */; + baseConfigurationReference = 5D2B88AD25CD5EBE586D760474336767 /* MLKitBarcodeScanning.release.xcconfig */; buildSettings = { + ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; + ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; CLANG_ENABLE_OBJC_WEAK = NO; - CODE_SIGNING_ALLOWED = NO; - CODE_SIGNING_IDENTITY = "-"; - CODE_SIGNING_REQUIRED = NO; - CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/flutter_email_sender"; - EXPANDED_CODE_SIGN_IDENTITY = "-"; GCC_PREPROCESSOR_DEFINITIONS = ( "$(inherited)", "PERMISSION_CAMERA=1", "PERMISSION_PHOTOS=1", ); - IBSC_MODULE = flutter_email_sender; - INFOPLIST_FILE = "Target Support Files/flutter_email_sender/ResourceBundle-flutter_email_sender-flutter_email_sender-Info.plist"; IPHONEOS_DEPLOYMENT_TARGET = 13.0; - PRODUCT_NAME = flutter_email_sender; + LD_RUNPATH_SEARCH_PATHS = ( + "$(inherited)", + "@executable_path/Frameworks", + ); SDKROOT = iphoneos; - SKIP_INSTALL = YES; TARGETED_DEVICE_FAMILY = "1,2"; VALIDATE_PRODUCT = YES; - WRAPPER_EXTENSION = bundle; }; - name = "Debug-production"; + name = "Profile-production"; }; - 2DDF1D234133102CD3629E64BE773149 /* Debug-development */ = { + 2EADAF7574C7CA65E23934C2D6EE3405 /* Debug-production */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 85EF9BEBA8B20A13BA96488C86CD663A /* MLKitCommon.release.xcconfig */; + baseConfigurationReference = 5D2B88AD25CD5EBE586D760474336767 /* MLKitBarcodeScanning.release.xcconfig */; buildSettings = { ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; @@ -18861,38 +18651,38 @@ TARGETED_DEVICE_FAMILY = "1,2"; VALIDATE_PRODUCT = YES; }; - name = "Debug-development"; + name = "Debug-production"; }; - 2E1420EA0B919DA325207AFFE8185D4C /* Debug-staging */ = { + 2EDDEEE4739AF8423C83A0C02DFE2187 /* Debug-development */ = { isa = XCBuildConfiguration; - baseConfigurationReference = B60761FA10DAC783EF5D7E4C1574226A /* connectivity_plus.release.xcconfig */; + baseConfigurationReference = 98AE98BF8E201BFC344D7356F2883701 /* image_picker_ios.release.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; CODE_SIGNING_ALLOWED = NO; CODE_SIGNING_IDENTITY = "-"; CODE_SIGNING_REQUIRED = NO; - CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/connectivity_plus"; + CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/image_picker_ios"; EXPANDED_CODE_SIGN_IDENTITY = "-"; GCC_PREPROCESSOR_DEFINITIONS = ( "$(inherited)", "PERMISSION_CAMERA=1", "PERMISSION_PHOTOS=1", ); - IBSC_MODULE = connectivity_plus; - INFOPLIST_FILE = "Target Support Files/connectivity_plus/ResourceBundle-connectivity_plus_privacy-connectivity_plus-Info.plist"; + IBSC_MODULE = image_picker_ios; + INFOPLIST_FILE = "Target Support Files/image_picker_ios/ResourceBundle-image_picker_ios_privacy-image_picker_ios-Info.plist"; IPHONEOS_DEPLOYMENT_TARGET = 13.0; - PRODUCT_NAME = connectivity_plus_privacy; + PRODUCT_NAME = image_picker_ios_privacy; SDKROOT = iphoneos; SKIP_INSTALL = YES; TARGETED_DEVICE_FAMILY = "1,2"; VALIDATE_PRODUCT = YES; WRAPPER_EXTENSION = bundle; }; - name = "Debug-staging"; + name = "Debug-development"; }; 2EFC93AA068BF8B543C0C9850614DEDE /* Profile-staging */ = { isa = XCBuildConfiguration; - baseConfigurationReference = B91357BF97DBAECE656386331F10CCFD /* sqflite.release.xcconfig */; + baseConfigurationReference = B3F81CBF23C2B71680A734B4B74EA6EF /* sqflite.release.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO; @@ -18948,36 +18738,34 @@ }; name = "Profile-staging"; }; - 2F78DCEF761A0687A991F7EA49627888 /* Debug-development */ = { + 2F5FAD4FE889BB7BC059706F735E5B35 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 06772A7CF38F34E24C0E8F60729C6339 /* local_auth_darwin.release.xcconfig */; + baseConfigurationReference = 19CE9AC8B13646CC03FBC77F131FF183 /* GoogleDataTransport.release.xcconfig */; buildSettings = { - CLANG_ENABLE_OBJC_WEAK = NO; CODE_SIGNING_ALLOWED = NO; CODE_SIGNING_IDENTITY = "-"; CODE_SIGNING_REQUIRED = NO; - CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/local_auth_darwin"; + CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/GoogleDataTransport"; EXPANDED_CODE_SIGN_IDENTITY = "-"; GCC_PREPROCESSOR_DEFINITIONS = ( "$(inherited)", "PERMISSION_CAMERA=1", "PERMISSION_PHOTOS=1", ); - IBSC_MODULE = local_auth_darwin; - INFOPLIST_FILE = "Target Support Files/local_auth_darwin/ResourceBundle-local_auth_darwin_privacy-local_auth_darwin-Info.plist"; + IBSC_MODULE = GoogleDataTransport; + INFOPLIST_FILE = "Target Support Files/GoogleDataTransport/ResourceBundle-GoogleDataTransport_Privacy-GoogleDataTransport-Info.plist"; IPHONEOS_DEPLOYMENT_TARGET = 13.0; - PRODUCT_NAME = local_auth_darwin_privacy; + PRODUCT_NAME = GoogleDataTransport_Privacy; SDKROOT = iphoneos; SKIP_INSTALL = YES; TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; WRAPPER_EXTENSION = bundle; }; - name = "Debug-development"; + name = Release; }; 2FF7C6AB7E3851F90A0AC33F9BC741AC /* Debug-development */ = { isa = XCBuildConfiguration; - baseConfigurationReference = C782F3D64A5DB279B07DD4535BD2F969 /* image_picker_ios.release.xcconfig */; + baseConfigurationReference = 98AE98BF8E201BFC344D7356F2883701 /* image_picker_ios.release.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO; @@ -19033,63 +18821,9 @@ }; name = "Debug-development"; }; - 301135C3C975DC7BCDCF1E1946C7C8FD /* Profile-production */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 06772A7CF38F34E24C0E8F60729C6339 /* local_auth_darwin.release.xcconfig */; - buildSettings = { - CLANG_ENABLE_OBJC_WEAK = NO; - CODE_SIGNING_ALLOWED = NO; - CODE_SIGNING_IDENTITY = "-"; - CODE_SIGNING_REQUIRED = NO; - CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/local_auth_darwin"; - EXPANDED_CODE_SIGN_IDENTITY = "-"; - GCC_PREPROCESSOR_DEFINITIONS = ( - "$(inherited)", - "PERMISSION_CAMERA=1", - "PERMISSION_PHOTOS=1", - ); - IBSC_MODULE = local_auth_darwin; - INFOPLIST_FILE = "Target Support Files/local_auth_darwin/ResourceBundle-local_auth_darwin_privacy-local_auth_darwin-Info.plist"; - IPHONEOS_DEPLOYMENT_TARGET = 13.0; - PRODUCT_NAME = local_auth_darwin_privacy; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; - WRAPPER_EXTENSION = bundle; - }; - name = "Profile-production"; - }; - 3023AF932C21F98B87F1CC13C8B34186 /* Profile */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 06772A7CF38F34E24C0E8F60729C6339 /* local_auth_darwin.release.xcconfig */; - buildSettings = { - CLANG_ENABLE_OBJC_WEAK = NO; - CODE_SIGNING_ALLOWED = NO; - CODE_SIGNING_IDENTITY = "-"; - CODE_SIGNING_REQUIRED = NO; - CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/local_auth_darwin"; - EXPANDED_CODE_SIGN_IDENTITY = "-"; - GCC_PREPROCESSOR_DEFINITIONS = ( - "$(inherited)", - "PERMISSION_CAMERA=1", - "PERMISSION_PHOTOS=1", - ); - IBSC_MODULE = local_auth_darwin; - INFOPLIST_FILE = "Target Support Files/local_auth_darwin/ResourceBundle-local_auth_darwin_privacy-local_auth_darwin-Info.plist"; - IPHONEOS_DEPLOYMENT_TARGET = 13.0; - PRODUCT_NAME = local_auth_darwin_privacy; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; - WRAPPER_EXTENSION = bundle; - }; - name = Profile; - }; 3027D6C57F7FE982CBB5A7DF7BD52054 /* Profile-staging */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 4A911B9FACB388B308D1ABB5669DD583 /* permission_handler_apple.release.xcconfig */; + baseConfigurationReference = 4BB6D83A83366DD3295B456FF36F5E3F /* permission_handler_apple.release.xcconfig */; buildSettings = { CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -19146,143 +18880,59 @@ }; name = "Profile-staging"; }; - 305044CAD5267EF1D12D04700E2419CA /* Stage-production */ = { + 30EFAA8C9E6974E7C44F1EA019562158 /* Release-production */ = { isa = XCBuildConfiguration; - baseConfigurationReference = B60761FA10DAC783EF5D7E4C1574226A /* connectivity_plus.release.xcconfig */; + baseConfigurationReference = 57D6AA21B16FC3FF93AD29A67F768BB2 /* flutter_native_splash.release.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; CODE_SIGNING_ALLOWED = NO; CODE_SIGNING_IDENTITY = "-"; CODE_SIGNING_REQUIRED = NO; - CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/connectivity_plus"; + CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/flutter_native_splash"; EXPANDED_CODE_SIGN_IDENTITY = "-"; GCC_PREPROCESSOR_DEFINITIONS = ( "$(inherited)", "PERMISSION_CAMERA=1", "PERMISSION_PHOTOS=1", ); - IBSC_MODULE = connectivity_plus; - INFOPLIST_FILE = "Target Support Files/connectivity_plus/ResourceBundle-connectivity_plus_privacy-connectivity_plus-Info.plist"; + IBSC_MODULE = flutter_native_splash; + INFOPLIST_FILE = "Target Support Files/flutter_native_splash/ResourceBundle-flutter_native_splash_privacy-flutter_native_splash-Info.plist"; IPHONEOS_DEPLOYMENT_TARGET = 13.0; - PRODUCT_NAME = connectivity_plus_privacy; + PRODUCT_NAME = flutter_native_splash_privacy; SDKROOT = iphoneos; SKIP_INSTALL = YES; TARGETED_DEVICE_FAMILY = "1,2"; VALIDATE_PRODUCT = YES; WRAPPER_EXTENSION = bundle; }; - name = "Stage-production"; - }; - 30BF650AD1A92983D1EF999F0107D40A /* Debug-production */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 0E95E1622AE3A8ECD9572E38ECCC7DA7 /* GoogleToolboxForMac.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"; - GCC_PREFIX_HEADER = "Target Support Files/GoogleToolboxForMac/GoogleToolboxForMac-prefix.pch"; - GCC_PREPROCESSOR_DEFINITIONS = ( - "$(inherited)", - "PERMISSION_CAMERA=1", - "PERMISSION_PHOTOS=1", - ); - INFOPLIST_FILE = "Target Support Files/GoogleToolboxForMac/GoogleToolboxForMac-Info.plist"; - INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; - IPHONEOS_DEPLOYMENT_TARGET = 13.0; - LD_RUNPATH_SEARCH_PATHS = ( - "$(inherited)", - "@executable_path/Frameworks", - "@loader_path/Frameworks", - ); - MODULEMAP_FILE = "Target Support Files/GoogleToolboxForMac/GoogleToolboxForMac.modulemap"; - PRODUCT_MODULE_NAME = GoogleToolboxForMac; - PRODUCT_NAME = GoogleToolboxForMac; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_VERSION = 5.0; - TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; - VERSIONING_SYSTEM = "apple-generic"; - VERSION_INFO_PREFIX = ""; - }; - name = "Debug-production"; + name = "Release-production"; }; - 30D9FF9D78C886F66A0C0FC2A07432A3 /* Profile-development */ = { + 3122BA62BB28CD97A6466BA649C670CD /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 06772A7CF38F34E24C0E8F60729C6339 /* local_auth_darwin.release.xcconfig */; + baseConfigurationReference = E5DA456B6326B3BAA4DADD6E920EC7FD /* MLKitBarcodeScanning.debug.xcconfig */; buildSettings = { + ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; + ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; CLANG_ENABLE_OBJC_WEAK = NO; - CODE_SIGNING_ALLOWED = NO; - CODE_SIGNING_IDENTITY = "-"; - CODE_SIGNING_REQUIRED = NO; - CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/local_auth_darwin"; - EXPANDED_CODE_SIGN_IDENTITY = "-"; - GCC_PREPROCESSOR_DEFINITIONS = ( - "$(inherited)", - "PERMISSION_CAMERA=1", - "PERMISSION_PHOTOS=1", - ); - IBSC_MODULE = local_auth_darwin; - INFOPLIST_FILE = "Target Support Files/local_auth_darwin/ResourceBundle-local_auth_darwin_privacy-local_auth_darwin-Info.plist"; - IPHONEOS_DEPLOYMENT_TARGET = 13.0; - PRODUCT_NAME = local_auth_darwin_privacy; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; - WRAPPER_EXTENSION = bundle; - }; - name = "Profile-development"; - }; - 3177C75982E0FB421BCB4C16829029BF /* Profile-production */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = B587A9A0D5365CAA9B8A2CC41EB17830 /* nanopb.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"; - GCC_PREFIX_HEADER = "Target Support Files/nanopb/nanopb-prefix.pch"; GCC_PREPROCESSOR_DEFINITIONS = ( "$(inherited)", "PERMISSION_CAMERA=1", "PERMISSION_PHOTOS=1", ); - INFOPLIST_FILE = "Target Support Files/nanopb/nanopb-Info.plist"; - INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; IPHONEOS_DEPLOYMENT_TARGET = 13.0; LD_RUNPATH_SEARCH_PATHS = ( "$(inherited)", "@executable_path/Frameworks", - "@loader_path/Frameworks", ); - MODULEMAP_FILE = "Target Support Files/nanopb/nanopb.modulemap"; - PRODUCT_MODULE_NAME = nanopb; - PRODUCT_NAME = nanopb; + ONLY_ACTIVE_ARCH = NO; SDKROOT = iphoneos; - SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_VERSION = 5.0; TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; - VERSIONING_SYSTEM = "apple-generic"; - VERSION_INFO_PREFIX = ""; }; - name = "Profile-production"; + name = Debug; }; 317ADDDA258A81BA6C89D7B43D3C3E38 /* Release-staging */ = { isa = XCBuildConfiguration; - baseConfigurationReference = C630DC976CFC529906571DA851643B86 /* integration_test.release.xcconfig */; + baseConfigurationReference = 5ACA34BFC6EAE3E5A15EE45A206A60FA /* integration_test.release.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO; @@ -19340,7 +18990,7 @@ }; 31A59521B20E11BE9729D965E93BFCE7 /* Profile-staging */ = { isa = XCBuildConfiguration; - baseConfigurationReference = C630DC976CFC529906571DA851643B86 /* integration_test.release.xcconfig */; + baseConfigurationReference = 5ACA34BFC6EAE3E5A15EE45A206A60FA /* integration_test.release.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO; @@ -19398,7 +19048,7 @@ }; 31CDB6BF6E668CADD474834D822B5CEA /* Debug-staging */ = { isa = XCBuildConfiguration; - baseConfigurationReference = F4C3D5A980B27BD2C418D61228F67F01 /* package_info_plus.release.xcconfig */; + baseConfigurationReference = 6201BD6C84B86BD570988C7E3B8409CB /* package_info_plus.release.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO; @@ -19454,86 +19104,59 @@ }; name = "Debug-staging"; }; - 3291E2C14118CE555108DF3F87439616 /* Profile-development */ = { + 32CA0ECD7143D1CDAC6A9CF9F5764E82 /* Stage-production */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 7B2F4BE2D901E9309159228CD856EBAF /* flutter_secure_storage.release.xcconfig */; + baseConfigurationReference = 52D3A45B276300DECC1173BE9A70A0A1 /* GoogleMLKit.release.xcconfig */; buildSettings = { + ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; + ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; CLANG_ENABLE_OBJC_WEAK = NO; - CODE_SIGNING_ALLOWED = NO; - CODE_SIGNING_IDENTITY = "-"; - CODE_SIGNING_REQUIRED = NO; - CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/flutter_secure_storage"; - EXPANDED_CODE_SIGN_IDENTITY = "-"; GCC_PREPROCESSOR_DEFINITIONS = ( "$(inherited)", "PERMISSION_CAMERA=1", "PERMISSION_PHOTOS=1", ); - IBSC_MODULE = flutter_secure_storage; - INFOPLIST_FILE = "Target Support Files/flutter_secure_storage/ResourceBundle-flutter_secure_storage-flutter_secure_storage-Info.plist"; IPHONEOS_DEPLOYMENT_TARGET = 13.0; - PRODUCT_NAME = flutter_secure_storage; + LD_RUNPATH_SEARCH_PATHS = ( + "$(inherited)", + "@executable_path/Frameworks", + ); SDKROOT = iphoneos; - SKIP_INSTALL = YES; TARGETED_DEVICE_FAMILY = "1,2"; VALIDATE_PRODUCT = YES; - WRAPPER_EXTENSION = bundle; }; - name = "Profile-development"; + name = "Stage-production"; }; - 329E62BDE362A407BCB446EE06CC9067 /* Debug-staging */ = { + 32DDA33D5D6AA6946AA25E9A59DF7E61 /* Profile */ = { isa = XCBuildConfiguration; - baseConfigurationReference = A7D0232BFA7DB2BABBC206DCBF4E211C /* flutter_email_sender.release.xcconfig */; + baseConfigurationReference = 8ABCAE069412CFA453F913E4A7E0184B /* GoogleUtilities.release.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; CODE_SIGNING_ALLOWED = NO; CODE_SIGNING_IDENTITY = "-"; CODE_SIGNING_REQUIRED = NO; - CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/flutter_email_sender"; + CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/GoogleUtilities"; EXPANDED_CODE_SIGN_IDENTITY = "-"; GCC_PREPROCESSOR_DEFINITIONS = ( "$(inherited)", "PERMISSION_CAMERA=1", "PERMISSION_PHOTOS=1", ); - IBSC_MODULE = flutter_email_sender; - INFOPLIST_FILE = "Target Support Files/flutter_email_sender/ResourceBundle-flutter_email_sender-flutter_email_sender-Info.plist"; + IBSC_MODULE = GoogleUtilities; + INFOPLIST_FILE = "Target Support Files/GoogleUtilities/ResourceBundle-GoogleUtilities_Privacy-GoogleUtilities-Info.plist"; IPHONEOS_DEPLOYMENT_TARGET = 13.0; - PRODUCT_NAME = flutter_email_sender; + PRODUCT_NAME = GoogleUtilities_Privacy; SDKROOT = iphoneos; SKIP_INSTALL = YES; TARGETED_DEVICE_FAMILY = "1,2"; VALIDATE_PRODUCT = YES; WRAPPER_EXTENSION = bundle; }; - name = "Debug-staging"; - }; - 32CA0ECD7143D1CDAC6A9CF9F5764E82 /* Stage-production */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 52D3A45B276300DECC1173BE9A70A0A1 /* GoogleMLKit.release.xcconfig */; - buildSettings = { - ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; - ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; - CLANG_ENABLE_OBJC_WEAK = NO; - GCC_PREPROCESSOR_DEFINITIONS = ( - "$(inherited)", - "PERMISSION_CAMERA=1", - "PERMISSION_PHOTOS=1", - ); - IPHONEOS_DEPLOYMENT_TARGET = 13.0; - LD_RUNPATH_SEARCH_PATHS = ( - "$(inherited)", - "@executable_path/Frameworks", - ); - SDKROOT = iphoneos; - TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; - }; - name = "Stage-production"; + name = Profile; }; 3324355CAF71B79333BD8681457962D4 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 3CBAA32448D7092D3388A6F5B2EAD77B /* connectivity_plus.debug.xcconfig */; + baseConfigurationReference = F0F07E8CD0DB5A7DE9FE5D96E481F1CF /* connectivity_plus.debug.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO; @@ -19591,7 +19214,7 @@ }; 33327E1FC684A3639A9EF65C834670AF /* Debug-staging */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 86E540DA830E020FCC7DEA27000E1A98 /* shared_preferences_foundation.release.xcconfig */; + baseConfigurationReference = D1CCD0C16DFF0194B0A936A205ED4ED0 /* shared_preferences_foundation.release.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO; @@ -19642,88 +19265,114 @@ }; name = "Debug-staging"; }; - 334FB379FA0D1050733637FD178F7B0F /* Stage-production */ = { + 339F3113C3F66E6DAC4173AAA4CB0542 /* Stage-production */ = { isa = XCBuildConfiguration; baseConfigurationReference = B587A9A0D5365CAA9B8A2CC41EB17830 /* nanopb.release.xcconfig */; buildSettings = { - CLANG_ENABLE_OBJC_WEAK = NO; - CODE_SIGNING_ALLOWED = NO; - CODE_SIGNING_IDENTITY = "-"; - CODE_SIGNING_REQUIRED = NO; - CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/nanopb"; - EXPANDED_CODE_SIGN_IDENTITY = "-"; + "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"; + GCC_PREFIX_HEADER = "Target Support Files/nanopb/nanopb-prefix.pch"; GCC_PREPROCESSOR_DEFINITIONS = ( "$(inherited)", "PERMISSION_CAMERA=1", "PERMISSION_PHOTOS=1", ); - IBSC_MODULE = nanopb; - INFOPLIST_FILE = "Target Support Files/nanopb/ResourceBundle-nanopb_Privacy-nanopb-Info.plist"; + INFOPLIST_FILE = "Target Support Files/nanopb/nanopb-Info.plist"; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; IPHONEOS_DEPLOYMENT_TARGET = 13.0; - PRODUCT_NAME = nanopb_Privacy; + LD_RUNPATH_SEARCH_PATHS = ( + "$(inherited)", + "@executable_path/Frameworks", + "@loader_path/Frameworks", + ); + 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_VERSION = 5.0; TARGETED_DEVICE_FAMILY = "1,2"; VALIDATE_PRODUCT = YES; - WRAPPER_EXTENSION = bundle; + VERSIONING_SYSTEM = "apple-generic"; + VERSION_INFO_PREFIX = ""; }; name = "Stage-production"; }; - 337CB475A598962B1561C2367A21B0C7 /* Debug-staging */ = { + 33BFEB08ED378B68817AA7C77B81FEBC /* Profile-production */ = { isa = XCBuildConfiguration; - baseConfigurationReference = B91357BF97DBAECE656386331F10CCFD /* sqflite.release.xcconfig */; + baseConfigurationReference = 0E95E1622AE3A8ECD9572E38ECCC7DA7 /* GoogleToolboxForMac.release.xcconfig */; buildSettings = { - CLANG_ENABLE_OBJC_WEAK = NO; - CODE_SIGNING_ALLOWED = NO; - CODE_SIGNING_IDENTITY = "-"; - CODE_SIGNING_REQUIRED = NO; - CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/sqflite"; - EXPANDED_CODE_SIGN_IDENTITY = "-"; + "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"; + GCC_PREFIX_HEADER = "Target Support Files/GoogleToolboxForMac/GoogleToolboxForMac-prefix.pch"; GCC_PREPROCESSOR_DEFINITIONS = ( "$(inherited)", "PERMISSION_CAMERA=1", "PERMISSION_PHOTOS=1", ); - IBSC_MODULE = sqflite; - INFOPLIST_FILE = "Target Support Files/sqflite/ResourceBundle-sqflite_darwin_privacy-sqflite-Info.plist"; + INFOPLIST_FILE = "Target Support Files/GoogleToolboxForMac/GoogleToolboxForMac-Info.plist"; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; IPHONEOS_DEPLOYMENT_TARGET = 13.0; - PRODUCT_NAME = sqflite_darwin_privacy; + LD_RUNPATH_SEARCH_PATHS = ( + "$(inherited)", + "@executable_path/Frameworks", + "@loader_path/Frameworks", + ); + MODULEMAP_FILE = "Target Support Files/GoogleToolboxForMac/GoogleToolboxForMac.modulemap"; + PRODUCT_MODULE_NAME = GoogleToolboxForMac; + PRODUCT_NAME = GoogleToolboxForMac; SDKROOT = iphoneos; SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; + SWIFT_VERSION = 5.0; TARGETED_DEVICE_FAMILY = "1,2"; VALIDATE_PRODUCT = YES; - WRAPPER_EXTENSION = bundle; + VERSIONING_SYSTEM = "apple-generic"; + VERSION_INFO_PREFIX = ""; }; - name = "Debug-staging"; + name = "Profile-production"; }; - 3431F231F93A293206D6AE4A80981941 /* Release-development */ = { + 34E199C974EF4E0B64B81B66863C50F0 /* Profile-production */ = { isa = XCBuildConfiguration; - baseConfigurationReference = B60761FA10DAC783EF5D7E4C1574226A /* connectivity_plus.release.xcconfig */; + baseConfigurationReference = 2529F7B6D57D43838BFCB332D2EDFE47 /* path_provider_foundation.release.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; CODE_SIGNING_ALLOWED = NO; CODE_SIGNING_IDENTITY = "-"; CODE_SIGNING_REQUIRED = NO; - CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/connectivity_plus"; + CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/path_provider_foundation"; EXPANDED_CODE_SIGN_IDENTITY = "-"; GCC_PREPROCESSOR_DEFINITIONS = ( "$(inherited)", "PERMISSION_CAMERA=1", "PERMISSION_PHOTOS=1", ); - IBSC_MODULE = connectivity_plus; - INFOPLIST_FILE = "Target Support Files/connectivity_plus/ResourceBundle-connectivity_plus_privacy-connectivity_plus-Info.plist"; + IBSC_MODULE = path_provider_foundation; + INFOPLIST_FILE = "Target Support Files/path_provider_foundation/ResourceBundle-path_provider_foundation_privacy-path_provider_foundation-Info.plist"; IPHONEOS_DEPLOYMENT_TARGET = 13.0; - PRODUCT_NAME = connectivity_plus_privacy; + PRODUCT_NAME = path_provider_foundation_privacy; SDKROOT = iphoneos; SKIP_INSTALL = YES; TARGETED_DEVICE_FAMILY = "1,2"; VALIDATE_PRODUCT = YES; WRAPPER_EXTENSION = bundle; }; - name = "Release-development"; + name = "Profile-production"; }; - 358E0C9E7CB7F7061F14A68566D9D43B /* Release-development */ = { + 35AD1C73C3509FEB0E52E8E8C24E4846 /* Profile-development */ = { isa = XCBuildConfiguration; baseConfigurationReference = 8ABCAE069412CFA453F913E4A7E0184B /* GoogleUtilities.release.xcconfig */; buildSettings = { @@ -19748,11 +19397,38 @@ VALIDATE_PRODUCT = YES; WRAPPER_EXTENSION = bundle; }; - name = "Release-development"; + name = "Profile-development"; + }; + 360D5197F63815A705B8FA509CEACA8C /* Release-production */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 9ECF4B2E725AF88A4D8BD77668F776C4 /* local_auth_darwin.release.xcconfig */; + buildSettings = { + CLANG_ENABLE_OBJC_WEAK = NO; + CODE_SIGNING_ALLOWED = NO; + CODE_SIGNING_IDENTITY = "-"; + CODE_SIGNING_REQUIRED = NO; + CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/local_auth_darwin"; + EXPANDED_CODE_SIGN_IDENTITY = "-"; + GCC_PREPROCESSOR_DEFINITIONS = ( + "$(inherited)", + "PERMISSION_CAMERA=1", + "PERMISSION_PHOTOS=1", + ); + IBSC_MODULE = local_auth_darwin; + INFOPLIST_FILE = "Target Support Files/local_auth_darwin/ResourceBundle-local_auth_darwin_privacy-local_auth_darwin-Info.plist"; + IPHONEOS_DEPLOYMENT_TARGET = 13.0; + PRODUCT_NAME = local_auth_darwin_privacy; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; + WRAPPER_EXTENSION = bundle; + }; + name = "Release-production"; }; 361347A5535964E18C200E18A26189EE /* Profile */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 79066AF4601F7FFEE6681FB7DA45FA72 /* flutter_keyboard_visibility.release.xcconfig */; + baseConfigurationReference = A0E07105D46C98227F9CF101D83E460C /* flutter_keyboard_visibility.release.xcconfig */; buildSettings = { CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -19807,59 +19483,36 @@ }; name = Profile; }; - 362600F11CC649406DA20930C8F9CAC2 /* Profile */ = { + 36DC65C983FA76D8412C19902E1A75FD /* Profile-production */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 7B2F4BE2D901E9309159228CD856EBAF /* flutter_secure_storage.release.xcconfig */; + baseConfigurationReference = 57D6AA21B16FC3FF93AD29A67F768BB2 /* flutter_native_splash.release.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; CODE_SIGNING_ALLOWED = NO; CODE_SIGNING_IDENTITY = "-"; CODE_SIGNING_REQUIRED = NO; - CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/flutter_secure_storage"; + CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/flutter_native_splash"; EXPANDED_CODE_SIGN_IDENTITY = "-"; GCC_PREPROCESSOR_DEFINITIONS = ( "$(inherited)", "PERMISSION_CAMERA=1", "PERMISSION_PHOTOS=1", ); - IBSC_MODULE = flutter_secure_storage; - INFOPLIST_FILE = "Target Support Files/flutter_secure_storage/ResourceBundle-flutter_secure_storage-flutter_secure_storage-Info.plist"; + IBSC_MODULE = flutter_native_splash; + INFOPLIST_FILE = "Target Support Files/flutter_native_splash/ResourceBundle-flutter_native_splash_privacy-flutter_native_splash-Info.plist"; IPHONEOS_DEPLOYMENT_TARGET = 13.0; - PRODUCT_NAME = flutter_secure_storage; + PRODUCT_NAME = flutter_native_splash_privacy; SDKROOT = iphoneos; SKIP_INSTALL = YES; TARGETED_DEVICE_FAMILY = "1,2"; VALIDATE_PRODUCT = YES; WRAPPER_EXTENSION = bundle; }; - name = Profile; - }; - 367014A3B10F9DCC4ABDDCD74C940649 /* Release-development */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 26DCE60E629963FB754A022AED7ACC73 /* MLImage.release.xcconfig */; - buildSettings = { - ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; - ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; - CLANG_ENABLE_OBJC_WEAK = NO; - GCC_PREPROCESSOR_DEFINITIONS = ( - "$(inherited)", - "PERMISSION_CAMERA=1", - "PERMISSION_PHOTOS=1", - ); - IPHONEOS_DEPLOYMENT_TARGET = 13.0; - LD_RUNPATH_SEARCH_PATHS = ( - "$(inherited)", - "@executable_path/Frameworks", - ); - SDKROOT = iphoneos; - TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; - }; - name = "Release-development"; + name = "Profile-production"; }; 36F31FA30898ADD8FC6DAFA540F75858 /* Profile */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 06772A7CF38F34E24C0E8F60729C6339 /* local_auth_darwin.release.xcconfig */; + baseConfigurationReference = 9ECF4B2E725AF88A4D8BD77668F776C4 /* local_auth_darwin.release.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO; @@ -19915,36 +19568,59 @@ }; name = Profile; }; - 3712825E964344068D9A8A489DABA81A /* Profile-production */ = { + 370039F4850784F08F67DC2AC5148886 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = B91357BF97DBAECE656386331F10CCFD /* sqflite.release.xcconfig */; + baseConfigurationReference = 26DCE60E629963FB754A022AED7ACC73 /* MLImage.release.xcconfig */; + buildSettings = { + ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; + ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; + CLANG_ENABLE_OBJC_WEAK = NO; + GCC_PREPROCESSOR_DEFINITIONS = ( + "$(inherited)", + "PERMISSION_CAMERA=1", + "PERMISSION_PHOTOS=1", + ); + IPHONEOS_DEPLOYMENT_TARGET = 13.0; + LD_RUNPATH_SEARCH_PATHS = ( + "$(inherited)", + "@executable_path/Frameworks", + ); + SDKROOT = iphoneos; + TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; + }; + name = Release; + }; + 373EACAFD2F1D01C824698D6974CE5EB /* Debug-staging */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 6201BD6C84B86BD570988C7E3B8409CB /* package_info_plus.release.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; CODE_SIGNING_ALLOWED = NO; CODE_SIGNING_IDENTITY = "-"; CODE_SIGNING_REQUIRED = NO; - CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/sqflite"; + CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/package_info_plus"; EXPANDED_CODE_SIGN_IDENTITY = "-"; GCC_PREPROCESSOR_DEFINITIONS = ( "$(inherited)", "PERMISSION_CAMERA=1", "PERMISSION_PHOTOS=1", ); - IBSC_MODULE = sqflite; - INFOPLIST_FILE = "Target Support Files/sqflite/ResourceBundle-sqflite_darwin_privacy-sqflite-Info.plist"; + IBSC_MODULE = package_info_plus; + INFOPLIST_FILE = "Target Support Files/package_info_plus/ResourceBundle-package_info_plus_privacy-package_info_plus-Info.plist"; IPHONEOS_DEPLOYMENT_TARGET = 13.0; - PRODUCT_NAME = sqflite_darwin_privacy; + PRODUCT_NAME = package_info_plus_privacy; SDKROOT = iphoneos; SKIP_INSTALL = YES; TARGETED_DEVICE_FAMILY = "1,2"; VALIDATE_PRODUCT = YES; WRAPPER_EXTENSION = bundle; }; - name = "Profile-production"; + name = "Debug-staging"; }; 38149FE56371BB5752F5941D7247E83A /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 6D3FC8F30A9759CEC467C9CBCFF1BDA6 /* mobile_scanner.release.xcconfig */; + baseConfigurationReference = 55CABBFDA741B6809730DEE1165E60C9 /* mobile_scanner.release.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO; @@ -20001,33 +19677,6 @@ }; name = Release; }; - 3843A09A1F37AB433512CB36C944CF03 /* Release-production */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 06772A7CF38F34E24C0E8F60729C6339 /* local_auth_darwin.release.xcconfig */; - buildSettings = { - CLANG_ENABLE_OBJC_WEAK = NO; - CODE_SIGNING_ALLOWED = NO; - CODE_SIGNING_IDENTITY = "-"; - CODE_SIGNING_REQUIRED = NO; - CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/local_auth_darwin"; - EXPANDED_CODE_SIGN_IDENTITY = "-"; - GCC_PREPROCESSOR_DEFINITIONS = ( - "$(inherited)", - "PERMISSION_CAMERA=1", - "PERMISSION_PHOTOS=1", - ); - IBSC_MODULE = local_auth_darwin; - INFOPLIST_FILE = "Target Support Files/local_auth_darwin/ResourceBundle-local_auth_darwin_privacy-local_auth_darwin-Info.plist"; - IPHONEOS_DEPLOYMENT_TARGET = 13.0; - PRODUCT_NAME = local_auth_darwin_privacy; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; - WRAPPER_EXTENSION = bundle; - }; - name = "Release-production"; - }; 387A223F823F9BD99DEA7748CD3B57B4 /* Debug-staging */ = { isa = XCBuildConfiguration; baseConfigurationReference = 52D3A45B276300DECC1173BE9A70A0A1 /* GoogleMLKit.release.xcconfig */; @@ -20051,63 +19700,9 @@ }; name = "Debug-staging"; }; - 397512C377405F7C09DD61626D603DAB /* Release-production */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 7B2F4BE2D901E9309159228CD856EBAF /* flutter_secure_storage.release.xcconfig */; - buildSettings = { - CLANG_ENABLE_OBJC_WEAK = NO; - CODE_SIGNING_ALLOWED = NO; - CODE_SIGNING_IDENTITY = "-"; - CODE_SIGNING_REQUIRED = NO; - CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/flutter_secure_storage"; - EXPANDED_CODE_SIGN_IDENTITY = "-"; - GCC_PREPROCESSOR_DEFINITIONS = ( - "$(inherited)", - "PERMISSION_CAMERA=1", - "PERMISSION_PHOTOS=1", - ); - IBSC_MODULE = flutter_secure_storage; - INFOPLIST_FILE = "Target Support Files/flutter_secure_storage/ResourceBundle-flutter_secure_storage-flutter_secure_storage-Info.plist"; - IPHONEOS_DEPLOYMENT_TARGET = 13.0; - PRODUCT_NAME = flutter_secure_storage; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; - WRAPPER_EXTENSION = bundle; - }; - name = "Release-production"; - }; - 39B6A398DA6FC7759F66343E86BBBB50 /* Debug-development */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 9311BBA346794A168AC09B1625AB1683 /* path_provider_foundation.release.xcconfig */; - buildSettings = { - CLANG_ENABLE_OBJC_WEAK = NO; - CODE_SIGNING_ALLOWED = NO; - CODE_SIGNING_IDENTITY = "-"; - CODE_SIGNING_REQUIRED = NO; - CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/path_provider_foundation"; - EXPANDED_CODE_SIGN_IDENTITY = "-"; - GCC_PREPROCESSOR_DEFINITIONS = ( - "$(inherited)", - "PERMISSION_CAMERA=1", - "PERMISSION_PHOTOS=1", - ); - IBSC_MODULE = path_provider_foundation; - INFOPLIST_FILE = "Target Support Files/path_provider_foundation/ResourceBundle-path_provider_foundation_privacy-path_provider_foundation-Info.plist"; - IPHONEOS_DEPLOYMENT_TARGET = 13.0; - PRODUCT_NAME = path_provider_foundation_privacy; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; - WRAPPER_EXTENSION = bundle; - }; - name = "Debug-development"; - }; 3A06FCCD422413D4D871EAD7B22A12E7 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = B8DE548CAFA838CA823CC7535D08316C /* permission_handler_apple.debug.xcconfig */; + baseConfigurationReference = 8D9AF5D5743BDE9F45CA5E3010022DD8 /* permission_handler_apple.debug.xcconfig */; buildSettings = { CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -20164,9 +19759,61 @@ }; name = Debug; }; + 3A0A94F02A83134197B54F98E16B7C75 /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = F9F252ACFB155ACF9BB56FB267880E01 /* url_launcher_ios.release.xcconfig */; + buildSettings = { + CODE_SIGNING_ALLOWED = NO; + CODE_SIGNING_IDENTITY = "-"; + CODE_SIGNING_REQUIRED = NO; + CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/url_launcher_ios"; + EXPANDED_CODE_SIGN_IDENTITY = "-"; + GCC_PREPROCESSOR_DEFINITIONS = ( + "$(inherited)", + "PERMISSION_CAMERA=1", + "PERMISSION_PHOTOS=1", + ); + IBSC_MODULE = url_launcher_ios; + INFOPLIST_FILE = "Target Support Files/url_launcher_ios/ResourceBundle-url_launcher_ios_privacy-url_launcher_ios-Info.plist"; + IPHONEOS_DEPLOYMENT_TARGET = 13.0; + PRODUCT_NAME = url_launcher_ios_privacy; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + TARGETED_DEVICE_FAMILY = "1,2"; + WRAPPER_EXTENSION = bundle; + }; + name = Release; + }; + 3A2B4C16095C011D921BBCB47146E2FA /* Release-staging */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = D1CCD0C16DFF0194B0A936A205ED4ED0 /* shared_preferences_foundation.release.xcconfig */; + buildSettings = { + CLANG_ENABLE_OBJC_WEAK = NO; + CODE_SIGNING_ALLOWED = NO; + CODE_SIGNING_IDENTITY = "-"; + CODE_SIGNING_REQUIRED = NO; + CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/shared_preferences_foundation"; + EXPANDED_CODE_SIGN_IDENTITY = "-"; + GCC_PREPROCESSOR_DEFINITIONS = ( + "$(inherited)", + "PERMISSION_CAMERA=1", + "PERMISSION_PHOTOS=1", + ); + IBSC_MODULE = shared_preferences_foundation; + INFOPLIST_FILE = "Target Support Files/shared_preferences_foundation/ResourceBundle-shared_preferences_foundation_privacy-shared_preferences_foundation-Info.plist"; + IPHONEOS_DEPLOYMENT_TARGET = 13.0; + PRODUCT_NAME = shared_preferences_foundation_privacy; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; + WRAPPER_EXTENSION = bundle; + }; + name = "Release-staging"; + }; 3A322997F5F33CEB7702243D84E9EF4D /* Release-development */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 1E47B40DD78F33D7394C9CDADE9B41A7 /* share_plus.release.xcconfig */; + baseConfigurationReference = 196B9320A9BD7C09E7C5420F49D709B3 /* share_plus.release.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO; @@ -20224,7 +19871,7 @@ }; 3A4787811A6036B32B77346890F3B0B4 /* Profile-development */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 06772A7CF38F34E24C0E8F60729C6339 /* local_auth_darwin.release.xcconfig */; + baseConfigurationReference = 9ECF4B2E725AF88A4D8BD77668F776C4 /* local_auth_darwin.release.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO; @@ -20280,32 +19927,63 @@ }; name = "Profile-development"; }; - 3A78D7A21ECBB8B2CAD07D3CD75D4328 /* Profile-development */ = { + 3AC3AC70722E1985E4E19D7403E7B725 /* Profile */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 26DCE60E629963FB754A022AED7ACC73 /* MLImage.release.xcconfig */; + baseConfigurationReference = 9ECF4B2E725AF88A4D8BD77668F776C4 /* local_auth_darwin.release.xcconfig */; buildSettings = { - ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; - ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; CLANG_ENABLE_OBJC_WEAK = NO; + CODE_SIGNING_ALLOWED = NO; + CODE_SIGNING_IDENTITY = "-"; + CODE_SIGNING_REQUIRED = NO; + CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/local_auth_darwin"; + EXPANDED_CODE_SIGN_IDENTITY = "-"; GCC_PREPROCESSOR_DEFINITIONS = ( "$(inherited)", "PERMISSION_CAMERA=1", "PERMISSION_PHOTOS=1", ); + IBSC_MODULE = local_auth_darwin; + INFOPLIST_FILE = "Target Support Files/local_auth_darwin/ResourceBundle-local_auth_darwin_privacy-local_auth_darwin-Info.plist"; IPHONEOS_DEPLOYMENT_TARGET = 13.0; - LD_RUNPATH_SEARCH_PATHS = ( + PRODUCT_NAME = local_auth_darwin_privacy; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; + WRAPPER_EXTENSION = bundle; + }; + name = Profile; + }; + 3AFFA8E33F838E705458FF86593172D1 /* Debug-development */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 59E64776226CA679807D58D84423DF5F /* flutter_email_sender.release.xcconfig */; + buildSettings = { + CLANG_ENABLE_OBJC_WEAK = NO; + CODE_SIGNING_ALLOWED = NO; + CODE_SIGNING_IDENTITY = "-"; + CODE_SIGNING_REQUIRED = NO; + CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/flutter_email_sender"; + EXPANDED_CODE_SIGN_IDENTITY = "-"; + GCC_PREPROCESSOR_DEFINITIONS = ( "$(inherited)", - "@executable_path/Frameworks", + "PERMISSION_CAMERA=1", + "PERMISSION_PHOTOS=1", ); + IBSC_MODULE = flutter_email_sender; + INFOPLIST_FILE = "Target Support Files/flutter_email_sender/ResourceBundle-flutter_email_sender-flutter_email_sender-Info.plist"; + IPHONEOS_DEPLOYMENT_TARGET = 13.0; + PRODUCT_NAME = flutter_email_sender; SDKROOT = iphoneos; + SKIP_INSTALL = YES; TARGETED_DEVICE_FAMILY = "1,2"; VALIDATE_PRODUCT = YES; + WRAPPER_EXTENSION = bundle; }; - name = "Profile-development"; + name = "Debug-development"; }; 3B1E7E2B83A1AF524E71E95D59FA458F /* Profile-development */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 869E5D3B5708F94FBC923E7B50C1DD07 /* flutter_nekoton_bridge.release.xcconfig */; + baseConfigurationReference = 5B385CBA22624866DCD19C0B8CCF9C42 /* flutter_nekoton_bridge.release.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -20344,9 +20022,36 @@ }; name = "Profile-development"; }; - 3B59A4EA0D72D774F5965417C6E7F1BB /* Release-staging */ = { + 3B50E0EE8D5CFFD240A8D7542F048BEC /* Profile-production */ = { isa = XCBuildConfiguration; - baseConfigurationReference = FE5C3B02302BE4DBC83D2A553D5F5C1B /* MLKitVision.release.xcconfig */; + baseConfigurationReference = F9F252ACFB155ACF9BB56FB267880E01 /* url_launcher_ios.release.xcconfig */; + buildSettings = { + CLANG_ENABLE_OBJC_WEAK = NO; + CODE_SIGNING_ALLOWED = NO; + CODE_SIGNING_IDENTITY = "-"; + CODE_SIGNING_REQUIRED = NO; + CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/url_launcher_ios"; + EXPANDED_CODE_SIGN_IDENTITY = "-"; + GCC_PREPROCESSOR_DEFINITIONS = ( + "$(inherited)", + "PERMISSION_CAMERA=1", + "PERMISSION_PHOTOS=1", + ); + IBSC_MODULE = url_launcher_ios; + INFOPLIST_FILE = "Target Support Files/url_launcher_ios/ResourceBundle-url_launcher_ios_privacy-url_launcher_ios-Info.plist"; + IPHONEOS_DEPLOYMENT_TARGET = 13.0; + PRODUCT_NAME = url_launcher_ios_privacy; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; + WRAPPER_EXTENSION = bundle; + }; + name = "Profile-production"; + }; + 3C205441B5358FEE08DB384EF3B121DC /* Profile-staging */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 85EF9BEBA8B20A13BA96488C86CD663A /* MLKitCommon.release.xcconfig */; buildSettings = { ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; @@ -20365,38 +20070,38 @@ TARGETED_DEVICE_FAMILY = "1,2"; VALIDATE_PRODUCT = YES; }; - name = "Release-staging"; + name = "Profile-staging"; }; - 3BCE762A84F677BEB41AEF927109CAD3 /* Debug-staging */ = { + 3C688EDC95019570814A6A39B78543BA /* Stage-production */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 8ABCAE069412CFA453F913E4A7E0184B /* GoogleUtilities.release.xcconfig */; + baseConfigurationReference = 2529F7B6D57D43838BFCB332D2EDFE47 /* path_provider_foundation.release.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; CODE_SIGNING_ALLOWED = NO; CODE_SIGNING_IDENTITY = "-"; CODE_SIGNING_REQUIRED = NO; - CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/GoogleUtilities"; + CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/path_provider_foundation"; EXPANDED_CODE_SIGN_IDENTITY = "-"; GCC_PREPROCESSOR_DEFINITIONS = ( "$(inherited)", "PERMISSION_CAMERA=1", "PERMISSION_PHOTOS=1", ); - IBSC_MODULE = GoogleUtilities; - INFOPLIST_FILE = "Target Support Files/GoogleUtilities/ResourceBundle-GoogleUtilities_Privacy-GoogleUtilities-Info.plist"; + IBSC_MODULE = path_provider_foundation; + INFOPLIST_FILE = "Target Support Files/path_provider_foundation/ResourceBundle-path_provider_foundation_privacy-path_provider_foundation-Info.plist"; IPHONEOS_DEPLOYMENT_TARGET = 13.0; - PRODUCT_NAME = GoogleUtilities_Privacy; + PRODUCT_NAME = path_provider_foundation_privacy; SDKROOT = iphoneos; SKIP_INSTALL = YES; TARGETED_DEVICE_FAMILY = "1,2"; VALIDATE_PRODUCT = YES; WRAPPER_EXTENSION = bundle; }; - name = "Debug-staging"; + name = "Stage-production"; }; 3CC2226B7C781E7940322C58B7B79278 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = F4C3D5A980B27BD2C418D61228F67F01 /* package_info_plus.release.xcconfig */; + baseConfigurationReference = 6201BD6C84B86BD570988C7E3B8409CB /* package_info_plus.release.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO; @@ -20452,63 +20157,36 @@ }; name = Release; }; - 3D6A1C2319DE0AA62AD5B41DDF68D219 /* Release-staging */ = { + 3DFA7F61166D7F7944AB0A3E8E17BBBA /* Profile-development */ = { isa = XCBuildConfiguration; - baseConfigurationReference = B60761FA10DAC783EF5D7E4C1574226A /* connectivity_plus.release.xcconfig */; + baseConfigurationReference = 9ECF4B2E725AF88A4D8BD77668F776C4 /* local_auth_darwin.release.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; CODE_SIGNING_ALLOWED = NO; CODE_SIGNING_IDENTITY = "-"; CODE_SIGNING_REQUIRED = NO; - CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/connectivity_plus"; - EXPANDED_CODE_SIGN_IDENTITY = "-"; - GCC_PREPROCESSOR_DEFINITIONS = ( - "$(inherited)", - "PERMISSION_CAMERA=1", - "PERMISSION_PHOTOS=1", - ); - IBSC_MODULE = connectivity_plus; - INFOPLIST_FILE = "Target Support Files/connectivity_plus/ResourceBundle-connectivity_plus_privacy-connectivity_plus-Info.plist"; - IPHONEOS_DEPLOYMENT_TARGET = 13.0; - PRODUCT_NAME = connectivity_plus_privacy; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; - WRAPPER_EXTENSION = bundle; - }; - name = "Release-staging"; - }; - 3D9B116D57E61B9DA777A9F86B434DEB /* Release-staging */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = B91357BF97DBAECE656386331F10CCFD /* sqflite.release.xcconfig */; - buildSettings = { - CLANG_ENABLE_OBJC_WEAK = NO; - CODE_SIGNING_ALLOWED = NO; - CODE_SIGNING_IDENTITY = "-"; - CODE_SIGNING_REQUIRED = NO; - CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/sqflite"; + CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/local_auth_darwin"; EXPANDED_CODE_SIGN_IDENTITY = "-"; GCC_PREPROCESSOR_DEFINITIONS = ( "$(inherited)", "PERMISSION_CAMERA=1", "PERMISSION_PHOTOS=1", ); - IBSC_MODULE = sqflite; - INFOPLIST_FILE = "Target Support Files/sqflite/ResourceBundle-sqflite_darwin_privacy-sqflite-Info.plist"; + IBSC_MODULE = local_auth_darwin; + INFOPLIST_FILE = "Target Support Files/local_auth_darwin/ResourceBundle-local_auth_darwin_privacy-local_auth_darwin-Info.plist"; IPHONEOS_DEPLOYMENT_TARGET = 13.0; - PRODUCT_NAME = sqflite_darwin_privacy; + PRODUCT_NAME = local_auth_darwin_privacy; SDKROOT = iphoneos; SKIP_INSTALL = YES; TARGETED_DEVICE_FAMILY = "1,2"; VALIDATE_PRODUCT = YES; WRAPPER_EXTENSION = bundle; }; - name = "Release-staging"; + name = "Profile-development"; }; 3E048008C9B748047CD347D25211A228 /* Debug-production */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 79066AF4601F7FFEE6681FB7DA45FA72 /* flutter_keyboard_visibility.release.xcconfig */; + baseConfigurationReference = A0E07105D46C98227F9CF101D83E460C /* flutter_keyboard_visibility.release.xcconfig */; buildSettings = { CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -20563,9 +20241,36 @@ }; name = "Debug-production"; }; + 3E873F100D81EACFD035BDFC72AD8518 /* Profile */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = B3F81CBF23C2B71680A734B4B74EA6EF /* sqflite.release.xcconfig */; + buildSettings = { + CLANG_ENABLE_OBJC_WEAK = NO; + CODE_SIGNING_ALLOWED = NO; + CODE_SIGNING_IDENTITY = "-"; + CODE_SIGNING_REQUIRED = NO; + CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/sqflite"; + EXPANDED_CODE_SIGN_IDENTITY = "-"; + GCC_PREPROCESSOR_DEFINITIONS = ( + "$(inherited)", + "PERMISSION_CAMERA=1", + "PERMISSION_PHOTOS=1", + ); + IBSC_MODULE = sqflite; + INFOPLIST_FILE = "Target Support Files/sqflite/ResourceBundle-sqflite_darwin_privacy-sqflite-Info.plist"; + IPHONEOS_DEPLOYMENT_TARGET = 13.0; + PRODUCT_NAME = sqflite_darwin_privacy; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; + WRAPPER_EXTENSION = bundle; + }; + name = Profile; + }; 3EB198F53125C81A8E0BAFC10681BFC1 /* Release-staging */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 79066AF4601F7FFEE6681FB7DA45FA72 /* flutter_keyboard_visibility.release.xcconfig */; + baseConfigurationReference = A0E07105D46C98227F9CF101D83E460C /* flutter_keyboard_visibility.release.xcconfig */; buildSettings = { CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -20620,25 +20325,75 @@ }; name = "Release-staging"; }; - 3ED5D570CE56DDFCB3A36F4C51CFE959 /* Release-production */ = { + 3F9B18BEDE0DEF344A940A39C542FA55 /* Profile-production */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 85EF9BEBA8B20A13BA96488C86CD663A /* MLKitCommon.release.xcconfig */; + buildSettings = { + ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; + ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; + CLANG_ENABLE_OBJC_WEAK = NO; + GCC_PREPROCESSOR_DEFINITIONS = ( + "$(inherited)", + "PERMISSION_CAMERA=1", + "PERMISSION_PHOTOS=1", + ); + IPHONEOS_DEPLOYMENT_TARGET = 13.0; + LD_RUNPATH_SEARCH_PATHS = ( + "$(inherited)", + "@executable_path/Frameworks", + ); + SDKROOT = iphoneos; + TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; + }; + name = "Profile-production"; + }; + 3FA026DF696A7C7624D7D7E4B951270F /* Profile-production */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 1E47B40DD78F33D7394C9CDADE9B41A7 /* share_plus.release.xcconfig */; + baseConfigurationReference = 4BB6D83A83366DD3295B456FF36F5E3F /* permission_handler_apple.release.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; CODE_SIGNING_ALLOWED = NO; CODE_SIGNING_IDENTITY = "-"; CODE_SIGNING_REQUIRED = NO; - CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/share_plus"; + CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/permission_handler_apple"; EXPANDED_CODE_SIGN_IDENTITY = "-"; GCC_PREPROCESSOR_DEFINITIONS = ( "$(inherited)", "PERMISSION_CAMERA=1", "PERMISSION_PHOTOS=1", ); - IBSC_MODULE = share_plus; - INFOPLIST_FILE = "Target Support Files/share_plus/ResourceBundle-share_plus_privacy-share_plus-Info.plist"; + IBSC_MODULE = permission_handler_apple; + INFOPLIST_FILE = "Target Support Files/permission_handler_apple/ResourceBundle-permission_handler_apple_privacy-permission_handler_apple-Info.plist"; IPHONEOS_DEPLOYMENT_TARGET = 13.0; - PRODUCT_NAME = share_plus_privacy; + PRODUCT_NAME = permission_handler_apple_privacy; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; + WRAPPER_EXTENSION = bundle; + }; + name = "Profile-production"; + }; + 3FBCB9A3DD628E8683EAAB86054223F1 /* Release-production */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 8ABCAE069412CFA453F913E4A7E0184B /* GoogleUtilities.release.xcconfig */; + buildSettings = { + CLANG_ENABLE_OBJC_WEAK = NO; + CODE_SIGNING_ALLOWED = NO; + CODE_SIGNING_IDENTITY = "-"; + CODE_SIGNING_REQUIRED = NO; + CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/GoogleUtilities"; + EXPANDED_CODE_SIGN_IDENTITY = "-"; + GCC_PREPROCESSOR_DEFINITIONS = ( + "$(inherited)", + "PERMISSION_CAMERA=1", + "PERMISSION_PHOTOS=1", + ); + IBSC_MODULE = GoogleUtilities; + INFOPLIST_FILE = "Target Support Files/GoogleUtilities/ResourceBundle-GoogleUtilities_Privacy-GoogleUtilities-Info.plist"; + IPHONEOS_DEPLOYMENT_TARGET = 13.0; + PRODUCT_NAME = GoogleUtilities_Privacy; SDKROOT = iphoneos; SKIP_INSTALL = YES; TARGETED_DEVICE_FAMILY = "1,2"; @@ -20649,7 +20404,7 @@ }; 3FD3D58D599B83AD4C3001F3238811B4 /* Release-production */ = { isa = XCBuildConfiguration; - baseConfigurationReference = A7D0232BFA7DB2BABBC206DCBF4E211C /* flutter_email_sender.release.xcconfig */; + baseConfigurationReference = 59E64776226CA679807D58D84423DF5F /* flutter_email_sender.release.xcconfig */; buildSettings = { CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -20705,60 +20460,59 @@ }; name = "Release-production"; }; - 40775B190E759EAB5D6EC090F1D03873 /* Release */ = { + 4036C875363B0F7776DB2ABC2C4598FC /* Stage-production */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 1E47B40DD78F33D7394C9CDADE9B41A7 /* share_plus.release.xcconfig */; + baseConfigurationReference = 19CE9AC8B13646CC03FBC77F131FF183 /* GoogleDataTransport.release.xcconfig */; buildSettings = { + CLANG_ENABLE_OBJC_WEAK = NO; CODE_SIGNING_ALLOWED = NO; CODE_SIGNING_IDENTITY = "-"; CODE_SIGNING_REQUIRED = NO; - CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/share_plus"; + CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/GoogleDataTransport"; EXPANDED_CODE_SIGN_IDENTITY = "-"; GCC_PREPROCESSOR_DEFINITIONS = ( "$(inherited)", "PERMISSION_CAMERA=1", "PERMISSION_PHOTOS=1", ); - IBSC_MODULE = share_plus; - INFOPLIST_FILE = "Target Support Files/share_plus/ResourceBundle-share_plus_privacy-share_plus-Info.plist"; + IBSC_MODULE = GoogleDataTransport; + INFOPLIST_FILE = "Target Support Files/GoogleDataTransport/ResourceBundle-GoogleDataTransport_Privacy-GoogleDataTransport-Info.plist"; IPHONEOS_DEPLOYMENT_TARGET = 13.0; - PRODUCT_NAME = share_plus_privacy; + PRODUCT_NAME = GoogleDataTransport_Privacy; SDKROOT = iphoneos; SKIP_INSTALL = YES; TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; WRAPPER_EXTENSION = bundle; }; - name = Release; + name = "Stage-production"; }; - 4090F8676816D3E918390B1A163C1224 /* Debug */ = { + 404187D9A61C0EA2FC4333229B3CD2C7 /* Stage-production */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 30F98EB803FD5C328558272910C8246D /* flutter_native_splash.debug.xcconfig */; + baseConfigurationReference = 5D2B88AD25CD5EBE586D760474336767 /* MLKitBarcodeScanning.release.xcconfig */; buildSettings = { - CODE_SIGNING_ALLOWED = NO; - CODE_SIGNING_IDENTITY = "-"; - CODE_SIGNING_REQUIRED = NO; - CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/flutter_native_splash"; - EXPANDED_CODE_SIGN_IDENTITY = "-"; + ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; + ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; + CLANG_ENABLE_OBJC_WEAK = NO; GCC_PREPROCESSOR_DEFINITIONS = ( "$(inherited)", "PERMISSION_CAMERA=1", "PERMISSION_PHOTOS=1", ); - IBSC_MODULE = flutter_native_splash; - INFOPLIST_FILE = "Target Support Files/flutter_native_splash/ResourceBundle-flutter_native_splash_privacy-flutter_native_splash-Info.plist"; IPHONEOS_DEPLOYMENT_TARGET = 13.0; - ONLY_ACTIVE_ARCH = NO; - PRODUCT_NAME = flutter_native_splash_privacy; + 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 = Debug; + name = "Stage-production"; }; 410C97841BBB497D12E08F4892890B3E /* Stage-production */ = { isa = XCBuildConfiguration; - baseConfigurationReference = B91357BF97DBAECE656386331F10CCFD /* sqflite.release.xcconfig */; + baseConfigurationReference = B3F81CBF23C2B71680A734B4B74EA6EF /* sqflite.release.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO; @@ -20814,9 +20568,36 @@ }; name = "Stage-production"; }; + 4127E841281A697F1BE9217A7E550090 /* Debug-production */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 2529F7B6D57D43838BFCB332D2EDFE47 /* path_provider_foundation.release.xcconfig */; + buildSettings = { + CLANG_ENABLE_OBJC_WEAK = NO; + CODE_SIGNING_ALLOWED = NO; + CODE_SIGNING_IDENTITY = "-"; + CODE_SIGNING_REQUIRED = NO; + CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/path_provider_foundation"; + EXPANDED_CODE_SIGN_IDENTITY = "-"; + GCC_PREPROCESSOR_DEFINITIONS = ( + "$(inherited)", + "PERMISSION_CAMERA=1", + "PERMISSION_PHOTOS=1", + ); + IBSC_MODULE = path_provider_foundation; + INFOPLIST_FILE = "Target Support Files/path_provider_foundation/ResourceBundle-path_provider_foundation_privacy-path_provider_foundation-Info.plist"; + IPHONEOS_DEPLOYMENT_TARGET = 13.0; + PRODUCT_NAME = path_provider_foundation_privacy; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; + WRAPPER_EXTENSION = bundle; + }; + name = "Debug-production"; + }; 41A85F80D28D5ED63DAFA17CAD48FCBE /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 1E47B40DD78F33D7394C9CDADE9B41A7 /* share_plus.release.xcconfig */; + baseConfigurationReference = 196B9320A9BD7C09E7C5420F49D709B3 /* share_plus.release.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO; @@ -20872,6 +20653,29 @@ }; name = Release; }; + 422FCBA4575B3D40ABC6306910D350E8 /* Debug-production */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 26DCE60E629963FB754A022AED7ACC73 /* MLImage.release.xcconfig */; + buildSettings = { + ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; + ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; + CLANG_ENABLE_OBJC_WEAK = NO; + GCC_PREPROCESSOR_DEFINITIONS = ( + "$(inherited)", + "PERMISSION_CAMERA=1", + "PERMISSION_PHOTOS=1", + ); + IPHONEOS_DEPLOYMENT_TARGET = 13.0; + LD_RUNPATH_SEARCH_PATHS = ( + "$(inherited)", + "@executable_path/Frameworks", + ); + SDKROOT = iphoneos; + TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; + }; + name = "Debug-production"; + }; 434CE7B3A24C43F7BCBBE01AF6CDB554 /* Profile-production */ = { isa = XCBuildConfiguration; baseConfigurationReference = C3A8E22467ADEB42B7D83259E1A6F078 /* Sentry.release.xcconfig */; @@ -20913,86 +20717,115 @@ }; name = "Profile-production"; }; - 435B205142306F96687EB390794D0386 /* Debug-staging */ = { + 435B8A3EED15CF17F3B342E2C2C291D1 /* Release-production */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 85EF9BEBA8B20A13BA96488C86CD663A /* MLKitCommon.release.xcconfig */; + baseConfigurationReference = FC4CA41561F8B1B855AED3763329DD2C /* PromisesObjC.release.xcconfig */; buildSettings = { - ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; - ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; CLANG_ENABLE_OBJC_WEAK = NO; + CODE_SIGNING_ALLOWED = NO; + CODE_SIGNING_IDENTITY = "-"; + CODE_SIGNING_REQUIRED = NO; + CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/PromisesObjC"; + EXPANDED_CODE_SIGN_IDENTITY = "-"; GCC_PREPROCESSOR_DEFINITIONS = ( "$(inherited)", "PERMISSION_CAMERA=1", "PERMISSION_PHOTOS=1", ); + IBSC_MODULE = FBLPromises; + INFOPLIST_FILE = "Target Support Files/PromisesObjC/ResourceBundle-FBLPromises_Privacy-PromisesObjC-Info.plist"; IPHONEOS_DEPLOYMENT_TARGET = 13.0; - LD_RUNPATH_SEARCH_PATHS = ( - "$(inherited)", - "@executable_path/Frameworks", - ); + PRODUCT_NAME = FBLPromises_Privacy; SDKROOT = iphoneos; + SKIP_INSTALL = YES; TARGETED_DEVICE_FAMILY = "1,2"; VALIDATE_PRODUCT = YES; + WRAPPER_EXTENSION = bundle; }; - name = "Debug-staging"; + name = "Release-production"; }; - 43BBEB9C99020140B7F51384783B407A /* Release-production */ = { + 444C104619DDD4438C687CBC6FB4D973 /* Debug-staging */ = { isa = XCBuildConfiguration; - baseConfigurationReference = B91357BF97DBAECE656386331F10CCFD /* sqflite.release.xcconfig */; + baseConfigurationReference = 0E95E1622AE3A8ECD9572E38ECCC7DA7 /* GoogleToolboxForMac.release.xcconfig */; buildSettings = { - CLANG_ENABLE_OBJC_WEAK = NO; - CODE_SIGNING_ALLOWED = NO; - CODE_SIGNING_IDENTITY = "-"; - CODE_SIGNING_REQUIRED = NO; - CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/sqflite"; - EXPANDED_CODE_SIGN_IDENTITY = "-"; + "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"; + GCC_PREFIX_HEADER = "Target Support Files/GoogleToolboxForMac/GoogleToolboxForMac-prefix.pch"; GCC_PREPROCESSOR_DEFINITIONS = ( "$(inherited)", "PERMISSION_CAMERA=1", "PERMISSION_PHOTOS=1", ); - IBSC_MODULE = sqflite; - INFOPLIST_FILE = "Target Support Files/sqflite/ResourceBundle-sqflite_darwin_privacy-sqflite-Info.plist"; + INFOPLIST_FILE = "Target Support Files/GoogleToolboxForMac/GoogleToolboxForMac-Info.plist"; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; IPHONEOS_DEPLOYMENT_TARGET = 13.0; - PRODUCT_NAME = sqflite_darwin_privacy; + LD_RUNPATH_SEARCH_PATHS = ( + "$(inherited)", + "@executable_path/Frameworks", + "@loader_path/Frameworks", + ); + MODULEMAP_FILE = "Target Support Files/GoogleToolboxForMac/GoogleToolboxForMac.modulemap"; + PRODUCT_MODULE_NAME = GoogleToolboxForMac; + PRODUCT_NAME = GoogleToolboxForMac; SDKROOT = iphoneos; SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; + SWIFT_VERSION = 5.0; TARGETED_DEVICE_FAMILY = "1,2"; VALIDATE_PRODUCT = YES; - WRAPPER_EXTENSION = bundle; + VERSIONING_SYSTEM = "apple-generic"; + VERSION_INFO_PREFIX = ""; }; - name = "Release-production"; + name = "Debug-staging"; }; - 44DA148CC9AF9CD929E418E6D512952B /* Release-production */ = { + 448C9577F781000E61A9211FB4B2DE7F /* Profile-development */ = { isa = XCBuildConfiguration; - baseConfigurationReference = C782F3D64A5DB279B07DD4535BD2F969 /* image_picker_ios.release.xcconfig */; + baseConfigurationReference = 8ABCAE069412CFA453F913E4A7E0184B /* GoogleUtilities.release.xcconfig */; buildSettings = { - CLANG_ENABLE_OBJC_WEAK = NO; - CODE_SIGNING_ALLOWED = NO; - CODE_SIGNING_IDENTITY = "-"; - CODE_SIGNING_REQUIRED = NO; - CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/image_picker_ios"; - EXPANDED_CODE_SIGN_IDENTITY = "-"; + "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"; GCC_PREPROCESSOR_DEFINITIONS = ( "$(inherited)", "PERMISSION_CAMERA=1", "PERMISSION_PHOTOS=1", ); - IBSC_MODULE = image_picker_ios; - INFOPLIST_FILE = "Target Support Files/image_picker_ios/ResourceBundle-image_picker_ios_privacy-image_picker_ios-Info.plist"; + INFOPLIST_FILE = "Target Support Files/GoogleUtilities/GoogleUtilities-Info.plist"; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; IPHONEOS_DEPLOYMENT_TARGET = 13.0; - PRODUCT_NAME = image_picker_ios_privacy; + LD_RUNPATH_SEARCH_PATHS = ( + "$(inherited)", + "@executable_path/Frameworks", + "@loader_path/Frameworks", + ); + 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_VERSION = 5.0; TARGETED_DEVICE_FAMILY = "1,2"; VALIDATE_PRODUCT = YES; - WRAPPER_EXTENSION = bundle; + VERSIONING_SYSTEM = "apple-generic"; + VERSION_INFO_PREFIX = ""; }; - name = "Release-production"; + name = "Profile-development"; }; 451C05706B94121099A565B9BD2CD9D7 /* Release-staging */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 86E540DA830E020FCC7DEA27000E1A98 /* shared_preferences_foundation.release.xcconfig */; + baseConfigurationReference = D1CCD0C16DFF0194B0A936A205ED4ED0 /* shared_preferences_foundation.release.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO; @@ -21043,9 +20876,32 @@ }; name = "Release-staging"; }; + 452439B29D884CEA8633D5A7A672B139 /* Profile */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 85EF9BEBA8B20A13BA96488C86CD663A /* MLKitCommon.release.xcconfig */; + buildSettings = { + ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; + ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; + CLANG_ENABLE_OBJC_WEAK = NO; + GCC_PREPROCESSOR_DEFINITIONS = ( + "$(inherited)", + "PERMISSION_CAMERA=1", + "PERMISSION_PHOTOS=1", + ); + IPHONEOS_DEPLOYMENT_TARGET = 13.0; + LD_RUNPATH_SEARCH_PATHS = ( + "$(inherited)", + "@executable_path/Frameworks", + ); + SDKROOT = iphoneos; + TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; + }; + name = Profile; + }; 45AAA5DCB5D03CAFD9C6F3D3508DC57A /* Profile-staging */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 7B2F4BE2D901E9309159228CD856EBAF /* flutter_secure_storage.release.xcconfig */; + baseConfigurationReference = 13146A48D1544CF0CF218B3A514C848E /* flutter_secure_storage.release.xcconfig */; buildSettings = { CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -21102,7 +20958,7 @@ }; 45B023AE0FB7751566FED73F582456C8 /* Profile-development */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 9281357EC3038ADC39C884ED1A1D94E1 /* flutter_inappwebview.release.xcconfig */; + baseConfigurationReference = F3BAFA0B70330F234C6B8BF559E7A252 /* flutter_inappwebview.release.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO; @@ -21158,59 +21014,9 @@ }; name = "Profile-development"; }; - 45C2A85EAA7185D565D61A3D11BE12BE /* Profile */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = B91357BF97DBAECE656386331F10CCFD /* sqflite.release.xcconfig */; - buildSettings = { - CLANG_ENABLE_OBJC_WEAK = NO; - CODE_SIGNING_ALLOWED = NO; - CODE_SIGNING_IDENTITY = "-"; - CODE_SIGNING_REQUIRED = NO; - CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/sqflite"; - EXPANDED_CODE_SIGN_IDENTITY = "-"; - GCC_PREPROCESSOR_DEFINITIONS = ( - "$(inherited)", - "PERMISSION_CAMERA=1", - "PERMISSION_PHOTOS=1", - ); - IBSC_MODULE = sqflite; - INFOPLIST_FILE = "Target Support Files/sqflite/ResourceBundle-sqflite_darwin_privacy-sqflite-Info.plist"; - IPHONEOS_DEPLOYMENT_TARGET = 13.0; - PRODUCT_NAME = sqflite_darwin_privacy; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; - WRAPPER_EXTENSION = bundle; - }; - name = Profile; - }; - 45CAA8C5D96C4781F1B71B1D1BFAF627 /* Debug-staging */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 26DCE60E629963FB754A022AED7ACC73 /* MLImage.release.xcconfig */; - buildSettings = { - ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; - ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; - CLANG_ENABLE_OBJC_WEAK = NO; - GCC_PREPROCESSOR_DEFINITIONS = ( - "$(inherited)", - "PERMISSION_CAMERA=1", - "PERMISSION_PHOTOS=1", - ); - IPHONEOS_DEPLOYMENT_TARGET = 13.0; - LD_RUNPATH_SEARCH_PATHS = ( - "$(inherited)", - "@executable_path/Frameworks", - ); - SDKROOT = iphoneos; - TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; - }; - name = "Debug-staging"; - }; 45EB4552509BA9BCCF1A807E6875904B /* Release-staging */ = { isa = XCBuildConfiguration; - baseConfigurationReference = B91357BF97DBAECE656386331F10CCFD /* sqflite.release.xcconfig */; + baseConfigurationReference = B3F81CBF23C2B71680A734B4B74EA6EF /* sqflite.release.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO; @@ -21266,63 +21072,36 @@ }; name = "Release-staging"; }; - 45F261C1F3C806EAFE30E636B9591A12 /* Debug-staging */ = { + 465641D8AA3304AEEED2016A279EFCE9 /* Release-development */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 9311BBA346794A168AC09B1625AB1683 /* path_provider_foundation.release.xcconfig */; - buildSettings = { - CLANG_ENABLE_OBJC_WEAK = NO; - CODE_SIGNING_ALLOWED = NO; - CODE_SIGNING_IDENTITY = "-"; - CODE_SIGNING_REQUIRED = NO; - CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/path_provider_foundation"; - EXPANDED_CODE_SIGN_IDENTITY = "-"; - GCC_PREPROCESSOR_DEFINITIONS = ( - "$(inherited)", - "PERMISSION_CAMERA=1", - "PERMISSION_PHOTOS=1", - ); - IBSC_MODULE = path_provider_foundation; - INFOPLIST_FILE = "Target Support Files/path_provider_foundation/ResourceBundle-path_provider_foundation_privacy-path_provider_foundation-Info.plist"; - IPHONEOS_DEPLOYMENT_TARGET = 13.0; - PRODUCT_NAME = path_provider_foundation_privacy; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; - WRAPPER_EXTENSION = bundle; - }; - name = "Debug-staging"; - }; - 4706A0F6AF42F14F23337906DAF6B868 /* Profile-development */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 4A911B9FACB388B308D1ABB5669DD583 /* permission_handler_apple.release.xcconfig */; + baseConfigurationReference = 8ABCAE069412CFA453F913E4A7E0184B /* GoogleUtilities.release.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; CODE_SIGNING_ALLOWED = NO; CODE_SIGNING_IDENTITY = "-"; CODE_SIGNING_REQUIRED = NO; - CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/permission_handler_apple"; + CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/GoogleUtilities"; EXPANDED_CODE_SIGN_IDENTITY = "-"; GCC_PREPROCESSOR_DEFINITIONS = ( "$(inherited)", "PERMISSION_CAMERA=1", "PERMISSION_PHOTOS=1", ); - IBSC_MODULE = permission_handler_apple; - INFOPLIST_FILE = "Target Support Files/permission_handler_apple/ResourceBundle-permission_handler_apple_privacy-permission_handler_apple-Info.plist"; + IBSC_MODULE = GoogleUtilities; + INFOPLIST_FILE = "Target Support Files/GoogleUtilities/ResourceBundle-GoogleUtilities_Privacy-GoogleUtilities-Info.plist"; IPHONEOS_DEPLOYMENT_TARGET = 13.0; - PRODUCT_NAME = permission_handler_apple_privacy; + PRODUCT_NAME = GoogleUtilities_Privacy; SDKROOT = iphoneos; SKIP_INSTALL = YES; TARGETED_DEVICE_FAMILY = "1,2"; VALIDATE_PRODUCT = YES; WRAPPER_EXTENSION = bundle; }; - name = "Profile-development"; + name = "Release-development"; }; 4778EDF1DAED984A38712CAF2FC1101C /* Profile-staging */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 9311BBA346794A168AC09B1625AB1683 /* path_provider_foundation.release.xcconfig */; + baseConfigurationReference = 2529F7B6D57D43838BFCB332D2EDFE47 /* path_provider_foundation.release.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO; @@ -21376,7 +21155,7 @@ }; 4811AD1F0A531CBF7943136E18DBDB12 /* Release-staging */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 1E47B40DD78F33D7394C9CDADE9B41A7 /* share_plus.release.xcconfig */; + baseConfigurationReference = 196B9320A9BD7C09E7C5420F49D709B3 /* share_plus.release.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO; @@ -21432,36 +21211,47 @@ }; name = "Release-staging"; }; - 48671A1E338571E42EF0EB912FC42457 /* Release-production */ = { + 48B62F9F1355694542040EB6B84DC61B /* Profile-development */ = { isa = XCBuildConfiguration; - baseConfigurationReference = A7D0232BFA7DB2BABBC206DCBF4E211C /* flutter_email_sender.release.xcconfig */; + baseConfigurationReference = FC4CA41561F8B1B855AED3763329DD2C /* PromisesObjC.release.xcconfig */; buildSettings = { - CLANG_ENABLE_OBJC_WEAK = NO; - CODE_SIGNING_ALLOWED = NO; - CODE_SIGNING_IDENTITY = "-"; - CODE_SIGNING_REQUIRED = NO; - CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/flutter_email_sender"; - EXPANDED_CODE_SIGN_IDENTITY = "-"; + "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"; GCC_PREPROCESSOR_DEFINITIONS = ( "$(inherited)", "PERMISSION_CAMERA=1", "PERMISSION_PHOTOS=1", ); - IBSC_MODULE = flutter_email_sender; - INFOPLIST_FILE = "Target Support Files/flutter_email_sender/ResourceBundle-flutter_email_sender-flutter_email_sender-Info.plist"; + INFOPLIST_FILE = "Target Support Files/PromisesObjC/PromisesObjC-Info.plist"; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; IPHONEOS_DEPLOYMENT_TARGET = 13.0; - PRODUCT_NAME = flutter_email_sender; + LD_RUNPATH_SEARCH_PATHS = ( + "$(inherited)", + "@executable_path/Frameworks", + "@loader_path/Frameworks", + ); + 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_VERSION = 5.0; TARGETED_DEVICE_FAMILY = "1,2"; VALIDATE_PRODUCT = YES; - WRAPPER_EXTENSION = bundle; + VERSIONING_SYSTEM = "apple-generic"; + VERSION_INFO_PREFIX = ""; }; - name = "Release-production"; + name = "Profile-development"; }; 4906D5D3F391BAEB979F9E6FFD975742 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = C782F3D64A5DB279B07DD4535BD2F969 /* image_picker_ios.release.xcconfig */; + baseConfigurationReference = 98AE98BF8E201BFC344D7356F2883701 /* image_picker_ios.release.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO; @@ -21519,7 +21309,7 @@ }; 498630FB7199B45B6EE1DAF9B1BFD6B3 /* Profile-production */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 79066AF4601F7FFEE6681FB7DA45FA72 /* flutter_keyboard_visibility.release.xcconfig */; + baseConfigurationReference = A0E07105D46C98227F9CF101D83E460C /* flutter_keyboard_visibility.release.xcconfig */; buildSettings = { CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -21615,32 +21405,32 @@ }; name = Profile; }; - 49CBBFEA994311BE1AA12EEE3B1D7A9D /* Release-production */ = { + 4A139F372E03FC2402D869E2F0578AF6 /* Release-staging */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 3C623764A02C0B6BA3A628060F65377B /* flutter_native_splash.release.xcconfig */; + baseConfigurationReference = FC4CA41561F8B1B855AED3763329DD2C /* PromisesObjC.release.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; CODE_SIGNING_ALLOWED = NO; CODE_SIGNING_IDENTITY = "-"; CODE_SIGNING_REQUIRED = NO; - CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/flutter_native_splash"; + CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/PromisesObjC"; EXPANDED_CODE_SIGN_IDENTITY = "-"; GCC_PREPROCESSOR_DEFINITIONS = ( "$(inherited)", "PERMISSION_CAMERA=1", "PERMISSION_PHOTOS=1", ); - IBSC_MODULE = flutter_native_splash; - INFOPLIST_FILE = "Target Support Files/flutter_native_splash/ResourceBundle-flutter_native_splash_privacy-flutter_native_splash-Info.plist"; + IBSC_MODULE = FBLPromises; + INFOPLIST_FILE = "Target Support Files/PromisesObjC/ResourceBundle-FBLPromises_Privacy-PromisesObjC-Info.plist"; IPHONEOS_DEPLOYMENT_TARGET = 13.0; - PRODUCT_NAME = flutter_native_splash_privacy; + PRODUCT_NAME = FBLPromises_Privacy; SDKROOT = iphoneos; SKIP_INSTALL = YES; TARGETED_DEVICE_FAMILY = "1,2"; VALIDATE_PRODUCT = YES; WRAPPER_EXTENSION = bundle; }; - name = "Release-production"; + name = "Release-staging"; }; 4A15C69D10792B7E784CCBCAD486A9E0 /* Release-development */ = { isa = XCBuildConfiguration; @@ -21704,49 +21494,9 @@ }; name = "Release-development"; }; - 4A8CE999D297B11054B934D2D746E1BE /* Stage-production */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 0E95E1622AE3A8ECD9572E38ECCC7DA7 /* GoogleToolboxForMac.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"; - GCC_PREFIX_HEADER = "Target Support Files/GoogleToolboxForMac/GoogleToolboxForMac-prefix.pch"; - GCC_PREPROCESSOR_DEFINITIONS = ( - "$(inherited)", - "PERMISSION_CAMERA=1", - "PERMISSION_PHOTOS=1", - ); - INFOPLIST_FILE = "Target Support Files/GoogleToolboxForMac/GoogleToolboxForMac-Info.plist"; - INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; - IPHONEOS_DEPLOYMENT_TARGET = 13.0; - LD_RUNPATH_SEARCH_PATHS = ( - "$(inherited)", - "@executable_path/Frameworks", - "@loader_path/Frameworks", - ); - MODULEMAP_FILE = "Target Support Files/GoogleToolboxForMac/GoogleToolboxForMac.modulemap"; - PRODUCT_MODULE_NAME = GoogleToolboxForMac; - PRODUCT_NAME = GoogleToolboxForMac; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_VERSION = 5.0; - TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; - VERSIONING_SYSTEM = "apple-generic"; - VERSION_INFO_PREFIX = ""; - }; - name = "Stage-production"; - }; 4B20EAB364672D720AE39F57856E8C79 /* Release-staging */ = { isa = XCBuildConfiguration; - baseConfigurationReference = A7D0232BFA7DB2BABBC206DCBF4E211C /* flutter_email_sender.release.xcconfig */; + baseConfigurationReference = 59E64776226CA679807D58D84423DF5F /* flutter_email_sender.release.xcconfig */; buildSettings = { CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -21802,9 +21552,36 @@ }; name = "Release-staging"; }; + 4B53AA0147BE9418D5CD08059C7D778D /* Debug-production */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = C3A8E22467ADEB42B7D83259E1A6F078 /* Sentry.release.xcconfig */; + buildSettings = { + CLANG_ENABLE_OBJC_WEAK = NO; + CODE_SIGNING_ALLOWED = NO; + CODE_SIGNING_IDENTITY = "-"; + CODE_SIGNING_REQUIRED = NO; + CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/Sentry"; + EXPANDED_CODE_SIGN_IDENTITY = "-"; + GCC_PREPROCESSOR_DEFINITIONS = ( + "$(inherited)", + "PERMISSION_CAMERA=1", + "PERMISSION_PHOTOS=1", + ); + IBSC_MODULE = Sentry; + INFOPLIST_FILE = "Target Support Files/Sentry/ResourceBundle-Sentry-Sentry-Info.plist"; + IPHONEOS_DEPLOYMENT_TARGET = 13.0; + PRODUCT_NAME = Sentry; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; + WRAPPER_EXTENSION = bundle; + }; + name = "Debug-production"; + }; 4B655C2EA5C2460BABD8F0F760DD927B /* Profile-development */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 1E47B40DD78F33D7394C9CDADE9B41A7 /* share_plus.release.xcconfig */; + baseConfigurationReference = 196B9320A9BD7C09E7C5420F49D709B3 /* share_plus.release.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO; @@ -21860,45 +21637,82 @@ }; name = "Profile-development"; }; - 4C4BA7A9BC8A5F8A190EFB1FE7EAEFFC /* Profile-staging */ = { + 4BFB3A0892D2675FDC8B0082F9B25690 /* Profile-staging */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 0E95E1622AE3A8ECD9572E38ECCC7DA7 /* GoogleToolboxForMac.release.xcconfig */; + baseConfigurationReference = 0F62AA5AF0EE048AB478074EDD1A2CD4 /* connectivity_plus.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"; - GCC_PREFIX_HEADER = "Target Support Files/GoogleToolboxForMac/GoogleToolboxForMac-prefix.pch"; + CLANG_ENABLE_OBJC_WEAK = NO; + CODE_SIGNING_ALLOWED = NO; + CODE_SIGNING_IDENTITY = "-"; + CODE_SIGNING_REQUIRED = NO; + CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/connectivity_plus"; + EXPANDED_CODE_SIGN_IDENTITY = "-"; + GCC_PREPROCESSOR_DEFINITIONS = ( + "$(inherited)", + "PERMISSION_CAMERA=1", + "PERMISSION_PHOTOS=1", + ); + IBSC_MODULE = connectivity_plus; + INFOPLIST_FILE = "Target Support Files/connectivity_plus/ResourceBundle-connectivity_plus_privacy-connectivity_plus-Info.plist"; + IPHONEOS_DEPLOYMENT_TARGET = 13.0; + PRODUCT_NAME = connectivity_plus_privacy; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; + WRAPPER_EXTENSION = bundle; + }; + name = "Profile-staging"; + }; + 4C3C8CFEC80E6CF6DA36602ECC6F6784 /* Release-production */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = B3F81CBF23C2B71680A734B4B74EA6EF /* sqflite.release.xcconfig */; + buildSettings = { + CLANG_ENABLE_OBJC_WEAK = NO; + CODE_SIGNING_ALLOWED = NO; + CODE_SIGNING_IDENTITY = "-"; + CODE_SIGNING_REQUIRED = NO; + CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/sqflite"; + EXPANDED_CODE_SIGN_IDENTITY = "-"; + GCC_PREPROCESSOR_DEFINITIONS = ( + "$(inherited)", + "PERMISSION_CAMERA=1", + "PERMISSION_PHOTOS=1", + ); + IBSC_MODULE = sqflite; + INFOPLIST_FILE = "Target Support Files/sqflite/ResourceBundle-sqflite_darwin_privacy-sqflite-Info.plist"; + IPHONEOS_DEPLOYMENT_TARGET = 13.0; + PRODUCT_NAME = sqflite_darwin_privacy; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; + WRAPPER_EXTENSION = bundle; + }; + name = "Release-production"; + }; + 4C59336A5275B639F86B993A9D84F7E8 /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 85EF9BEBA8B20A13BA96488C86CD663A /* MLKitCommon.release.xcconfig */; + buildSettings = { + ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; + ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; + CLANG_ENABLE_OBJC_WEAK = NO; GCC_PREPROCESSOR_DEFINITIONS = ( "$(inherited)", "PERMISSION_CAMERA=1", "PERMISSION_PHOTOS=1", ); - INFOPLIST_FILE = "Target Support Files/GoogleToolboxForMac/GoogleToolboxForMac-Info.plist"; - INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; IPHONEOS_DEPLOYMENT_TARGET = 13.0; LD_RUNPATH_SEARCH_PATHS = ( "$(inherited)", "@executable_path/Frameworks", - "@loader_path/Frameworks", ); - MODULEMAP_FILE = "Target Support Files/GoogleToolboxForMac/GoogleToolboxForMac.modulemap"; - PRODUCT_MODULE_NAME = GoogleToolboxForMac; - PRODUCT_NAME = GoogleToolboxForMac; SDKROOT = iphoneos; - SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_VERSION = 5.0; TARGETED_DEVICE_FAMILY = "1,2"; VALIDATE_PRODUCT = YES; - VERSIONING_SYSTEM = "apple-generic"; - VERSION_INFO_PREFIX = ""; }; - name = "Profile-staging"; + name = Release; }; 4D37032C629EECB1A97A9A25D93006B1 /* Debug-development */ = { isa = XCBuildConfiguration; @@ -21962,25 +21776,25 @@ }; name = "Debug-development"; }; - 4E157294F1C39B59F63484CE03B27E20 /* Debug-production */ = { + 4DD5B009B296C036DC9C3DA1359E05A3 /* Debug-production */ = { isa = XCBuildConfiguration; - baseConfigurationReference = B60761FA10DAC783EF5D7E4C1574226A /* connectivity_plus.release.xcconfig */; + baseConfigurationReference = 98AE98BF8E201BFC344D7356F2883701 /* image_picker_ios.release.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; CODE_SIGNING_ALLOWED = NO; CODE_SIGNING_IDENTITY = "-"; CODE_SIGNING_REQUIRED = NO; - CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/connectivity_plus"; + CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/image_picker_ios"; EXPANDED_CODE_SIGN_IDENTITY = "-"; GCC_PREPROCESSOR_DEFINITIONS = ( "$(inherited)", "PERMISSION_CAMERA=1", "PERMISSION_PHOTOS=1", ); - IBSC_MODULE = connectivity_plus; - INFOPLIST_FILE = "Target Support Files/connectivity_plus/ResourceBundle-connectivity_plus_privacy-connectivity_plus-Info.plist"; + IBSC_MODULE = image_picker_ios; + INFOPLIST_FILE = "Target Support Files/image_picker_ios/ResourceBundle-image_picker_ios_privacy-image_picker_ios-Info.plist"; IPHONEOS_DEPLOYMENT_TARGET = 13.0; - PRODUCT_NAME = connectivity_plus_privacy; + PRODUCT_NAME = image_picker_ios_privacy; SDKROOT = iphoneos; SKIP_INSTALL = YES; TARGETED_DEVICE_FAMILY = "1,2"; @@ -21989,36 +21803,35 @@ }; name = "Debug-production"; }; - 4E611B806E59190C2C52ABF482C89766 /* Profile-staging */ = { + 4DF620166E492653F77239BFF2512A09 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 06772A7CF38F34E24C0E8F60729C6339 /* local_auth_darwin.release.xcconfig */; + baseConfigurationReference = 44714AD113F4B1583BDC85E549AFF081 /* nanopb.debug.xcconfig */; buildSettings = { - CLANG_ENABLE_OBJC_WEAK = NO; CODE_SIGNING_ALLOWED = NO; CODE_SIGNING_IDENTITY = "-"; CODE_SIGNING_REQUIRED = NO; - CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/local_auth_darwin"; + CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/nanopb"; EXPANDED_CODE_SIGN_IDENTITY = "-"; GCC_PREPROCESSOR_DEFINITIONS = ( "$(inherited)", "PERMISSION_CAMERA=1", "PERMISSION_PHOTOS=1", ); - IBSC_MODULE = local_auth_darwin; - INFOPLIST_FILE = "Target Support Files/local_auth_darwin/ResourceBundle-local_auth_darwin_privacy-local_auth_darwin-Info.plist"; + IBSC_MODULE = nanopb; + INFOPLIST_FILE = "Target Support Files/nanopb/ResourceBundle-nanopb_Privacy-nanopb-Info.plist"; IPHONEOS_DEPLOYMENT_TARGET = 13.0; - PRODUCT_NAME = local_auth_darwin_privacy; + ONLY_ACTIVE_ARCH = NO; + PRODUCT_NAME = nanopb_Privacy; SDKROOT = iphoneos; SKIP_INSTALL = YES; TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; WRAPPER_EXTENSION = bundle; }; - name = "Profile-staging"; + name = Debug; }; - 4E6B464F6BE16B6DB3CECB3468D12529 /* Profile-development */ = { + 4EF548CB2B84260D5A9E943739B2A4EC /* Debug-development */ = { isa = XCBuildConfiguration; - baseConfigurationReference = B91357BF97DBAECE656386331F10CCFD /* sqflite.release.xcconfig */; + baseConfigurationReference = B3F81CBF23C2B71680A734B4B74EA6EF /* sqflite.release.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; CODE_SIGNING_ALLOWED = NO; @@ -22041,11 +21854,65 @@ VALIDATE_PRODUCT = YES; WRAPPER_EXTENSION = bundle; }; - name = "Profile-development"; + name = "Debug-development"; }; - 4F2517B36E9855CB5A6622435C8DC2E2 /* Profile-staging */ = { + 4F75994FD39C2270ED059268A20F2641 /* Profile-staging */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 5D2B88AD25CD5EBE586D760474336767 /* MLKitBarcodeScanning.release.xcconfig */; + baseConfigurationReference = 13146A48D1544CF0CF218B3A514C848E /* flutter_secure_storage.release.xcconfig */; + buildSettings = { + CLANG_ENABLE_OBJC_WEAK = NO; + CODE_SIGNING_ALLOWED = NO; + CODE_SIGNING_IDENTITY = "-"; + CODE_SIGNING_REQUIRED = NO; + CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/flutter_secure_storage"; + EXPANDED_CODE_SIGN_IDENTITY = "-"; + GCC_PREPROCESSOR_DEFINITIONS = ( + "$(inherited)", + "PERMISSION_CAMERA=1", + "PERMISSION_PHOTOS=1", + ); + IBSC_MODULE = flutter_secure_storage; + INFOPLIST_FILE = "Target Support Files/flutter_secure_storage/ResourceBundle-flutter_secure_storage-flutter_secure_storage-Info.plist"; + IPHONEOS_DEPLOYMENT_TARGET = 13.0; + PRODUCT_NAME = flutter_secure_storage; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; + WRAPPER_EXTENSION = bundle; + }; + name = "Profile-staging"; + }; + 4F7E11DEA496B34A7DBC1A5B6D7A6DCC /* Release-staging */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 2529F7B6D57D43838BFCB332D2EDFE47 /* path_provider_foundation.release.xcconfig */; + buildSettings = { + CLANG_ENABLE_OBJC_WEAK = NO; + CODE_SIGNING_ALLOWED = NO; + CODE_SIGNING_IDENTITY = "-"; + CODE_SIGNING_REQUIRED = NO; + CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/path_provider_foundation"; + EXPANDED_CODE_SIGN_IDENTITY = "-"; + GCC_PREPROCESSOR_DEFINITIONS = ( + "$(inherited)", + "PERMISSION_CAMERA=1", + "PERMISSION_PHOTOS=1", + ); + IBSC_MODULE = path_provider_foundation; + INFOPLIST_FILE = "Target Support Files/path_provider_foundation/ResourceBundle-path_provider_foundation_privacy-path_provider_foundation-Info.plist"; + IPHONEOS_DEPLOYMENT_TARGET = 13.0; + PRODUCT_NAME = path_provider_foundation_privacy; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; + WRAPPER_EXTENSION = bundle; + }; + name = "Release-staging"; + }; + 5031815ED4158D0C17C32927A01A5BC7 /* Debug-development */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 85EF9BEBA8B20A13BA96488C86CD663A /* MLKitCommon.release.xcconfig */; buildSettings = { ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; @@ -22064,7 +21931,7 @@ TARGETED_DEVICE_FAMILY = "1,2"; VALIDATE_PRODUCT = YES; }; - name = "Profile-staging"; + name = "Debug-development"; }; 503C1EFFF98ABB8F379FAECB16E0AEE5 /* Profile */ = { isa = XCBuildConfiguration; @@ -22128,99 +21995,32 @@ }; name = Profile; }; - 506529FEA0BFC0C9D4E6967BF9C2A6DD /* Release-development */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 3C623764A02C0B6BA3A628060F65377B /* flutter_native_splash.release.xcconfig */; - buildSettings = { - CLANG_ENABLE_OBJC_WEAK = NO; - CODE_SIGNING_ALLOWED = NO; - CODE_SIGNING_IDENTITY = "-"; - CODE_SIGNING_REQUIRED = NO; - CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/flutter_native_splash"; - EXPANDED_CODE_SIGN_IDENTITY = "-"; - GCC_PREPROCESSOR_DEFINITIONS = ( - "$(inherited)", - "PERMISSION_CAMERA=1", - "PERMISSION_PHOTOS=1", - ); - IBSC_MODULE = flutter_native_splash; - INFOPLIST_FILE = "Target Support Files/flutter_native_splash/ResourceBundle-flutter_native_splash_privacy-flutter_native_splash-Info.plist"; - IPHONEOS_DEPLOYMENT_TARGET = 13.0; - PRODUCT_NAME = flutter_native_splash_privacy; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; - WRAPPER_EXTENSION = bundle; - }; - name = "Release-development"; - }; - 50977F56B231E945498FBF4618E058DB /* Profile-staging */ = { + 50AC59753707E2C934D578F2DE6EDAD9 /* Debug-staging */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 19CE9AC8B13646CC03FBC77F131FF183 /* GoogleDataTransport.release.xcconfig */; + baseConfigurationReference = 98AE98BF8E201BFC344D7356F2883701 /* image_picker_ios.release.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; CODE_SIGNING_ALLOWED = NO; CODE_SIGNING_IDENTITY = "-"; CODE_SIGNING_REQUIRED = NO; - CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/GoogleDataTransport"; + CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/image_picker_ios"; EXPANDED_CODE_SIGN_IDENTITY = "-"; GCC_PREPROCESSOR_DEFINITIONS = ( "$(inherited)", "PERMISSION_CAMERA=1", "PERMISSION_PHOTOS=1", ); - IBSC_MODULE = GoogleDataTransport; - INFOPLIST_FILE = "Target Support Files/GoogleDataTransport/ResourceBundle-GoogleDataTransport_Privacy-GoogleDataTransport-Info.plist"; + IBSC_MODULE = image_picker_ios; + INFOPLIST_FILE = "Target Support Files/image_picker_ios/ResourceBundle-image_picker_ios_privacy-image_picker_ios-Info.plist"; IPHONEOS_DEPLOYMENT_TARGET = 13.0; - PRODUCT_NAME = GoogleDataTransport_Privacy; + PRODUCT_NAME = image_picker_ios_privacy; SDKROOT = iphoneos; SKIP_INSTALL = YES; TARGETED_DEVICE_FAMILY = "1,2"; VALIDATE_PRODUCT = YES; WRAPPER_EXTENSION = bundle; }; - name = "Profile-staging"; - }; - 50E42CD3830B7D2B5CFD37B0E4039956 /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 44714AD113F4B1583BDC85E549AFF081 /* nanopb.debug.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"; - GCC_PREFIX_HEADER = "Target Support Files/nanopb/nanopb-prefix.pch"; - GCC_PREPROCESSOR_DEFINITIONS = ( - "$(inherited)", - "PERMISSION_CAMERA=1", - "PERMISSION_PHOTOS=1", - ); - INFOPLIST_FILE = "Target Support Files/nanopb/nanopb-Info.plist"; - INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; - IPHONEOS_DEPLOYMENT_TARGET = 13.0; - LD_RUNPATH_SEARCH_PATHS = ( - "$(inherited)", - "@executable_path/Frameworks", - "@loader_path/Frameworks", - ); - MODULEMAP_FILE = "Target Support Files/nanopb/nanopb.modulemap"; - ONLY_ACTIVE_ARCH = NO; - PRODUCT_MODULE_NAME = nanopb; - PRODUCT_NAME = nanopb; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_VERSION = 5.0; - TARGETED_DEVICE_FAMILY = "1,2"; - VERSIONING_SYSTEM = "apple-generic"; - VERSION_INFO_PREFIX = ""; - }; - name = Debug; + name = "Debug-staging"; }; 5103AE4490E9D47B4152CC96869EDE5F /* Debug */ = { isa = XCBuildConfiguration; @@ -22262,86 +22062,63 @@ }; name = Debug; }; - 51C2F977B1DE88F2452D538F31AA301E /* Stage-production */ = { + 51FEB4E88738826187104CE505219514 /* Profile-staging */ = { isa = XCBuildConfiguration; - baseConfigurationReference = C3A8E22467ADEB42B7D83259E1A6F078 /* Sentry.release.xcconfig */; + baseConfigurationReference = 4BB6D83A83366DD3295B456FF36F5E3F /* permission_handler_apple.release.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; CODE_SIGNING_ALLOWED = NO; CODE_SIGNING_IDENTITY = "-"; CODE_SIGNING_REQUIRED = NO; - CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/Sentry"; + CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/permission_handler_apple"; EXPANDED_CODE_SIGN_IDENTITY = "-"; GCC_PREPROCESSOR_DEFINITIONS = ( "$(inherited)", "PERMISSION_CAMERA=1", "PERMISSION_PHOTOS=1", ); - IBSC_MODULE = Sentry; - INFOPLIST_FILE = "Target Support Files/Sentry/ResourceBundle-Sentry-Sentry-Info.plist"; + IBSC_MODULE = permission_handler_apple; + INFOPLIST_FILE = "Target Support Files/permission_handler_apple/ResourceBundle-permission_handler_apple_privacy-permission_handler_apple-Info.plist"; IPHONEOS_DEPLOYMENT_TARGET = 13.0; - PRODUCT_NAME = Sentry; + PRODUCT_NAME = permission_handler_apple_privacy; SDKROOT = iphoneos; SKIP_INSTALL = YES; TARGETED_DEVICE_FAMILY = "1,2"; VALIDATE_PRODUCT = YES; WRAPPER_EXTENSION = bundle; }; - name = "Stage-production"; + name = "Profile-staging"; }; - 525CCDF0FF934BFD89B4E1309130192C /* Debug-production */ = { + 52A99C90C40F4DE6DC5F7D4AF1AFB1F5 /* Release-production */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 4A911B9FACB388B308D1ABB5669DD583 /* permission_handler_apple.release.xcconfig */; + baseConfigurationReference = 6201BD6C84B86BD570988C7E3B8409CB /* package_info_plus.release.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; CODE_SIGNING_ALLOWED = NO; CODE_SIGNING_IDENTITY = "-"; CODE_SIGNING_REQUIRED = NO; - CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/permission_handler_apple"; + CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/package_info_plus"; EXPANDED_CODE_SIGN_IDENTITY = "-"; GCC_PREPROCESSOR_DEFINITIONS = ( "$(inherited)", "PERMISSION_CAMERA=1", "PERMISSION_PHOTOS=1", ); - IBSC_MODULE = permission_handler_apple; - INFOPLIST_FILE = "Target Support Files/permission_handler_apple/ResourceBundle-permission_handler_apple_privacy-permission_handler_apple-Info.plist"; + IBSC_MODULE = package_info_plus; + INFOPLIST_FILE = "Target Support Files/package_info_plus/ResourceBundle-package_info_plus_privacy-package_info_plus-Info.plist"; IPHONEOS_DEPLOYMENT_TARGET = 13.0; - PRODUCT_NAME = permission_handler_apple_privacy; + PRODUCT_NAME = package_info_plus_privacy; SDKROOT = iphoneos; SKIP_INSTALL = YES; TARGETED_DEVICE_FAMILY = "1,2"; VALIDATE_PRODUCT = YES; WRAPPER_EXTENSION = bundle; }; - name = "Debug-production"; - }; - 52BCEA41D6F3A16694B4D962EA565AF7 /* Debug-development */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = FE5C3B02302BE4DBC83D2A553D5F5C1B /* MLKitVision.release.xcconfig */; - buildSettings = { - ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; - ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; - CLANG_ENABLE_OBJC_WEAK = NO; - GCC_PREPROCESSOR_DEFINITIONS = ( - "$(inherited)", - "PERMISSION_CAMERA=1", - "PERMISSION_PHOTOS=1", - ); - IPHONEOS_DEPLOYMENT_TARGET = 13.0; - LD_RUNPATH_SEARCH_PATHS = ( - "$(inherited)", - "@executable_path/Frameworks", - ); - SDKROOT = iphoneos; - TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; - }; - name = "Debug-development"; + name = "Release-production"; }; 52FDEB12C2F1B577BEF62C3A01C4F202 /* Debug-development */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 86E540DA830E020FCC7DEA27000E1A98 /* shared_preferences_foundation.release.xcconfig */; + baseConfigurationReference = D1CCD0C16DFF0194B0A936A205ED4ED0 /* shared_preferences_foundation.release.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO; @@ -22392,60 +22169,6 @@ }; name = "Debug-development"; }; - 5327B4C90F2D07DEDB8F45A6E85CC3A9 /* Debug-development */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = F4C3D5A980B27BD2C418D61228F67F01 /* package_info_plus.release.xcconfig */; - buildSettings = { - CLANG_ENABLE_OBJC_WEAK = NO; - CODE_SIGNING_ALLOWED = NO; - CODE_SIGNING_IDENTITY = "-"; - CODE_SIGNING_REQUIRED = NO; - CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/package_info_plus"; - EXPANDED_CODE_SIGN_IDENTITY = "-"; - GCC_PREPROCESSOR_DEFINITIONS = ( - "$(inherited)", - "PERMISSION_CAMERA=1", - "PERMISSION_PHOTOS=1", - ); - IBSC_MODULE = package_info_plus; - INFOPLIST_FILE = "Target Support Files/package_info_plus/ResourceBundle-package_info_plus_privacy-package_info_plus-Info.plist"; - IPHONEOS_DEPLOYMENT_TARGET = 13.0; - PRODUCT_NAME = package_info_plus_privacy; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; - WRAPPER_EXTENSION = bundle; - }; - name = "Debug-development"; - }; - 5364DCE02E56CB8893C4F5E81C6E1014 /* Debug-development */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = C782F3D64A5DB279B07DD4535BD2F969 /* image_picker_ios.release.xcconfig */; - buildSettings = { - CLANG_ENABLE_OBJC_WEAK = NO; - CODE_SIGNING_ALLOWED = NO; - CODE_SIGNING_IDENTITY = "-"; - CODE_SIGNING_REQUIRED = NO; - CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/image_picker_ios"; - EXPANDED_CODE_SIGN_IDENTITY = "-"; - GCC_PREPROCESSOR_DEFINITIONS = ( - "$(inherited)", - "PERMISSION_CAMERA=1", - "PERMISSION_PHOTOS=1", - ); - IBSC_MODULE = image_picker_ios; - INFOPLIST_FILE = "Target Support Files/image_picker_ios/ResourceBundle-image_picker_ios_privacy-image_picker_ios-Info.plist"; - IPHONEOS_DEPLOYMENT_TARGET = 13.0; - PRODUCT_NAME = image_picker_ios_privacy; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; - WRAPPER_EXTENSION = bundle; - }; - name = "Debug-development"; - }; 536907D5E5ED857CC58757B53DF62B5B /* Release-production */ = { isa = XCBuildConfiguration; baseConfigurationReference = C3A8E22467ADEB42B7D83259E1A6F078 /* Sentry.release.xcconfig */; @@ -22487,76 +22210,59 @@ }; name = "Release-production"; }; - 53CFF93DF3C311C03EFFFAD3E35C6BB6 /* Release */ = { + 548DC1B2E0B685599E1B404CE8AB001D /* Stage-production */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 0E95E1622AE3A8ECD9572E38ECCC7DA7 /* GoogleToolboxForMac.release.xcconfig */; + baseConfigurationReference = FC4CA41561F8B1B855AED3763329DD2C /* PromisesObjC.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"; - GCC_PREFIX_HEADER = "Target Support Files/GoogleToolboxForMac/GoogleToolboxForMac-prefix.pch"; + CLANG_ENABLE_OBJC_WEAK = NO; + CODE_SIGNING_ALLOWED = NO; + CODE_SIGNING_IDENTITY = "-"; + CODE_SIGNING_REQUIRED = NO; + CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/PromisesObjC"; + EXPANDED_CODE_SIGN_IDENTITY = "-"; GCC_PREPROCESSOR_DEFINITIONS = ( "$(inherited)", "PERMISSION_CAMERA=1", "PERMISSION_PHOTOS=1", ); - INFOPLIST_FILE = "Target Support Files/GoogleToolboxForMac/GoogleToolboxForMac-Info.plist"; - INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; + IBSC_MODULE = FBLPromises; + INFOPLIST_FILE = "Target Support Files/PromisesObjC/ResourceBundle-FBLPromises_Privacy-PromisesObjC-Info.plist"; IPHONEOS_DEPLOYMENT_TARGET = 13.0; - LD_RUNPATH_SEARCH_PATHS = ( - "$(inherited)", - "@executable_path/Frameworks", - "@loader_path/Frameworks", - ); - MODULEMAP_FILE = "Target Support Files/GoogleToolboxForMac/GoogleToolboxForMac.modulemap"; - PRODUCT_MODULE_NAME = GoogleToolboxForMac; - PRODUCT_NAME = GoogleToolboxForMac; + PRODUCT_NAME = FBLPromises_Privacy; SDKROOT = iphoneos; SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_VERSION = 5.0; TARGETED_DEVICE_FAMILY = "1,2"; VALIDATE_PRODUCT = YES; - VERSIONING_SYSTEM = "apple-generic"; - VERSION_INFO_PREFIX = ""; + WRAPPER_EXTENSION = bundle; }; - name = Release; + name = "Stage-production"; }; - 550EA1785BAC97FAC378A464A4973AB1 /* Release-staging */ = { + 549787F1CBFFB4EF733A62F4913DC4B1 /* Profile-development */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 7B2F4BE2D901E9309159228CD856EBAF /* flutter_secure_storage.release.xcconfig */; + baseConfigurationReference = FE5C3B02302BE4DBC83D2A553D5F5C1B /* MLKitVision.release.xcconfig */; buildSettings = { + ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; + ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; CLANG_ENABLE_OBJC_WEAK = NO; - CODE_SIGNING_ALLOWED = NO; - CODE_SIGNING_IDENTITY = "-"; - CODE_SIGNING_REQUIRED = NO; - CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/flutter_secure_storage"; - EXPANDED_CODE_SIGN_IDENTITY = "-"; GCC_PREPROCESSOR_DEFINITIONS = ( "$(inherited)", "PERMISSION_CAMERA=1", "PERMISSION_PHOTOS=1", ); - IBSC_MODULE = flutter_secure_storage; - INFOPLIST_FILE = "Target Support Files/flutter_secure_storage/ResourceBundle-flutter_secure_storage-flutter_secure_storage-Info.plist"; IPHONEOS_DEPLOYMENT_TARGET = 13.0; - PRODUCT_NAME = flutter_secure_storage; + LD_RUNPATH_SEARCH_PATHS = ( + "$(inherited)", + "@executable_path/Frameworks", + ); SDKROOT = iphoneos; - SKIP_INSTALL = YES; TARGETED_DEVICE_FAMILY = "1,2"; VALIDATE_PRODUCT = YES; - WRAPPER_EXTENSION = bundle; }; - name = "Release-staging"; + name = "Profile-development"; }; 5534F1D266ABDBF7CE7A900E6B85A57D /* Profile-production */ = { isa = XCBuildConfiguration; - baseConfigurationReference = A7D0232BFA7DB2BABBC206DCBF4E211C /* flutter_email_sender.release.xcconfig */; + baseConfigurationReference = 59E64776226CA679807D58D84423DF5F /* flutter_email_sender.release.xcconfig */; buildSettings = { CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -22614,7 +22320,7 @@ }; 55446387E0477B33929A3C0283275BE1 /* Release-staging */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 4A911B9FACB388B308D1ABB5669DD583 /* permission_handler_apple.release.xcconfig */; + baseConfigurationReference = 4BB6D83A83366DD3295B456FF36F5E3F /* permission_handler_apple.release.xcconfig */; buildSettings = { CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -22671,9 +22377,36 @@ }; name = "Release-staging"; }; + 55733DD6501FBD6D721707606C1FBFF6 /* Debug-staging */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 19CE9AC8B13646CC03FBC77F131FF183 /* GoogleDataTransport.release.xcconfig */; + buildSettings = { + CLANG_ENABLE_OBJC_WEAK = NO; + CODE_SIGNING_ALLOWED = NO; + CODE_SIGNING_IDENTITY = "-"; + CODE_SIGNING_REQUIRED = NO; + CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/GoogleDataTransport"; + EXPANDED_CODE_SIGN_IDENTITY = "-"; + GCC_PREPROCESSOR_DEFINITIONS = ( + "$(inherited)", + "PERMISSION_CAMERA=1", + "PERMISSION_PHOTOS=1", + ); + IBSC_MODULE = GoogleDataTransport; + INFOPLIST_FILE = "Target Support Files/GoogleDataTransport/ResourceBundle-GoogleDataTransport_Privacy-GoogleDataTransport-Info.plist"; + IPHONEOS_DEPLOYMENT_TARGET = 13.0; + PRODUCT_NAME = GoogleDataTransport_Privacy; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; + WRAPPER_EXTENSION = bundle; + }; + name = "Debug-staging"; + }; 55CE42940427C21B0910443083146DD9 /* Stage-production */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 7B2F4BE2D901E9309159228CD856EBAF /* flutter_secure_storage.release.xcconfig */; + baseConfigurationReference = 13146A48D1544CF0CF218B3A514C848E /* flutter_secure_storage.release.xcconfig */; buildSettings = { CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -22730,7 +22463,7 @@ }; 55DD4BDE86F94E4E9620DB206BD41BCA /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 1372971D81F12D53D144676DF82636DC /* flutter_keyboard_visibility.debug.xcconfig */; + baseConfigurationReference = 3EE8F77B5ACD09C925921A77B88C174D /* flutter_keyboard_visibility.debug.xcconfig */; buildSettings = { CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -22849,7 +22582,7 @@ }; 5721A276986D1BC19AD91951E6560FB4 /* Debug-staging */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 06772A7CF38F34E24C0E8F60729C6339 /* local_auth_darwin.release.xcconfig */; + baseConfigurationReference = 9ECF4B2E725AF88A4D8BD77668F776C4 /* local_auth_darwin.release.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO; @@ -22907,7 +22640,7 @@ }; 572A678EABABA6889E8E82F4F439D464 /* Profile-development */ = { isa = XCBuildConfiguration; - baseConfigurationReference = A7D0232BFA7DB2BABBC206DCBF4E211C /* flutter_email_sender.release.xcconfig */; + baseConfigurationReference = 59E64776226CA679807D58D84423DF5F /* flutter_email_sender.release.xcconfig */; buildSettings = { CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -22963,9 +22696,36 @@ }; name = "Profile-development"; }; + 5732A99D6141A7818BAB4382FB15C684 /* Release-development */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 59E64776226CA679807D58D84423DF5F /* flutter_email_sender.release.xcconfig */; + buildSettings = { + CLANG_ENABLE_OBJC_WEAK = NO; + CODE_SIGNING_ALLOWED = NO; + CODE_SIGNING_IDENTITY = "-"; + CODE_SIGNING_REQUIRED = NO; + CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/flutter_email_sender"; + EXPANDED_CODE_SIGN_IDENTITY = "-"; + GCC_PREPROCESSOR_DEFINITIONS = ( + "$(inherited)", + "PERMISSION_CAMERA=1", + "PERMISSION_PHOTOS=1", + ); + IBSC_MODULE = flutter_email_sender; + INFOPLIST_FILE = "Target Support Files/flutter_email_sender/ResourceBundle-flutter_email_sender-flutter_email_sender-Info.plist"; + IPHONEOS_DEPLOYMENT_TARGET = 13.0; + PRODUCT_NAME = flutter_email_sender; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; + WRAPPER_EXTENSION = bundle; + }; + name = "Release-development"; + }; 5755E543C7D6AED97FEC66F1A7A1CDF0 /* Profile-staging */ = { isa = XCBuildConfiguration; - baseConfigurationReference = C782F3D64A5DB279B07DD4535BD2F969 /* image_picker_ios.release.xcconfig */; + baseConfigurationReference = 98AE98BF8E201BFC344D7356F2883701 /* image_picker_ios.release.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO; @@ -23021,175 +22781,198 @@ }; name = "Profile-staging"; }; - 579F627894F66706C144B165E6A8FBA2 /* Release */ = { + 57571C0D0B583DD89633EBB44064CAEA /* Release-staging */ = { isa = XCBuildConfiguration; - baseConfigurationReference = FC4CA41561F8B1B855AED3763329DD2C /* PromisesObjC.release.xcconfig */; + baseConfigurationReference = C3A8E22467ADEB42B7D83259E1A6F078 /* Sentry.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"; + CLANG_ENABLE_OBJC_WEAK = NO; + CODE_SIGNING_ALLOWED = NO; + CODE_SIGNING_IDENTITY = "-"; + CODE_SIGNING_REQUIRED = NO; + CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/Sentry"; + EXPANDED_CODE_SIGN_IDENTITY = "-"; GCC_PREPROCESSOR_DEFINITIONS = ( "$(inherited)", "PERMISSION_CAMERA=1", "PERMISSION_PHOTOS=1", ); - INFOPLIST_FILE = "Target Support Files/PromisesObjC/PromisesObjC-Info.plist"; - INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; + IBSC_MODULE = Sentry; + INFOPLIST_FILE = "Target Support Files/Sentry/ResourceBundle-Sentry-Sentry-Info.plist"; IPHONEOS_DEPLOYMENT_TARGET = 13.0; - LD_RUNPATH_SEARCH_PATHS = ( - "$(inherited)", - "@executable_path/Frameworks", - "@loader_path/Frameworks", - ); - MODULEMAP_FILE = "Target Support Files/PromisesObjC/PromisesObjC.modulemap"; - PRODUCT_MODULE_NAME = FBLPromises; - PRODUCT_NAME = FBLPromises; + PRODUCT_NAME = Sentry; SDKROOT = iphoneos; SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_VERSION = 5.0; TARGETED_DEVICE_FAMILY = "1,2"; VALIDATE_PRODUCT = YES; - VERSIONING_SYSTEM = "apple-generic"; - VERSION_INFO_PREFIX = ""; + WRAPPER_EXTENSION = bundle; }; - name = Release; + name = "Release-staging"; }; - 57B3F134534732ABDFC121B4FFD34294 /* Stage-production */ = { + 57912D1AD05CBFBAEA988894A68FCE02 /* Profile-staging */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 26DCE60E629963FB754A022AED7ACC73 /* MLImage.release.xcconfig */; + baseConfigurationReference = B587A9A0D5365CAA9B8A2CC41EB17830 /* nanopb.release.xcconfig */; buildSettings = { - ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; - ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; CLANG_ENABLE_OBJC_WEAK = NO; + CODE_SIGNING_ALLOWED = NO; + CODE_SIGNING_IDENTITY = "-"; + CODE_SIGNING_REQUIRED = NO; + CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/nanopb"; + EXPANDED_CODE_SIGN_IDENTITY = "-"; GCC_PREPROCESSOR_DEFINITIONS = ( "$(inherited)", "PERMISSION_CAMERA=1", "PERMISSION_PHOTOS=1", ); + IBSC_MODULE = nanopb; + INFOPLIST_FILE = "Target Support Files/nanopb/ResourceBundle-nanopb_Privacy-nanopb-Info.plist"; IPHONEOS_DEPLOYMENT_TARGET = 13.0; - LD_RUNPATH_SEARCH_PATHS = ( - "$(inherited)", - "@executable_path/Frameworks", - ); + PRODUCT_NAME = nanopb_Privacy; SDKROOT = iphoneos; + SKIP_INSTALL = YES; TARGETED_DEVICE_FAMILY = "1,2"; VALIDATE_PRODUCT = YES; + WRAPPER_EXTENSION = bundle; }; - name = "Stage-production"; + name = "Profile-staging"; }; - 580A67122ADE104709F51F21150C2B03 /* Release-development */ = { + 57D686C339E032C16F245B9B2EC52420 /* Debug-staging */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 8ABCAE069412CFA453F913E4A7E0184B /* GoogleUtilities.release.xcconfig */; + baseConfigurationReference = FC4CA41561F8B1B855AED3763329DD2C /* PromisesObjC.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"; + CLANG_ENABLE_OBJC_WEAK = NO; + CODE_SIGNING_ALLOWED = NO; + CODE_SIGNING_IDENTITY = "-"; + CODE_SIGNING_REQUIRED = NO; + CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/PromisesObjC"; + EXPANDED_CODE_SIGN_IDENTITY = "-"; GCC_PREPROCESSOR_DEFINITIONS = ( "$(inherited)", "PERMISSION_CAMERA=1", "PERMISSION_PHOTOS=1", ); - INFOPLIST_FILE = "Target Support Files/GoogleUtilities/GoogleUtilities-Info.plist"; - INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; + IBSC_MODULE = FBLPromises; + INFOPLIST_FILE = "Target Support Files/PromisesObjC/ResourceBundle-FBLPromises_Privacy-PromisesObjC-Info.plist"; IPHONEOS_DEPLOYMENT_TARGET = 13.0; - LD_RUNPATH_SEARCH_PATHS = ( + PRODUCT_NAME = FBLPromises_Privacy; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; + WRAPPER_EXTENSION = bundle; + }; + name = "Debug-staging"; + }; + 580116181099DE2CE2E8B9E5F791C586 /* Profile-staging */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 2529F7B6D57D43838BFCB332D2EDFE47 /* path_provider_foundation.release.xcconfig */; + buildSettings = { + CLANG_ENABLE_OBJC_WEAK = NO; + CODE_SIGNING_ALLOWED = NO; + CODE_SIGNING_IDENTITY = "-"; + CODE_SIGNING_REQUIRED = NO; + CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/path_provider_foundation"; + EXPANDED_CODE_SIGN_IDENTITY = "-"; + GCC_PREPROCESSOR_DEFINITIONS = ( "$(inherited)", - "@executable_path/Frameworks", - "@loader_path/Frameworks", + "PERMISSION_CAMERA=1", + "PERMISSION_PHOTOS=1", ); - MODULEMAP_FILE = "Target Support Files/GoogleUtilities/GoogleUtilities.modulemap"; - PRODUCT_MODULE_NAME = GoogleUtilities; - PRODUCT_NAME = GoogleUtilities; + IBSC_MODULE = path_provider_foundation; + INFOPLIST_FILE = "Target Support Files/path_provider_foundation/ResourceBundle-path_provider_foundation_privacy-path_provider_foundation-Info.plist"; + IPHONEOS_DEPLOYMENT_TARGET = 13.0; + PRODUCT_NAME = path_provider_foundation_privacy; SDKROOT = iphoneos; SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_VERSION = 5.0; TARGETED_DEVICE_FAMILY = "1,2"; VALIDATE_PRODUCT = YES; - VERSIONING_SYSTEM = "apple-generic"; - VERSION_INFO_PREFIX = ""; + WRAPPER_EXTENSION = bundle; }; - name = "Release-development"; + name = "Profile-staging"; }; - 58AEF3BD36C76A85F5D5C77F9B46AE2E /* Debug-development */ = { + 58B3D77EF8FD73C5DD80E4C36D22C292 /* Debug-production */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 8ABCAE069412CFA453F913E4A7E0184B /* GoogleUtilities.release.xcconfig */; + baseConfigurationReference = 6201BD6C84B86BD570988C7E3B8409CB /* package_info_plus.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"; + CLANG_ENABLE_OBJC_WEAK = NO; + CODE_SIGNING_ALLOWED = NO; + CODE_SIGNING_IDENTITY = "-"; + CODE_SIGNING_REQUIRED = NO; + CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/package_info_plus"; + EXPANDED_CODE_SIGN_IDENTITY = "-"; GCC_PREPROCESSOR_DEFINITIONS = ( "$(inherited)", "PERMISSION_CAMERA=1", "PERMISSION_PHOTOS=1", ); - INFOPLIST_FILE = "Target Support Files/GoogleUtilities/GoogleUtilities-Info.plist"; - INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; + IBSC_MODULE = package_info_plus; + INFOPLIST_FILE = "Target Support Files/package_info_plus/ResourceBundle-package_info_plus_privacy-package_info_plus-Info.plist"; IPHONEOS_DEPLOYMENT_TARGET = 13.0; - LD_RUNPATH_SEARCH_PATHS = ( + PRODUCT_NAME = package_info_plus_privacy; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; + WRAPPER_EXTENSION = bundle; + }; + name = "Debug-production"; + }; + 58BFADC757E72C9BBC50628273F68265 /* Profile */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 98AE98BF8E201BFC344D7356F2883701 /* image_picker_ios.release.xcconfig */; + buildSettings = { + CLANG_ENABLE_OBJC_WEAK = NO; + CODE_SIGNING_ALLOWED = NO; + CODE_SIGNING_IDENTITY = "-"; + CODE_SIGNING_REQUIRED = NO; + CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/image_picker_ios"; + EXPANDED_CODE_SIGN_IDENTITY = "-"; + GCC_PREPROCESSOR_DEFINITIONS = ( "$(inherited)", - "@executable_path/Frameworks", - "@loader_path/Frameworks", + "PERMISSION_CAMERA=1", + "PERMISSION_PHOTOS=1", ); - MODULEMAP_FILE = "Target Support Files/GoogleUtilities/GoogleUtilities.modulemap"; - PRODUCT_MODULE_NAME = GoogleUtilities; - PRODUCT_NAME = GoogleUtilities; + IBSC_MODULE = image_picker_ios; + INFOPLIST_FILE = "Target Support Files/image_picker_ios/ResourceBundle-image_picker_ios_privacy-image_picker_ios-Info.plist"; + IPHONEOS_DEPLOYMENT_TARGET = 13.0; + PRODUCT_NAME = image_picker_ios_privacy; SDKROOT = iphoneos; SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_VERSION = 5.0; TARGETED_DEVICE_FAMILY = "1,2"; VALIDATE_PRODUCT = YES; - VERSIONING_SYSTEM = "apple-generic"; - VERSION_INFO_PREFIX = ""; + WRAPPER_EXTENSION = bundle; }; - name = "Debug-development"; + name = Profile; }; - 597ADC1EC99AFD25C48FCDB21035B534 /* Debug-production */ = { + 599E9EB58071BAA922FCCFD4C050AA8A /* Profile-development */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 1E47B40DD78F33D7394C9CDADE9B41A7 /* share_plus.release.xcconfig */; + baseConfigurationReference = B587A9A0D5365CAA9B8A2CC41EB17830 /* nanopb.release.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; CODE_SIGNING_ALLOWED = NO; CODE_SIGNING_IDENTITY = "-"; CODE_SIGNING_REQUIRED = NO; - CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/share_plus"; + CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/nanopb"; EXPANDED_CODE_SIGN_IDENTITY = "-"; GCC_PREPROCESSOR_DEFINITIONS = ( "$(inherited)", "PERMISSION_CAMERA=1", "PERMISSION_PHOTOS=1", ); - IBSC_MODULE = share_plus; - INFOPLIST_FILE = "Target Support Files/share_plus/ResourceBundle-share_plus_privacy-share_plus-Info.plist"; + IBSC_MODULE = nanopb; + INFOPLIST_FILE = "Target Support Files/nanopb/ResourceBundle-nanopb_Privacy-nanopb-Info.plist"; IPHONEOS_DEPLOYMENT_TARGET = 13.0; - PRODUCT_NAME = share_plus_privacy; + PRODUCT_NAME = nanopb_Privacy; SDKROOT = iphoneos; SKIP_INSTALL = YES; TARGETED_DEVICE_FAMILY = "1,2"; VALIDATE_PRODUCT = YES; WRAPPER_EXTENSION = bundle; }; - name = "Debug-production"; + name = "Profile-development"; }; 59A36A609A08BC7128FC8171192F186B /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 154DBF6E97523835F2CB9615BB62FE8E /* url_launcher_ios.debug.xcconfig */; + baseConfigurationReference = 42385493A2E9373683CFD647E65599F1 /* url_launcher_ios.debug.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO; @@ -23265,7 +23048,7 @@ }; 5A008316B8085EC94A71509654BF1C45 /* Profile-development */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 73DB9045D22A4FBE50F8FACF34C6F052 /* url_launcher_ios.release.xcconfig */; + baseConfigurationReference = F9F252ACFB155ACF9BB56FB267880E01 /* url_launcher_ios.release.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO; @@ -23316,25 +23099,25 @@ }; name = "Profile-development"; }; - 5A698A0B574A011BBECBC30BE0D9DAC0 /* Profile-staging */ = { + 5A34B6F6A95913059E12AA45E08DA52E /* Profile-staging */ = { isa = XCBuildConfiguration; - baseConfigurationReference = C3A8E22467ADEB42B7D83259E1A6F078 /* Sentry.release.xcconfig */; + baseConfigurationReference = 8ABCAE069412CFA453F913E4A7E0184B /* GoogleUtilities.release.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; CODE_SIGNING_ALLOWED = NO; CODE_SIGNING_IDENTITY = "-"; CODE_SIGNING_REQUIRED = NO; - CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/Sentry"; + CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/GoogleUtilities"; EXPANDED_CODE_SIGN_IDENTITY = "-"; GCC_PREPROCESSOR_DEFINITIONS = ( "$(inherited)", "PERMISSION_CAMERA=1", "PERMISSION_PHOTOS=1", ); - IBSC_MODULE = Sentry; - INFOPLIST_FILE = "Target Support Files/Sentry/ResourceBundle-Sentry-Sentry-Info.plist"; + IBSC_MODULE = GoogleUtilities; + INFOPLIST_FILE = "Target Support Files/GoogleUtilities/ResourceBundle-GoogleUtilities_Privacy-GoogleUtilities-Info.plist"; IPHONEOS_DEPLOYMENT_TARGET = 13.0; - PRODUCT_NAME = Sentry; + PRODUCT_NAME = GoogleUtilities_Privacy; SDKROOT = iphoneos; SKIP_INSTALL = YES; TARGETED_DEVICE_FAMILY = "1,2"; @@ -23343,36 +23126,9 @@ }; name = "Profile-staging"; }; - 5A8262BEE465A42361AD40CD4EC0DFBA /* Release-development */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 1E47B40DD78F33D7394C9CDADE9B41A7 /* share_plus.release.xcconfig */; - buildSettings = { - CLANG_ENABLE_OBJC_WEAK = NO; - CODE_SIGNING_ALLOWED = NO; - CODE_SIGNING_IDENTITY = "-"; - CODE_SIGNING_REQUIRED = NO; - CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/share_plus"; - EXPANDED_CODE_SIGN_IDENTITY = "-"; - GCC_PREPROCESSOR_DEFINITIONS = ( - "$(inherited)", - "PERMISSION_CAMERA=1", - "PERMISSION_PHOTOS=1", - ); - IBSC_MODULE = share_plus; - INFOPLIST_FILE = "Target Support Files/share_plus/ResourceBundle-share_plus_privacy-share_plus-Info.plist"; - IPHONEOS_DEPLOYMENT_TARGET = 13.0; - PRODUCT_NAME = share_plus_privacy; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; - WRAPPER_EXTENSION = bundle; - }; - name = "Release-development"; - }; 5ACD71EE0842678ECE1F4CFE34786272 /* Release-development */ = { isa = XCBuildConfiguration; - baseConfigurationReference = C782F3D64A5DB279B07DD4535BD2F969 /* image_picker_ios.release.xcconfig */; + baseConfigurationReference = 98AE98BF8E201BFC344D7356F2883701 /* image_picker_ios.release.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO; @@ -23428,113 +23184,139 @@ }; name = "Release-development"; }; - 5AE5F4EB71CA380694D0866C16A362A7 /* Profile-production */ = { + 5B740B69D20D852987482867E55AFF09 /* Release-production */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 1E47B40DD78F33D7394C9CDADE9B41A7 /* share_plus.release.xcconfig */; + baseConfigurationReference = 8ABCAE069412CFA453F913E4A7E0184B /* GoogleUtilities.release.xcconfig */; buildSettings = { - CLANG_ENABLE_OBJC_WEAK = NO; - CODE_SIGNING_ALLOWED = NO; - CODE_SIGNING_IDENTITY = "-"; - CODE_SIGNING_REQUIRED = NO; - CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/share_plus"; - EXPANDED_CODE_SIGN_IDENTITY = "-"; + "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"; GCC_PREPROCESSOR_DEFINITIONS = ( "$(inherited)", "PERMISSION_CAMERA=1", "PERMISSION_PHOTOS=1", ); - IBSC_MODULE = share_plus; - INFOPLIST_FILE = "Target Support Files/share_plus/ResourceBundle-share_plus_privacy-share_plus-Info.plist"; + INFOPLIST_FILE = "Target Support Files/GoogleUtilities/GoogleUtilities-Info.plist"; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; IPHONEOS_DEPLOYMENT_TARGET = 13.0; - PRODUCT_NAME = share_plus_privacy; + LD_RUNPATH_SEARCH_PATHS = ( + "$(inherited)", + "@executable_path/Frameworks", + "@loader_path/Frameworks", + ); + 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_VERSION = 5.0; TARGETED_DEVICE_FAMILY = "1,2"; VALIDATE_PRODUCT = YES; - WRAPPER_EXTENSION = bundle; + VERSIONING_SYSTEM = "apple-generic"; + VERSION_INFO_PREFIX = ""; }; - name = "Profile-production"; + name = "Release-production"; }; - 5AF624E37521A01FD032104E924250BD /* Profile-development */ = { + 5B9C2E65711830811176B56F8882242E /* Debug-staging */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 86E540DA830E020FCC7DEA27000E1A98 /* shared_preferences_foundation.release.xcconfig */; + baseConfigurationReference = D4F18F4F6B39AC1431EB143FE2915402 /* GoogleUtilitiesComponents.release.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; - CODE_SIGNING_ALLOWED = NO; - CODE_SIGNING_IDENTITY = "-"; - CODE_SIGNING_REQUIRED = NO; - CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/shared_preferences_foundation"; - EXPANDED_CODE_SIGN_IDENTITY = "-"; + "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"; GCC_PREPROCESSOR_DEFINITIONS = ( "$(inherited)", "PERMISSION_CAMERA=1", "PERMISSION_PHOTOS=1", ); - IBSC_MODULE = shared_preferences_foundation; - INFOPLIST_FILE = "Target Support Files/shared_preferences_foundation/ResourceBundle-shared_preferences_foundation_privacy-shared_preferences_foundation-Info.plist"; + INFOPLIST_FILE = "Target Support Files/GoogleUtilitiesComponents/GoogleUtilitiesComponents-Info.plist"; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; IPHONEOS_DEPLOYMENT_TARGET = 13.0; - PRODUCT_NAME = shared_preferences_foundation_privacy; + LD_RUNPATH_SEARCH_PATHS = ( + "$(inherited)", + "@executable_path/Frameworks", + "@loader_path/Frameworks", + ); + MACH_O_TYPE = staticlib; + MODULEMAP_FILE = "Target Support Files/GoogleUtilitiesComponents/GoogleUtilitiesComponents.modulemap"; + PRODUCT_MODULE_NAME = GoogleUtilitiesComponents; + PRODUCT_NAME = GoogleUtilitiesComponents; SDKROOT = iphoneos; SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; + SWIFT_VERSION = 5.0; TARGETED_DEVICE_FAMILY = "1,2"; VALIDATE_PRODUCT = YES; - WRAPPER_EXTENSION = bundle; + VERSIONING_SYSTEM = "apple-generic"; + VERSION_INFO_PREFIX = ""; }; - name = "Profile-development"; + name = "Debug-staging"; }; - 5B36F91D02B9405C404486AB197FDE14 /* Profile-production */ = { + 5CF1A71A19432C039EDD8791E74481EE /* Release-production */ = { isa = XCBuildConfiguration; - baseConfigurationReference = FC4CA41561F8B1B855AED3763329DD2C /* PromisesObjC.release.xcconfig */; + baseConfigurationReference = 5D2DA3CB411FF35D30470F3AEFA259CB /* Flutter.release.xcconfig */; buildSettings = { + ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; + ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; CLANG_ENABLE_OBJC_WEAK = NO; - CODE_SIGNING_ALLOWED = NO; - CODE_SIGNING_IDENTITY = "-"; - CODE_SIGNING_REQUIRED = NO; - CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/PromisesObjC"; - EXPANDED_CODE_SIGN_IDENTITY = "-"; GCC_PREPROCESSOR_DEFINITIONS = ( "$(inherited)", "PERMISSION_CAMERA=1", "PERMISSION_PHOTOS=1", ); - IBSC_MODULE = FBLPromises; - INFOPLIST_FILE = "Target Support Files/PromisesObjC/ResourceBundle-FBLPromises_Privacy-PromisesObjC-Info.plist"; IPHONEOS_DEPLOYMENT_TARGET = 13.0; - PRODUCT_NAME = FBLPromises_Privacy; + LD_RUNPATH_SEARCH_PATHS = ( + "$(inherited)", + "@executable_path/Frameworks", + ); SDKROOT = iphoneos; - SKIP_INSTALL = YES; TARGETED_DEVICE_FAMILY = "1,2"; VALIDATE_PRODUCT = YES; - WRAPPER_EXTENSION = bundle; }; - name = "Profile-production"; + name = "Release-production"; }; - 5CF1A71A19432C039EDD8791E74481EE /* Release-production */ = { + 5D052F3F79DED002F30FE4668217D611 /* Release-staging */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 5D2DA3CB411FF35D30470F3AEFA259CB /* Flutter.release.xcconfig */; + baseConfigurationReference = 9ECF4B2E725AF88A4D8BD77668F776C4 /* local_auth_darwin.release.xcconfig */; buildSettings = { - ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; - ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; CLANG_ENABLE_OBJC_WEAK = NO; + CODE_SIGNING_ALLOWED = NO; + CODE_SIGNING_IDENTITY = "-"; + CODE_SIGNING_REQUIRED = NO; + CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/local_auth_darwin"; + EXPANDED_CODE_SIGN_IDENTITY = "-"; GCC_PREPROCESSOR_DEFINITIONS = ( "$(inherited)", "PERMISSION_CAMERA=1", "PERMISSION_PHOTOS=1", ); + IBSC_MODULE = local_auth_darwin; + INFOPLIST_FILE = "Target Support Files/local_auth_darwin/ResourceBundle-local_auth_darwin_privacy-local_auth_darwin-Info.plist"; IPHONEOS_DEPLOYMENT_TARGET = 13.0; - LD_RUNPATH_SEARCH_PATHS = ( - "$(inherited)", - "@executable_path/Frameworks", - ); + PRODUCT_NAME = local_auth_darwin_privacy; SDKROOT = iphoneos; + SKIP_INSTALL = YES; TARGETED_DEVICE_FAMILY = "1,2"; VALIDATE_PRODUCT = YES; + WRAPPER_EXTENSION = bundle; }; - name = "Release-production"; + name = "Release-staging"; }; 5D7D712318372A5BB44CFF71BC0E787E /* Profile */ = { isa = XCBuildConfiguration; - baseConfigurationReference = C630DC976CFC529906571DA851643B86 /* integration_test.release.xcconfig */; + baseConfigurationReference = 5ACA34BFC6EAE3E5A15EE45A206A60FA /* integration_test.release.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO; @@ -23590,36 +23372,63 @@ }; name = Profile; }; - 5D809536E47A92311B9BC24767162E81 /* Debug-production */ = { + 5DE3C236225A24765D386DA6CB0B4217 /* Debug-staging */ = { isa = XCBuildConfiguration; - baseConfigurationReference = FC4CA41561F8B1B855AED3763329DD2C /* PromisesObjC.release.xcconfig */; + baseConfigurationReference = 13146A48D1544CF0CF218B3A514C848E /* flutter_secure_storage.release.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; CODE_SIGNING_ALLOWED = NO; CODE_SIGNING_IDENTITY = "-"; CODE_SIGNING_REQUIRED = NO; - CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/PromisesObjC"; + CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/flutter_secure_storage"; EXPANDED_CODE_SIGN_IDENTITY = "-"; GCC_PREPROCESSOR_DEFINITIONS = ( "$(inherited)", "PERMISSION_CAMERA=1", "PERMISSION_PHOTOS=1", ); - IBSC_MODULE = FBLPromises; - INFOPLIST_FILE = "Target Support Files/PromisesObjC/ResourceBundle-FBLPromises_Privacy-PromisesObjC-Info.plist"; + IBSC_MODULE = flutter_secure_storage; + INFOPLIST_FILE = "Target Support Files/flutter_secure_storage/ResourceBundle-flutter_secure_storage-flutter_secure_storage-Info.plist"; IPHONEOS_DEPLOYMENT_TARGET = 13.0; - PRODUCT_NAME = FBLPromises_Privacy; + PRODUCT_NAME = flutter_secure_storage; SDKROOT = iphoneos; SKIP_INSTALL = YES; TARGETED_DEVICE_FAMILY = "1,2"; VALIDATE_PRODUCT = YES; WRAPPER_EXTENSION = bundle; }; - name = "Debug-production"; + name = "Debug-staging"; + }; + 5DEDFB0A5703524DE08DC4A1FD137021 /* Debug-development */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 196B9320A9BD7C09E7C5420F49D709B3 /* share_plus.release.xcconfig */; + buildSettings = { + CLANG_ENABLE_OBJC_WEAK = NO; + CODE_SIGNING_ALLOWED = NO; + CODE_SIGNING_IDENTITY = "-"; + CODE_SIGNING_REQUIRED = NO; + CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/share_plus"; + EXPANDED_CODE_SIGN_IDENTITY = "-"; + GCC_PREPROCESSOR_DEFINITIONS = ( + "$(inherited)", + "PERMISSION_CAMERA=1", + "PERMISSION_PHOTOS=1", + ); + IBSC_MODULE = share_plus; + INFOPLIST_FILE = "Target Support Files/share_plus/ResourceBundle-share_plus_privacy-share_plus-Info.plist"; + IPHONEOS_DEPLOYMENT_TARGET = 13.0; + PRODUCT_NAME = share_plus_privacy; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; + WRAPPER_EXTENSION = bundle; + }; + name = "Debug-development"; }; 5E394B8491FD03270B8B3DE42CF6ABC2 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 86E540DA830E020FCC7DEA27000E1A98 /* shared_preferences_foundation.release.xcconfig */; + baseConfigurationReference = D1CCD0C16DFF0194B0A936A205ED4ED0 /* shared_preferences_foundation.release.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO; @@ -23670,38 +23479,50 @@ }; name = Release; }; - 5E7745DB3C5498C4ED858B3172846B58 /* Debug-staging */ = { + 5E593A77E18001F10ACFBCB14E24E17A /* Profile-production */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 06772A7CF38F34E24C0E8F60729C6339 /* local_auth_darwin.release.xcconfig */; + baseConfigurationReference = B587A9A0D5365CAA9B8A2CC41EB17830 /* nanopb.release.xcconfig */; buildSettings = { - CLANG_ENABLE_OBJC_WEAK = NO; - CODE_SIGNING_ALLOWED = NO; - CODE_SIGNING_IDENTITY = "-"; - CODE_SIGNING_REQUIRED = NO; - CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/local_auth_darwin"; - EXPANDED_CODE_SIGN_IDENTITY = "-"; + "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"; + GCC_PREFIX_HEADER = "Target Support Files/nanopb/nanopb-prefix.pch"; GCC_PREPROCESSOR_DEFINITIONS = ( "$(inherited)", "PERMISSION_CAMERA=1", "PERMISSION_PHOTOS=1", ); - IBSC_MODULE = local_auth_darwin; - INFOPLIST_FILE = "Target Support Files/local_auth_darwin/ResourceBundle-local_auth_darwin_privacy-local_auth_darwin-Info.plist"; + INFOPLIST_FILE = "Target Support Files/nanopb/nanopb-Info.plist"; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; IPHONEOS_DEPLOYMENT_TARGET = 13.0; - PRODUCT_NAME = local_auth_darwin_privacy; + LD_RUNPATH_SEARCH_PATHS = ( + "$(inherited)", + "@executable_path/Frameworks", + "@loader_path/Frameworks", + ); + 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_VERSION = 5.0; TARGETED_DEVICE_FAMILY = "1,2"; VALIDATE_PRODUCT = YES; - WRAPPER_EXTENSION = bundle; + VERSIONING_SYSTEM = "apple-generic"; + VERSION_INFO_PREFIX = ""; }; - name = "Debug-staging"; + name = "Profile-production"; }; - 5FC9647AC3EF1B9D4D88DC4B1D75EC15 /* Debug-development */ = { + 6008777371CB73FBD3F9B1F2D4E0CE4A /* Profile-development */ = { isa = XCBuildConfiguration; - baseConfigurationReference = D4F18F4F6B39AC1431EB143FE2915402 /* GoogleUtilitiesComponents.release.xcconfig */; + baseConfigurationReference = B587A9A0D5365CAA9B8A2CC41EB17830 /* nanopb.release.xcconfig */; buildSettings = { - CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; @@ -23710,12 +23531,13 @@ DYLIB_COMPATIBILITY_VERSION = 1; DYLIB_CURRENT_VERSION = 1; DYLIB_INSTALL_NAME_BASE = "@rpath"; + GCC_PREFIX_HEADER = "Target Support Files/nanopb/nanopb-prefix.pch"; GCC_PREPROCESSOR_DEFINITIONS = ( "$(inherited)", "PERMISSION_CAMERA=1", "PERMISSION_PHOTOS=1", ); - INFOPLIST_FILE = "Target Support Files/GoogleUtilitiesComponents/GoogleUtilitiesComponents-Info.plist"; + INFOPLIST_FILE = "Target Support Files/nanopb/nanopb-Info.plist"; INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; IPHONEOS_DEPLOYMENT_TARGET = 13.0; LD_RUNPATH_SEARCH_PATHS = ( @@ -23723,10 +23545,9 @@ "@executable_path/Frameworks", "@loader_path/Frameworks", ); - MACH_O_TYPE = staticlib; - MODULEMAP_FILE = "Target Support Files/GoogleUtilitiesComponents/GoogleUtilitiesComponents.modulemap"; - PRODUCT_MODULE_NAME = GoogleUtilitiesComponents; - PRODUCT_NAME = GoogleUtilitiesComponents; + 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) "; @@ -23736,11 +23557,11 @@ VERSIONING_SYSTEM = "apple-generic"; VERSION_INFO_PREFIX = ""; }; - name = "Debug-development"; + name = "Profile-development"; }; 60321551B5E1E97F9E2F48D91E57D051 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = D2218A6EC0D27E04360FF7B5CD567548 /* path_provider_foundation.debug.xcconfig */; + baseConfigurationReference = F69566DAE9F9C879A66CB81ED7B13590 /* path_provider_foundation.debug.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO; @@ -23852,53 +23673,44 @@ }; name = "Profile-development"; }; - 61634A20839EF1D546E624173B14BFA9 /* Release-development */ = { + 60C23DE51502DEBEB605E6B877F762C3 /* Debug-staging */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 5D2B88AD25CD5EBE586D760474336767 /* MLKitBarcodeScanning.release.xcconfig */; + baseConfigurationReference = 8ABCAE069412CFA453F913E4A7E0184B /* GoogleUtilities.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"; GCC_PREPROCESSOR_DEFINITIONS = ( "$(inherited)", "PERMISSION_CAMERA=1", "PERMISSION_PHOTOS=1", ); + INFOPLIST_FILE = "Target Support Files/GoogleUtilities/GoogleUtilities-Info.plist"; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; IPHONEOS_DEPLOYMENT_TARGET = 13.0; LD_RUNPATH_SEARCH_PATHS = ( "$(inherited)", "@executable_path/Frameworks", + "@loader_path/Frameworks", ); - SDKROOT = iphoneos; - TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; - }; - name = "Release-development"; - }; - 6165FE053CCB66C7DCB01798F79879C4 /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = F4C3D5A980B27BD2C418D61228F67F01 /* package_info_plus.release.xcconfig */; - buildSettings = { - CODE_SIGNING_ALLOWED = NO; - CODE_SIGNING_IDENTITY = "-"; - CODE_SIGNING_REQUIRED = NO; - CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/package_info_plus"; - EXPANDED_CODE_SIGN_IDENTITY = "-"; - GCC_PREPROCESSOR_DEFINITIONS = ( - "$(inherited)", - "PERMISSION_CAMERA=1", - "PERMISSION_PHOTOS=1", - ); - IBSC_MODULE = package_info_plus; - INFOPLIST_FILE = "Target Support Files/package_info_plus/ResourceBundle-package_info_plus_privacy-package_info_plus-Info.plist"; - IPHONEOS_DEPLOYMENT_TARGET = 13.0; - PRODUCT_NAME = package_info_plus_privacy; + 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_VERSION = 5.0; TARGETED_DEVICE_FAMILY = "1,2"; - WRAPPER_EXTENSION = bundle; + VALIDATE_PRODUCT = YES; + VERSIONING_SYSTEM = "apple-generic"; + VERSION_INFO_PREFIX = ""; }; - name = Release; + name = "Debug-staging"; }; 61BC886CA62BFDC69F5FF5355DE06FCD /* Debug-staging */ = { isa = XCBuildConfiguration; @@ -23962,7 +23774,7 @@ }; 61BECBA848BDFEFF48D799FEB13737B6 /* Debug-staging */ = { isa = XCBuildConfiguration; - baseConfigurationReference = A7D0232BFA7DB2BABBC206DCBF4E211C /* flutter_email_sender.release.xcconfig */; + baseConfigurationReference = 59E64776226CA679807D58D84423DF5F /* flutter_email_sender.release.xcconfig */; buildSettings = { CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -24020,7 +23832,7 @@ }; 620344AA4CAE89551F301093A75C97B9 /* Profile-staging */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 1E47B40DD78F33D7394C9CDADE9B41A7 /* share_plus.release.xcconfig */; + baseConfigurationReference = 196B9320A9BD7C09E7C5420F49D709B3 /* share_plus.release.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO; @@ -24078,7 +23890,7 @@ }; 621CDB257B8C52370798837F6AC24240 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 2C0178C1EDE28CC099A2ADAB1A94C43C /* sqflite.debug.xcconfig */; + baseConfigurationReference = 52F650C38F364BA6AD78BDD7775115D5 /* sqflite.debug.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO; @@ -24136,7 +23948,7 @@ }; 623249307D460863A71C7A2828A4DE81 /* Debug-development */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 9D69F5F0798882A34E95D912A7DDF7B1 /* sentry_flutter.release.xcconfig */; + baseConfigurationReference = 28C6A92040B7AE9155DE2648EB0D7296 /* sentry_flutter.release.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO; @@ -24192,16 +24004,14 @@ }; name = "Debug-development"; }; - 62EE6EF1628DC289BE0B6F3B66109081 /* Profile-production */ = { + 628ABCD8622C39E8C6C7B98B4824C5B8 /* Profile */ = { isa = XCBuildConfiguration; - baseConfigurationReference = D4F18F4F6B39AC1431EB143FE2915402 /* GoogleUtilitiesComponents.release.xcconfig */; + baseConfigurationReference = FC4CA41561F8B1B855AED3763329DD2C /* PromisesObjC.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"; @@ -24210,7 +24020,7 @@ "PERMISSION_CAMERA=1", "PERMISSION_PHOTOS=1", ); - INFOPLIST_FILE = "Target Support Files/GoogleUtilitiesComponents/GoogleUtilitiesComponents-Info.plist"; + INFOPLIST_FILE = "Target Support Files/PromisesObjC/PromisesObjC-Info.plist"; INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; IPHONEOS_DEPLOYMENT_TARGET = 13.0; LD_RUNPATH_SEARCH_PATHS = ( @@ -24218,10 +24028,9 @@ "@executable_path/Frameworks", "@loader_path/Frameworks", ); - MACH_O_TYPE = staticlib; - MODULEMAP_FILE = "Target Support Files/GoogleUtilitiesComponents/GoogleUtilitiesComponents.modulemap"; - PRODUCT_MODULE_NAME = GoogleUtilitiesComponents; - PRODUCT_NAME = GoogleUtilitiesComponents; + 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) "; @@ -24231,7 +24040,61 @@ VERSIONING_SYSTEM = "apple-generic"; VERSION_INFO_PREFIX = ""; }; - name = "Profile-production"; + name = Profile; + }; + 6296DF11A4F54788F944CDC5B73F0823 /* Profile */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 13146A48D1544CF0CF218B3A514C848E /* flutter_secure_storage.release.xcconfig */; + buildSettings = { + CLANG_ENABLE_OBJC_WEAK = NO; + CODE_SIGNING_ALLOWED = NO; + CODE_SIGNING_IDENTITY = "-"; + CODE_SIGNING_REQUIRED = NO; + CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/flutter_secure_storage"; + EXPANDED_CODE_SIGN_IDENTITY = "-"; + GCC_PREPROCESSOR_DEFINITIONS = ( + "$(inherited)", + "PERMISSION_CAMERA=1", + "PERMISSION_PHOTOS=1", + ); + IBSC_MODULE = flutter_secure_storage; + INFOPLIST_FILE = "Target Support Files/flutter_secure_storage/ResourceBundle-flutter_secure_storage-flutter_secure_storage-Info.plist"; + IPHONEOS_DEPLOYMENT_TARGET = 13.0; + PRODUCT_NAME = flutter_secure_storage; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; + WRAPPER_EXTENSION = bundle; + }; + name = Profile; + }; + 62E2DFCB54B99A3D35436CF047D5CF91 /* Profile-development */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 0F62AA5AF0EE048AB478074EDD1A2CD4 /* connectivity_plus.release.xcconfig */; + buildSettings = { + CLANG_ENABLE_OBJC_WEAK = NO; + CODE_SIGNING_ALLOWED = NO; + CODE_SIGNING_IDENTITY = "-"; + CODE_SIGNING_REQUIRED = NO; + CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/connectivity_plus"; + EXPANDED_CODE_SIGN_IDENTITY = "-"; + GCC_PREPROCESSOR_DEFINITIONS = ( + "$(inherited)", + "PERMISSION_CAMERA=1", + "PERMISSION_PHOTOS=1", + ); + IBSC_MODULE = connectivity_plus; + INFOPLIST_FILE = "Target Support Files/connectivity_plus/ResourceBundle-connectivity_plus_privacy-connectivity_plus-Info.plist"; + IPHONEOS_DEPLOYMENT_TARGET = 13.0; + PRODUCT_NAME = connectivity_plus_privacy; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; + WRAPPER_EXTENSION = bundle; + }; + name = "Profile-development"; }; 62F39B61D6397033DB69EFF1B3B51690 /* Debug-development */ = { isa = XCBuildConfiguration; @@ -24293,56 +24156,132 @@ }; name = "Debug-development"; }; - 63914478EC93ED86177B8482D647A20F /* Release */ = { + 63308B8AA01EA1142C80C80E48C1E206 /* Release-production */ = { isa = XCBuildConfiguration; - baseConfigurationReference = C3A8E22467ADEB42B7D83259E1A6F078 /* Sentry.release.xcconfig */; + baseConfigurationReference = 59E64776226CA679807D58D84423DF5F /* flutter_email_sender.release.xcconfig */; buildSettings = { + CLANG_ENABLE_OBJC_WEAK = NO; CODE_SIGNING_ALLOWED = NO; CODE_SIGNING_IDENTITY = "-"; CODE_SIGNING_REQUIRED = NO; - CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/Sentry"; + CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/flutter_email_sender"; EXPANDED_CODE_SIGN_IDENTITY = "-"; GCC_PREPROCESSOR_DEFINITIONS = ( "$(inherited)", "PERMISSION_CAMERA=1", "PERMISSION_PHOTOS=1", ); - IBSC_MODULE = Sentry; - INFOPLIST_FILE = "Target Support Files/Sentry/ResourceBundle-Sentry-Sentry-Info.plist"; + IBSC_MODULE = flutter_email_sender; + INFOPLIST_FILE = "Target Support Files/flutter_email_sender/ResourceBundle-flutter_email_sender-flutter_email_sender-Info.plist"; IPHONEOS_DEPLOYMENT_TARGET = 13.0; - PRODUCT_NAME = Sentry; + PRODUCT_NAME = flutter_email_sender; SDKROOT = iphoneos; SKIP_INSTALL = YES; TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; WRAPPER_EXTENSION = bundle; }; - name = Release; + name = "Release-production"; }; - 6495F9EC3348A8876C80ABA6448FB148 /* Debug */ = { + 634B7BB5041825B9B833A392286BB30F /* Stage-production */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 9DC45C3C969EEFF5793F781E06C2A034 /* package_info_plus.debug.xcconfig */; + baseConfigurationReference = 8ABCAE069412CFA453F913E4A7E0184B /* GoogleUtilities.release.xcconfig */; buildSettings = { + CLANG_ENABLE_OBJC_WEAK = NO; CODE_SIGNING_ALLOWED = NO; CODE_SIGNING_IDENTITY = "-"; CODE_SIGNING_REQUIRED = NO; - CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/package_info_plus"; + CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/GoogleUtilities"; EXPANDED_CODE_SIGN_IDENTITY = "-"; GCC_PREPROCESSOR_DEFINITIONS = ( "$(inherited)", "PERMISSION_CAMERA=1", "PERMISSION_PHOTOS=1", ); - IBSC_MODULE = package_info_plus; - INFOPLIST_FILE = "Target Support Files/package_info_plus/ResourceBundle-package_info_plus_privacy-package_info_plus-Info.plist"; + IBSC_MODULE = GoogleUtilities; + INFOPLIST_FILE = "Target Support Files/GoogleUtilities/ResourceBundle-GoogleUtilities_Privacy-GoogleUtilities-Info.plist"; IPHONEOS_DEPLOYMENT_TARGET = 13.0; - ONLY_ACTIVE_ARCH = NO; - PRODUCT_NAME = package_info_plus_privacy; + PRODUCT_NAME = GoogleUtilities_Privacy; SDKROOT = iphoneos; SKIP_INSTALL = YES; TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; WRAPPER_EXTENSION = bundle; }; - name = Debug; + name = "Stage-production"; + }; + 635DE6C50E418EC6D33AECAED7B01206 /* Release-staging */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 5D2B88AD25CD5EBE586D760474336767 /* MLKitBarcodeScanning.release.xcconfig */; + buildSettings = { + ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; + ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; + CLANG_ENABLE_OBJC_WEAK = NO; + GCC_PREPROCESSOR_DEFINITIONS = ( + "$(inherited)", + "PERMISSION_CAMERA=1", + "PERMISSION_PHOTOS=1", + ); + IPHONEOS_DEPLOYMENT_TARGET = 13.0; + LD_RUNPATH_SEARCH_PATHS = ( + "$(inherited)", + "@executable_path/Frameworks", + ); + SDKROOT = iphoneos; + TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; + }; + name = "Release-staging"; + }; + 63D237D7576BE921234E8316C00FB758 /* Profile-staging */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = FE5C3B02302BE4DBC83D2A553D5F5C1B /* MLKitVision.release.xcconfig */; + buildSettings = { + ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; + ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; + CLANG_ENABLE_OBJC_WEAK = NO; + GCC_PREPROCESSOR_DEFINITIONS = ( + "$(inherited)", + "PERMISSION_CAMERA=1", + "PERMISSION_PHOTOS=1", + ); + IPHONEOS_DEPLOYMENT_TARGET = 13.0; + LD_RUNPATH_SEARCH_PATHS = ( + "$(inherited)", + "@executable_path/Frameworks", + ); + SDKROOT = iphoneos; + TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; + }; + name = "Profile-staging"; + }; + 641A310395B4B8EE76294918512A5DE7 /* Profile */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = FC4CA41561F8B1B855AED3763329DD2C /* PromisesObjC.release.xcconfig */; + buildSettings = { + CLANG_ENABLE_OBJC_WEAK = NO; + CODE_SIGNING_ALLOWED = NO; + CODE_SIGNING_IDENTITY = "-"; + CODE_SIGNING_REQUIRED = NO; + CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/PromisesObjC"; + EXPANDED_CODE_SIGN_IDENTITY = "-"; + GCC_PREPROCESSOR_DEFINITIONS = ( + "$(inherited)", + "PERMISSION_CAMERA=1", + "PERMISSION_PHOTOS=1", + ); + IBSC_MODULE = FBLPromises; + INFOPLIST_FILE = "Target Support Files/PromisesObjC/ResourceBundle-FBLPromises_Privacy-PromisesObjC-Info.plist"; + IPHONEOS_DEPLOYMENT_TARGET = 13.0; + PRODUCT_NAME = FBLPromises_Privacy; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; + WRAPPER_EXTENSION = bundle; + }; + name = Profile; }; 64C4E9E278E17BE1B06474CE4547AB57 /* Release */ = { isa = XCBuildConfiguration; @@ -24406,7 +24345,7 @@ }; 65372275D410CC0D9CAD9E0EB7247B11 /* Debug-development */ = { isa = XCBuildConfiguration; - baseConfigurationReference = B60761FA10DAC783EF5D7E4C1574226A /* connectivity_plus.release.xcconfig */; + baseConfigurationReference = 0F62AA5AF0EE048AB478074EDD1A2CD4 /* connectivity_plus.release.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO; @@ -24462,76 +24401,36 @@ }; name = "Debug-development"; }; - 65835392429465082F856B91139619C8 /* Release-development */ = { + 6579063DEF76A3944EA4433C0F2FA251 /* Profile-production */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 0E95E1622AE3A8ECD9572E38ECCC7DA7 /* GoogleToolboxForMac.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"; - GCC_PREFIX_HEADER = "Target Support Files/GoogleToolboxForMac/GoogleToolboxForMac-prefix.pch"; - GCC_PREPROCESSOR_DEFINITIONS = ( - "$(inherited)", - "PERMISSION_CAMERA=1", - "PERMISSION_PHOTOS=1", - ); - INFOPLIST_FILE = "Target Support Files/GoogleToolboxForMac/GoogleToolboxForMac-Info.plist"; - INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; - IPHONEOS_DEPLOYMENT_TARGET = 13.0; - LD_RUNPATH_SEARCH_PATHS = ( - "$(inherited)", - "@executable_path/Frameworks", - "@loader_path/Frameworks", - ); - MODULEMAP_FILE = "Target Support Files/GoogleToolboxForMac/GoogleToolboxForMac.modulemap"; - PRODUCT_MODULE_NAME = GoogleToolboxForMac; - PRODUCT_NAME = GoogleToolboxForMac; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_VERSION = 5.0; - TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; - VERSIONING_SYSTEM = "apple-generic"; - VERSION_INFO_PREFIX = ""; - }; - name = "Release-development"; - }; - 658F1930B36894F2BD8454C6DFABE0BF /* Stage-production */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 4A911B9FACB388B308D1ABB5669DD583 /* permission_handler_apple.release.xcconfig */; + baseConfigurationReference = B3F81CBF23C2B71680A734B4B74EA6EF /* sqflite.release.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; CODE_SIGNING_ALLOWED = NO; CODE_SIGNING_IDENTITY = "-"; CODE_SIGNING_REQUIRED = NO; - CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/permission_handler_apple"; + CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/sqflite"; EXPANDED_CODE_SIGN_IDENTITY = "-"; GCC_PREPROCESSOR_DEFINITIONS = ( "$(inherited)", "PERMISSION_CAMERA=1", "PERMISSION_PHOTOS=1", ); - IBSC_MODULE = permission_handler_apple; - INFOPLIST_FILE = "Target Support Files/permission_handler_apple/ResourceBundle-permission_handler_apple_privacy-permission_handler_apple-Info.plist"; + IBSC_MODULE = sqflite; + INFOPLIST_FILE = "Target Support Files/sqflite/ResourceBundle-sqflite_darwin_privacy-sqflite-Info.plist"; IPHONEOS_DEPLOYMENT_TARGET = 13.0; - PRODUCT_NAME = permission_handler_apple_privacy; + PRODUCT_NAME = sqflite_darwin_privacy; SDKROOT = iphoneos; SKIP_INSTALL = YES; TARGETED_DEVICE_FAMILY = "1,2"; VALIDATE_PRODUCT = YES; WRAPPER_EXTENSION = bundle; }; - name = "Stage-production"; + name = "Profile-production"; }; 659982D904A4C02EECE9E1753260E18C /* Profile-development */ = { isa = XCBuildConfiguration; - baseConfigurationReference = B91357BF97DBAECE656386331F10CCFD /* sqflite.release.xcconfig */; + baseConfigurationReference = B3F81CBF23C2B71680A734B4B74EA6EF /* sqflite.release.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO; @@ -24587,35 +24486,59 @@ }; name = "Profile-development"; }; - 65E90EF4E409BD22B64617CB40FB6D42 /* Debug */ = { + 66156FB3FC9A9EDE7426E8E2C071FDE3 /* Release-development */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 692CE151EB259A1A320BC0593B8D2D93 /* image_picker_ios.debug.xcconfig */; + baseConfigurationReference = F9F252ACFB155ACF9BB56FB267880E01 /* url_launcher_ios.release.xcconfig */; buildSettings = { + CLANG_ENABLE_OBJC_WEAK = NO; CODE_SIGNING_ALLOWED = NO; CODE_SIGNING_IDENTITY = "-"; CODE_SIGNING_REQUIRED = NO; - CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/image_picker_ios"; + CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/url_launcher_ios"; EXPANDED_CODE_SIGN_IDENTITY = "-"; GCC_PREPROCESSOR_DEFINITIONS = ( "$(inherited)", "PERMISSION_CAMERA=1", "PERMISSION_PHOTOS=1", ); - IBSC_MODULE = image_picker_ios; - INFOPLIST_FILE = "Target Support Files/image_picker_ios/ResourceBundle-image_picker_ios_privacy-image_picker_ios-Info.plist"; + IBSC_MODULE = url_launcher_ios; + INFOPLIST_FILE = "Target Support Files/url_launcher_ios/ResourceBundle-url_launcher_ios_privacy-url_launcher_ios-Info.plist"; IPHONEOS_DEPLOYMENT_TARGET = 13.0; - ONLY_ACTIVE_ARCH = NO; - PRODUCT_NAME = image_picker_ios_privacy; + PRODUCT_NAME = url_launcher_ios_privacy; SDKROOT = iphoneos; SKIP_INSTALL = YES; TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; WRAPPER_EXTENSION = bundle; }; + name = "Release-development"; + }; + 6619A8B3B1C5595B07FC2656716E7FEE /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 8A1FA04201D3F5B8B3023ED17C38F601 /* MLImage.debug.xcconfig */; + buildSettings = { + ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; + ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; + CLANG_ENABLE_OBJC_WEAK = NO; + GCC_PREPROCESSOR_DEFINITIONS = ( + "$(inherited)", + "PERMISSION_CAMERA=1", + "PERMISSION_PHOTOS=1", + ); + IPHONEOS_DEPLOYMENT_TARGET = 13.0; + LD_RUNPATH_SEARCH_PATHS = ( + "$(inherited)", + "@executable_path/Frameworks", + ); + ONLY_ACTIVE_ARCH = NO; + SDKROOT = iphoneos; + TARGETED_DEVICE_FAMILY = "1,2"; + }; name = Debug; }; 66924A736C453B87FEA080CC5E0ABBC7 /* Profile-development */ = { isa = XCBuildConfiguration; - baseConfigurationReference = F4C3D5A980B27BD2C418D61228F67F01 /* package_info_plus.release.xcconfig */; + baseConfigurationReference = 6201BD6C84B86BD570988C7E3B8409CB /* package_info_plus.release.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO; @@ -24673,7 +24596,7 @@ }; 66A4AE1B1FE05E693E8161E95093C4C8 /* Release-production */ = { isa = XCBuildConfiguration; - baseConfigurationReference = C782F3D64A5DB279B07DD4535BD2F969 /* image_picker_ios.release.xcconfig */; + baseConfigurationReference = 98AE98BF8E201BFC344D7356F2883701 /* image_picker_ios.release.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO; @@ -24729,47 +24652,6 @@ }; name = "Release-production"; }; - 67042D6B62D5409EFD4D6BFCDC763CFA /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = D4F18F4F6B39AC1431EB143FE2915402 /* GoogleUtilitiesComponents.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"; - GCC_PREPROCESSOR_DEFINITIONS = ( - "$(inherited)", - "PERMISSION_CAMERA=1", - "PERMISSION_PHOTOS=1", - ); - INFOPLIST_FILE = "Target Support Files/GoogleUtilitiesComponents/GoogleUtilitiesComponents-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/GoogleUtilitiesComponents/GoogleUtilitiesComponents.modulemap"; - PRODUCT_MODULE_NAME = GoogleUtilitiesComponents; - PRODUCT_NAME = GoogleUtilitiesComponents; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_VERSION = 5.0; - TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; - VERSIONING_SYSTEM = "apple-generic"; - VERSION_INFO_PREFIX = ""; - }; - name = Release; - }; 67139785BA3DF0B5E12C0A531BAA2980 /* Release */ = { isa = XCBuildConfiguration; baseConfigurationReference = 5D2DA3CB411FF35D30470F3AEFA259CB /* Flutter.release.xcconfig */; @@ -24793,6 +24675,71 @@ }; name = Release; }; + 671A743F8827A9322B9C363BD353DB19 /* Profile-development */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = B3F81CBF23C2B71680A734B4B74EA6EF /* sqflite.release.xcconfig */; + buildSettings = { + CLANG_ENABLE_OBJC_WEAK = NO; + CODE_SIGNING_ALLOWED = NO; + CODE_SIGNING_IDENTITY = "-"; + CODE_SIGNING_REQUIRED = NO; + CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/sqflite"; + EXPANDED_CODE_SIGN_IDENTITY = "-"; + GCC_PREPROCESSOR_DEFINITIONS = ( + "$(inherited)", + "PERMISSION_CAMERA=1", + "PERMISSION_PHOTOS=1", + ); + IBSC_MODULE = sqflite; + INFOPLIST_FILE = "Target Support Files/sqflite/ResourceBundle-sqflite_darwin_privacy-sqflite-Info.plist"; + IPHONEOS_DEPLOYMENT_TARGET = 13.0; + PRODUCT_NAME = sqflite_darwin_privacy; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; + WRAPPER_EXTENSION = bundle; + }; + name = "Profile-development"; + }; + 672AF28AEA8561EF3F686DB28FA7D043 /* Stage-production */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = FC4CA41561F8B1B855AED3763329DD2C /* 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"; + GCC_PREPROCESSOR_DEFINITIONS = ( + "$(inherited)", + "PERMISSION_CAMERA=1", + "PERMISSION_PHOTOS=1", + ); + INFOPLIST_FILE = "Target Support Files/PromisesObjC/PromisesObjC-Info.plist"; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; + IPHONEOS_DEPLOYMENT_TARGET = 13.0; + LD_RUNPATH_SEARCH_PATHS = ( + "$(inherited)", + "@executable_path/Frameworks", + "@loader_path/Frameworks", + ); + 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_VERSION = 5.0; + TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; + VERSIONING_SYSTEM = "apple-generic"; + VERSION_INFO_PREFIX = ""; + }; + name = "Stage-production"; + }; 675A3A527F8275959653C382B230D2A4 /* Profile-development */ = { isa = XCBuildConfiguration; baseConfigurationReference = C3A8E22467ADEB42B7D83259E1A6F078 /* Sentry.release.xcconfig */; @@ -24834,63 +24781,163 @@ }; name = "Profile-development"; }; - 677B618AB1B5A756A072D6A3322C3FDD /* Profile-staging */ = { + 67812178A85A72D8D3F30668FE5AE91E /* Profile-production */ = { isa = XCBuildConfiguration; - baseConfigurationReference = F4C3D5A980B27BD2C418D61228F67F01 /* package_info_plus.release.xcconfig */; + baseConfigurationReference = 19CE9AC8B13646CC03FBC77F131FF183 /* GoogleDataTransport.release.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; CODE_SIGNING_ALLOWED = NO; CODE_SIGNING_IDENTITY = "-"; CODE_SIGNING_REQUIRED = NO; - CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/package_info_plus"; + CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/GoogleDataTransport"; EXPANDED_CODE_SIGN_IDENTITY = "-"; GCC_PREPROCESSOR_DEFINITIONS = ( "$(inherited)", "PERMISSION_CAMERA=1", "PERMISSION_PHOTOS=1", ); - IBSC_MODULE = package_info_plus; - INFOPLIST_FILE = "Target Support Files/package_info_plus/ResourceBundle-package_info_plus_privacy-package_info_plus-Info.plist"; + IBSC_MODULE = GoogleDataTransport; + INFOPLIST_FILE = "Target Support Files/GoogleDataTransport/ResourceBundle-GoogleDataTransport_Privacy-GoogleDataTransport-Info.plist"; IPHONEOS_DEPLOYMENT_TARGET = 13.0; - PRODUCT_NAME = package_info_plus_privacy; + PRODUCT_NAME = GoogleDataTransport_Privacy; SDKROOT = iphoneos; SKIP_INSTALL = YES; TARGETED_DEVICE_FAMILY = "1,2"; VALIDATE_PRODUCT = YES; WRAPPER_EXTENSION = bundle; }; - name = "Profile-staging"; + name = "Profile-production"; + }; + 67A4B65BE21391E5DA51CD581DAF850F /* Debug-development */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 26DCE60E629963FB754A022AED7ACC73 /* MLImage.release.xcconfig */; + buildSettings = { + ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; + ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; + CLANG_ENABLE_OBJC_WEAK = NO; + GCC_PREPROCESSOR_DEFINITIONS = ( + "$(inherited)", + "PERMISSION_CAMERA=1", + "PERMISSION_PHOTOS=1", + ); + IPHONEOS_DEPLOYMENT_TARGET = 13.0; + LD_RUNPATH_SEARCH_PATHS = ( + "$(inherited)", + "@executable_path/Frameworks", + ); + SDKROOT = iphoneos; + TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; + }; + name = "Debug-development"; + }; + 6863A0D3E56FA293BCA9DD6818211AC0 /* Debug-staging */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = FE5C3B02302BE4DBC83D2A553D5F5C1B /* MLKitVision.release.xcconfig */; + buildSettings = { + ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; + ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; + CLANG_ENABLE_OBJC_WEAK = NO; + GCC_PREPROCESSOR_DEFINITIONS = ( + "$(inherited)", + "PERMISSION_CAMERA=1", + "PERMISSION_PHOTOS=1", + ); + IPHONEOS_DEPLOYMENT_TARGET = 13.0; + LD_RUNPATH_SEARCH_PATHS = ( + "$(inherited)", + "@executable_path/Frameworks", + ); + SDKROOT = iphoneos; + TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; + }; + name = "Debug-staging"; }; - 67C3D822450971A9FE96C3CC6AF635D3 /* Profile-production */ = { + 68BBEEBF100A4CBC0D077C145E445AA1 /* Release-staging */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 4A911B9FACB388B308D1ABB5669DD583 /* permission_handler_apple.release.xcconfig */; + baseConfigurationReference = 196B9320A9BD7C09E7C5420F49D709B3 /* share_plus.release.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; CODE_SIGNING_ALLOWED = NO; CODE_SIGNING_IDENTITY = "-"; CODE_SIGNING_REQUIRED = NO; - CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/permission_handler_apple"; + CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/share_plus"; EXPANDED_CODE_SIGN_IDENTITY = "-"; GCC_PREPROCESSOR_DEFINITIONS = ( "$(inherited)", "PERMISSION_CAMERA=1", "PERMISSION_PHOTOS=1", ); - IBSC_MODULE = permission_handler_apple; - INFOPLIST_FILE = "Target Support Files/permission_handler_apple/ResourceBundle-permission_handler_apple_privacy-permission_handler_apple-Info.plist"; + IBSC_MODULE = share_plus; + INFOPLIST_FILE = "Target Support Files/share_plus/ResourceBundle-share_plus_privacy-share_plus-Info.plist"; IPHONEOS_DEPLOYMENT_TARGET = 13.0; - PRODUCT_NAME = permission_handler_apple_privacy; + PRODUCT_NAME = share_plus_privacy; SDKROOT = iphoneos; SKIP_INSTALL = YES; TARGETED_DEVICE_FAMILY = "1,2"; VALIDATE_PRODUCT = YES; WRAPPER_EXTENSION = bundle; }; - name = "Profile-production"; + name = "Release-staging"; + }; + 68C0C68A679A5F6997D407A519553828 /* Debug-production */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 9ECF4B2E725AF88A4D8BD77668F776C4 /* local_auth_darwin.release.xcconfig */; + buildSettings = { + CLANG_ENABLE_OBJC_WEAK = NO; + CODE_SIGNING_ALLOWED = NO; + CODE_SIGNING_IDENTITY = "-"; + CODE_SIGNING_REQUIRED = NO; + CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/local_auth_darwin"; + EXPANDED_CODE_SIGN_IDENTITY = "-"; + GCC_PREPROCESSOR_DEFINITIONS = ( + "$(inherited)", + "PERMISSION_CAMERA=1", + "PERMISSION_PHOTOS=1", + ); + IBSC_MODULE = local_auth_darwin; + INFOPLIST_FILE = "Target Support Files/local_auth_darwin/ResourceBundle-local_auth_darwin_privacy-local_auth_darwin-Info.plist"; + IPHONEOS_DEPLOYMENT_TARGET = 13.0; + PRODUCT_NAME = local_auth_darwin_privacy; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; + WRAPPER_EXTENSION = bundle; + }; + name = "Debug-production"; + }; + 68F616EF871E4429C45077C8FA0DB401 /* Debug-development */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = F9F252ACFB155ACF9BB56FB267880E01 /* url_launcher_ios.release.xcconfig */; + buildSettings = { + CLANG_ENABLE_OBJC_WEAK = NO; + CODE_SIGNING_ALLOWED = NO; + CODE_SIGNING_IDENTITY = "-"; + CODE_SIGNING_REQUIRED = NO; + CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/url_launcher_ios"; + EXPANDED_CODE_SIGN_IDENTITY = "-"; + GCC_PREPROCESSOR_DEFINITIONS = ( + "$(inherited)", + "PERMISSION_CAMERA=1", + "PERMISSION_PHOTOS=1", + ); + IBSC_MODULE = url_launcher_ios; + INFOPLIST_FILE = "Target Support Files/url_launcher_ios/ResourceBundle-url_launcher_ios_privacy-url_launcher_ios-Info.plist"; + IPHONEOS_DEPLOYMENT_TARGET = 13.0; + PRODUCT_NAME = url_launcher_ios_privacy; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; + WRAPPER_EXTENSION = bundle; + }; + name = "Debug-development"; }; 68F80DB6A659052CFC23017A8FBF1C38 /* Profile-development */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 4A911B9FACB388B308D1ABB5669DD583 /* permission_handler_apple.release.xcconfig */; + baseConfigurationReference = 4BB6D83A83366DD3295B456FF36F5E3F /* permission_handler_apple.release.xcconfig */; buildSettings = { CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -24947,9 +24994,76 @@ }; name = "Profile-development"; }; + 69020DEF1854C7A5C370D702B9E0682F /* Debug-development */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = B587A9A0D5365CAA9B8A2CC41EB17830 /* nanopb.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"; + GCC_PREFIX_HEADER = "Target Support Files/nanopb/nanopb-prefix.pch"; + GCC_PREPROCESSOR_DEFINITIONS = ( + "$(inherited)", + "PERMISSION_CAMERA=1", + "PERMISSION_PHOTOS=1", + ); + INFOPLIST_FILE = "Target Support Files/nanopb/nanopb-Info.plist"; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; + IPHONEOS_DEPLOYMENT_TARGET = 13.0; + LD_RUNPATH_SEARCH_PATHS = ( + "$(inherited)", + "@executable_path/Frameworks", + "@loader_path/Frameworks", + ); + 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_VERSION = 5.0; + TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; + VERSIONING_SYSTEM = "apple-generic"; + VERSION_INFO_PREFIX = ""; + }; + name = "Debug-development"; + }; + 690ABA6BA516F0FC1E57A17886E247D8 /* Profile-staging */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 19CE9AC8B13646CC03FBC77F131FF183 /* GoogleDataTransport.release.xcconfig */; + buildSettings = { + CLANG_ENABLE_OBJC_WEAK = NO; + CODE_SIGNING_ALLOWED = NO; + CODE_SIGNING_IDENTITY = "-"; + CODE_SIGNING_REQUIRED = NO; + CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/GoogleDataTransport"; + EXPANDED_CODE_SIGN_IDENTITY = "-"; + GCC_PREPROCESSOR_DEFINITIONS = ( + "$(inherited)", + "PERMISSION_CAMERA=1", + "PERMISSION_PHOTOS=1", + ); + IBSC_MODULE = GoogleDataTransport; + INFOPLIST_FILE = "Target Support Files/GoogleDataTransport/ResourceBundle-GoogleDataTransport_Privacy-GoogleDataTransport-Info.plist"; + IPHONEOS_DEPLOYMENT_TARGET = 13.0; + PRODUCT_NAME = GoogleDataTransport_Privacy; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; + WRAPPER_EXTENSION = bundle; + }; + name = "Profile-staging"; + }; 69345FD822FC07562B8B021D9F26446A /* Profile-development */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 86E540DA830E020FCC7DEA27000E1A98 /* shared_preferences_foundation.release.xcconfig */; + baseConfigurationReference = D1CCD0C16DFF0194B0A936A205ED4ED0 /* shared_preferences_foundation.release.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO; @@ -25000,63 +25114,52 @@ }; name = "Profile-development"; }; - 693A63CED114FF71D65C7515AC4F08E5 /* Profile */ = { + 69909C51B451DF1443F6B3B996685633 /* Release-development */ = { isa = XCBuildConfiguration; - baseConfigurationReference = FC4CA41561F8B1B855AED3763329DD2C /* PromisesObjC.release.xcconfig */; + baseConfigurationReference = 9ECF4B2E725AF88A4D8BD77668F776C4 /* local_auth_darwin.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"; + CLANG_ENABLE_OBJC_WEAK = NO; + CODE_SIGNING_ALLOWED = NO; + CODE_SIGNING_IDENTITY = "-"; + CODE_SIGNING_REQUIRED = NO; + CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/local_auth_darwin"; + EXPANDED_CODE_SIGN_IDENTITY = "-"; GCC_PREPROCESSOR_DEFINITIONS = ( "$(inherited)", "PERMISSION_CAMERA=1", "PERMISSION_PHOTOS=1", ); - INFOPLIST_FILE = "Target Support Files/PromisesObjC/PromisesObjC-Info.plist"; - INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; + IBSC_MODULE = local_auth_darwin; + INFOPLIST_FILE = "Target Support Files/local_auth_darwin/ResourceBundle-local_auth_darwin_privacy-local_auth_darwin-Info.plist"; IPHONEOS_DEPLOYMENT_TARGET = 13.0; - LD_RUNPATH_SEARCH_PATHS = ( - "$(inherited)", - "@executable_path/Frameworks", - "@loader_path/Frameworks", - ); - MODULEMAP_FILE = "Target Support Files/PromisesObjC/PromisesObjC.modulemap"; - PRODUCT_MODULE_NAME = FBLPromises; - PRODUCT_NAME = FBLPromises; + PRODUCT_NAME = local_auth_darwin_privacy; SDKROOT = iphoneos; SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_VERSION = 5.0; TARGETED_DEVICE_FAMILY = "1,2"; VALIDATE_PRODUCT = YES; - VERSIONING_SYSTEM = "apple-generic"; - VERSION_INFO_PREFIX = ""; + WRAPPER_EXTENSION = bundle; }; - name = Profile; + name = "Release-development"; }; - 6A0339125C3CCAE2FC37638AE4F65C3D /* Release-staging */ = { + 69AEAD150BBC3FDE96B4FEC85E942EFD /* Release-staging */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 86E540DA830E020FCC7DEA27000E1A98 /* shared_preferences_foundation.release.xcconfig */; + baseConfigurationReference = 0F62AA5AF0EE048AB478074EDD1A2CD4 /* connectivity_plus.release.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; CODE_SIGNING_ALLOWED = NO; CODE_SIGNING_IDENTITY = "-"; CODE_SIGNING_REQUIRED = NO; - CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/shared_preferences_foundation"; + CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/connectivity_plus"; EXPANDED_CODE_SIGN_IDENTITY = "-"; GCC_PREPROCESSOR_DEFINITIONS = ( "$(inherited)", "PERMISSION_CAMERA=1", "PERMISSION_PHOTOS=1", ); - IBSC_MODULE = shared_preferences_foundation; - INFOPLIST_FILE = "Target Support Files/shared_preferences_foundation/ResourceBundle-shared_preferences_foundation_privacy-shared_preferences_foundation-Info.plist"; + IBSC_MODULE = connectivity_plus; + INFOPLIST_FILE = "Target Support Files/connectivity_plus/ResourceBundle-connectivity_plus_privacy-connectivity_plus-Info.plist"; IPHONEOS_DEPLOYMENT_TARGET = 13.0; - PRODUCT_NAME = shared_preferences_foundation_privacy; + PRODUCT_NAME = connectivity_plus_privacy; SDKROOT = iphoneos; SKIP_INSTALL = YES; TARGETED_DEVICE_FAMILY = "1,2"; @@ -25065,6 +25168,31 @@ }; name = "Release-staging"; }; + 6AC73CB2CDE5673EEEB1D47C46F60C0B /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 59E64776226CA679807D58D84423DF5F /* flutter_email_sender.release.xcconfig */; + buildSettings = { + CODE_SIGNING_ALLOWED = NO; + CODE_SIGNING_IDENTITY = "-"; + CODE_SIGNING_REQUIRED = NO; + CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/flutter_email_sender"; + EXPANDED_CODE_SIGN_IDENTITY = "-"; + GCC_PREPROCESSOR_DEFINITIONS = ( + "$(inherited)", + "PERMISSION_CAMERA=1", + "PERMISSION_PHOTOS=1", + ); + IBSC_MODULE = flutter_email_sender; + INFOPLIST_FILE = "Target Support Files/flutter_email_sender/ResourceBundle-flutter_email_sender-flutter_email_sender-Info.plist"; + IPHONEOS_DEPLOYMENT_TARGET = 13.0; + PRODUCT_NAME = flutter_email_sender; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + TARGETED_DEVICE_FAMILY = "1,2"; + WRAPPER_EXTENSION = bundle; + }; + name = Release; + }; 6ADD58E9FCB363175396B32D1A6E84DF /* Debug-production */ = { isa = XCBuildConfiguration; buildSettings = { @@ -25127,59 +25255,9 @@ }; name = "Debug-production"; }; - 6B0EB887989564B862FB565F7B41FC21 /* Profile */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 1E47B40DD78F33D7394C9CDADE9B41A7 /* share_plus.release.xcconfig */; - buildSettings = { - CLANG_ENABLE_OBJC_WEAK = NO; - CODE_SIGNING_ALLOWED = NO; - CODE_SIGNING_IDENTITY = "-"; - CODE_SIGNING_REQUIRED = NO; - CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/share_plus"; - EXPANDED_CODE_SIGN_IDENTITY = "-"; - GCC_PREPROCESSOR_DEFINITIONS = ( - "$(inherited)", - "PERMISSION_CAMERA=1", - "PERMISSION_PHOTOS=1", - ); - IBSC_MODULE = share_plus; - INFOPLIST_FILE = "Target Support Files/share_plus/ResourceBundle-share_plus_privacy-share_plus-Info.plist"; - IPHONEOS_DEPLOYMENT_TARGET = 13.0; - PRODUCT_NAME = share_plus_privacy; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; - WRAPPER_EXTENSION = bundle; - }; - name = Profile; - }; - 6B4212A8DB7136052C28D61F94689314 /* Profile-staging */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = FE5C3B02302BE4DBC83D2A553D5F5C1B /* MLKitVision.release.xcconfig */; - buildSettings = { - ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; - ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; - CLANG_ENABLE_OBJC_WEAK = NO; - GCC_PREPROCESSOR_DEFINITIONS = ( - "$(inherited)", - "PERMISSION_CAMERA=1", - "PERMISSION_PHOTOS=1", - ); - IPHONEOS_DEPLOYMENT_TARGET = 13.0; - LD_RUNPATH_SEARCH_PATHS = ( - "$(inherited)", - "@executable_path/Frameworks", - ); - SDKROOT = iphoneos; - TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; - }; - name = "Profile-staging"; - }; 6B42F2837BF83B9817C29E8D77DD3499 /* Debug-staging */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 9D69F5F0798882A34E95D912A7DDF7B1 /* sentry_flutter.release.xcconfig */; + baseConfigurationReference = 28C6A92040B7AE9155DE2648EB0D7296 /* sentry_flutter.release.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO; @@ -25258,52 +25336,52 @@ }; name = Release; }; - 6B61AF8512C6846BE597F2AF9AEBECA5 /* Stage-production */ = { + 6B6E7FB4D8F04C6ED2D898EF6AFE4117 /* Debug-production */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 8ABCAE069412CFA453F913E4A7E0184B /* GoogleUtilities.release.xcconfig */; + baseConfigurationReference = 4BB6D83A83366DD3295B456FF36F5E3F /* permission_handler_apple.release.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; CODE_SIGNING_ALLOWED = NO; CODE_SIGNING_IDENTITY = "-"; CODE_SIGNING_REQUIRED = NO; - CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/GoogleUtilities"; + CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/permission_handler_apple"; EXPANDED_CODE_SIGN_IDENTITY = "-"; GCC_PREPROCESSOR_DEFINITIONS = ( "$(inherited)", "PERMISSION_CAMERA=1", "PERMISSION_PHOTOS=1", ); - IBSC_MODULE = GoogleUtilities; - INFOPLIST_FILE = "Target Support Files/GoogleUtilities/ResourceBundle-GoogleUtilities_Privacy-GoogleUtilities-Info.plist"; + IBSC_MODULE = permission_handler_apple; + INFOPLIST_FILE = "Target Support Files/permission_handler_apple/ResourceBundle-permission_handler_apple_privacy-permission_handler_apple-Info.plist"; IPHONEOS_DEPLOYMENT_TARGET = 13.0; - PRODUCT_NAME = GoogleUtilities_Privacy; + PRODUCT_NAME = permission_handler_apple_privacy; SDKROOT = iphoneos; SKIP_INSTALL = YES; TARGETED_DEVICE_FAMILY = "1,2"; VALIDATE_PRODUCT = YES; WRAPPER_EXTENSION = bundle; }; - name = "Stage-production"; + name = "Debug-production"; }; - 6BBA735A1B1333FFF987EACDED2EFF74 /* Release-production */ = { + 6C0F44326C63D858928BB488E82263B1 /* Release-production */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 86E540DA830E020FCC7DEA27000E1A98 /* shared_preferences_foundation.release.xcconfig */; + baseConfigurationReference = C3A8E22467ADEB42B7D83259E1A6F078 /* Sentry.release.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; CODE_SIGNING_ALLOWED = NO; CODE_SIGNING_IDENTITY = "-"; CODE_SIGNING_REQUIRED = NO; - CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/shared_preferences_foundation"; + CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/Sentry"; EXPANDED_CODE_SIGN_IDENTITY = "-"; GCC_PREPROCESSOR_DEFINITIONS = ( "$(inherited)", "PERMISSION_CAMERA=1", "PERMISSION_PHOTOS=1", ); - IBSC_MODULE = shared_preferences_foundation; - INFOPLIST_FILE = "Target Support Files/shared_preferences_foundation/ResourceBundle-shared_preferences_foundation_privacy-shared_preferences_foundation-Info.plist"; + IBSC_MODULE = Sentry; + INFOPLIST_FILE = "Target Support Files/Sentry/ResourceBundle-Sentry-Sentry-Info.plist"; IPHONEOS_DEPLOYMENT_TARGET = 13.0; - PRODUCT_NAME = shared_preferences_foundation_privacy; + PRODUCT_NAME = Sentry; SDKROOT = iphoneos; SKIP_INSTALL = YES; TARGETED_DEVICE_FAMILY = "1,2"; @@ -25312,55 +25390,44 @@ }; name = "Release-production"; }; - 6BD9CC12D4CDEF9F3D545717476E2FFC /* Debug-staging */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = F4C3D5A980B27BD2C418D61228F67F01 /* package_info_plus.release.xcconfig */; - buildSettings = { - CLANG_ENABLE_OBJC_WEAK = NO; - CODE_SIGNING_ALLOWED = NO; - CODE_SIGNING_IDENTITY = "-"; - CODE_SIGNING_REQUIRED = NO; - CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/package_info_plus"; - EXPANDED_CODE_SIGN_IDENTITY = "-"; - GCC_PREPROCESSOR_DEFINITIONS = ( - "$(inherited)", - "PERMISSION_CAMERA=1", - "PERMISSION_PHOTOS=1", - ); - IBSC_MODULE = package_info_plus; - INFOPLIST_FILE = "Target Support Files/package_info_plus/ResourceBundle-package_info_plus_privacy-package_info_plus-Info.plist"; - IPHONEOS_DEPLOYMENT_TARGET = 13.0; - PRODUCT_NAME = package_info_plus_privacy; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; - WRAPPER_EXTENSION = bundle; - }; - name = "Debug-staging"; - }; - 6C74A509B7A4AF56716799551D6AA2FC /* Debug-development */ = { + 6CCA47A254157FE686D788828F27FCF1 /* Profile-production */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 5D2B88AD25CD5EBE586D760474336767 /* MLKitBarcodeScanning.release.xcconfig */; + baseConfigurationReference = 8ABCAE069412CFA453F913E4A7E0184B /* GoogleUtilities.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"; GCC_PREPROCESSOR_DEFINITIONS = ( "$(inherited)", "PERMISSION_CAMERA=1", "PERMISSION_PHOTOS=1", ); + INFOPLIST_FILE = "Target Support Files/GoogleUtilities/GoogleUtilities-Info.plist"; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; IPHONEOS_DEPLOYMENT_TARGET = 13.0; LD_RUNPATH_SEARCH_PATHS = ( "$(inherited)", "@executable_path/Frameworks", + "@loader_path/Frameworks", ); + 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_VERSION = 5.0; TARGETED_DEVICE_FAMILY = "1,2"; VALIDATE_PRODUCT = YES; + VERSIONING_SYSTEM = "apple-generic"; + VERSION_INFO_PREFIX = ""; }; - name = "Debug-development"; + name = "Profile-production"; }; 6CED35ED441211CD86D559BAB5A114F2 /* Debug-development */ = { isa = XCBuildConfiguration; @@ -25401,9 +25468,36 @@ }; name = "Debug-development"; }; + 6D4E19954BD7FD2882A0A21A48AADFF5 /* Debug-development */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 9ECF4B2E725AF88A4D8BD77668F776C4 /* local_auth_darwin.release.xcconfig */; + buildSettings = { + CLANG_ENABLE_OBJC_WEAK = NO; + CODE_SIGNING_ALLOWED = NO; + CODE_SIGNING_IDENTITY = "-"; + CODE_SIGNING_REQUIRED = NO; + CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/local_auth_darwin"; + EXPANDED_CODE_SIGN_IDENTITY = "-"; + GCC_PREPROCESSOR_DEFINITIONS = ( + "$(inherited)", + "PERMISSION_CAMERA=1", + "PERMISSION_PHOTOS=1", + ); + IBSC_MODULE = local_auth_darwin; + INFOPLIST_FILE = "Target Support Files/local_auth_darwin/ResourceBundle-local_auth_darwin_privacy-local_auth_darwin-Info.plist"; + IPHONEOS_DEPLOYMENT_TARGET = 13.0; + PRODUCT_NAME = local_auth_darwin_privacy; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; + WRAPPER_EXTENSION = bundle; + }; + name = "Debug-development"; + }; 6D58607DDB8832BC8FA7A7F0297936D0 /* Profile-development */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 6D3FC8F30A9759CEC467C9CBCFF1BDA6 /* mobile_scanner.release.xcconfig */; + baseConfigurationReference = 55CABBFDA741B6809730DEE1165E60C9 /* mobile_scanner.release.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO; @@ -25520,6 +25614,44 @@ }; name = "Release-staging"; }; + 6DAB616C8824816B429C43515ADD57FB /* Release-development */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = FC4CA41561F8B1B855AED3763329DD2C /* 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"; + GCC_PREPROCESSOR_DEFINITIONS = ( + "$(inherited)", + "PERMISSION_CAMERA=1", + "PERMISSION_PHOTOS=1", + ); + INFOPLIST_FILE = "Target Support Files/PromisesObjC/PromisesObjC-Info.plist"; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; + IPHONEOS_DEPLOYMENT_TARGET = 13.0; + LD_RUNPATH_SEARCH_PATHS = ( + "$(inherited)", + "@executable_path/Frameworks", + "@loader_path/Frameworks", + ); + 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_VERSION = 5.0; + TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; + VERSIONING_SYSTEM = "apple-generic"; + VERSION_INFO_PREFIX = ""; + }; + name = "Release-development"; + }; 6DB90AF38F4B7F7F22BF90CDB7422D53 /* Debug-staging */ = { isa = XCBuildConfiguration; baseConfigurationReference = 19CE9AC8B13646CC03FBC77F131FF183 /* GoogleDataTransport.release.xcconfig */; @@ -25600,36 +25732,36 @@ }; name = "Debug-development"; }; - 6E57FDBE5DD8768AA24ECC8FF91F24AD /* Debug-staging */ = { + 6E1D8BF211F39C863C02BB1B2AA5FAB8 /* Release-staging */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 3C623764A02C0B6BA3A628060F65377B /* flutter_native_splash.release.xcconfig */; + baseConfigurationReference = B587A9A0D5365CAA9B8A2CC41EB17830 /* nanopb.release.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; CODE_SIGNING_ALLOWED = NO; CODE_SIGNING_IDENTITY = "-"; CODE_SIGNING_REQUIRED = NO; - CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/flutter_native_splash"; + CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/nanopb"; EXPANDED_CODE_SIGN_IDENTITY = "-"; GCC_PREPROCESSOR_DEFINITIONS = ( "$(inherited)", "PERMISSION_CAMERA=1", "PERMISSION_PHOTOS=1", ); - IBSC_MODULE = flutter_native_splash; - INFOPLIST_FILE = "Target Support Files/flutter_native_splash/ResourceBundle-flutter_native_splash_privacy-flutter_native_splash-Info.plist"; + IBSC_MODULE = nanopb; + INFOPLIST_FILE = "Target Support Files/nanopb/ResourceBundle-nanopb_Privacy-nanopb-Info.plist"; IPHONEOS_DEPLOYMENT_TARGET = 13.0; - PRODUCT_NAME = flutter_native_splash_privacy; + PRODUCT_NAME = nanopb_Privacy; SDKROOT = iphoneos; SKIP_INSTALL = YES; TARGETED_DEVICE_FAMILY = "1,2"; VALIDATE_PRODUCT = YES; WRAPPER_EXTENSION = bundle; }; - name = "Debug-staging"; + name = "Release-staging"; }; 6E73CF402589F30CC672E35D2DEC0DA9 /* Profile */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 4A911B9FACB388B308D1ABB5669DD583 /* permission_handler_apple.release.xcconfig */; + baseConfigurationReference = 4BB6D83A83366DD3295B456FF36F5E3F /* permission_handler_apple.release.xcconfig */; buildSettings = { CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -25686,62 +25818,49 @@ }; name = Profile; }; - 6ECC679DAD4798E9A2BAD686B7A0C622 /* Release-staging */ = { + 6EE64043DDE75DFFA2F8260EE428195D /* Release-development */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 4A911B9FACB388B308D1ABB5669DD583 /* permission_handler_apple.release.xcconfig */; + baseConfigurationReference = 0E95E1622AE3A8ECD9572E38ECCC7DA7 /* GoogleToolboxForMac.release.xcconfig */; buildSettings = { - CLANG_ENABLE_OBJC_WEAK = NO; - CODE_SIGNING_ALLOWED = NO; - CODE_SIGNING_IDENTITY = "-"; - CODE_SIGNING_REQUIRED = NO; - CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/permission_handler_apple"; - EXPANDED_CODE_SIGN_IDENTITY = "-"; - GCC_PREPROCESSOR_DEFINITIONS = ( - "$(inherited)", - "PERMISSION_CAMERA=1", - "PERMISSION_PHOTOS=1", - ); - IBSC_MODULE = permission_handler_apple; - INFOPLIST_FILE = "Target Support Files/permission_handler_apple/ResourceBundle-permission_handler_apple_privacy-permission_handler_apple-Info.plist"; - IPHONEOS_DEPLOYMENT_TARGET = 13.0; - PRODUCT_NAME = permission_handler_apple_privacy; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; - WRAPPER_EXTENSION = bundle; - }; - name = "Release-staging"; - }; - 6F2CA358C98D60F3C14473075749FC39 /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 154DBF6E97523835F2CB9615BB62FE8E /* url_launcher_ios.debug.xcconfig */; - buildSettings = { - CODE_SIGNING_ALLOWED = NO; - CODE_SIGNING_IDENTITY = "-"; - CODE_SIGNING_REQUIRED = NO; - CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/url_launcher_ios"; - EXPANDED_CODE_SIGN_IDENTITY = "-"; + "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"; + GCC_PREFIX_HEADER = "Target Support Files/GoogleToolboxForMac/GoogleToolboxForMac-prefix.pch"; GCC_PREPROCESSOR_DEFINITIONS = ( "$(inherited)", "PERMISSION_CAMERA=1", "PERMISSION_PHOTOS=1", ); - IBSC_MODULE = url_launcher_ios; - INFOPLIST_FILE = "Target Support Files/url_launcher_ios/ResourceBundle-url_launcher_ios_privacy-url_launcher_ios-Info.plist"; + INFOPLIST_FILE = "Target Support Files/GoogleToolboxForMac/GoogleToolboxForMac-Info.plist"; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; IPHONEOS_DEPLOYMENT_TARGET = 13.0; - ONLY_ACTIVE_ARCH = NO; - PRODUCT_NAME = url_launcher_ios_privacy; + LD_RUNPATH_SEARCH_PATHS = ( + "$(inherited)", + "@executable_path/Frameworks", + "@loader_path/Frameworks", + ); + MODULEMAP_FILE = "Target Support Files/GoogleToolboxForMac/GoogleToolboxForMac.modulemap"; + PRODUCT_MODULE_NAME = GoogleToolboxForMac; + PRODUCT_NAME = GoogleToolboxForMac; SDKROOT = iphoneos; SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; + SWIFT_VERSION = 5.0; TARGETED_DEVICE_FAMILY = "1,2"; - WRAPPER_EXTENSION = bundle; + VALIDATE_PRODUCT = YES; + VERSIONING_SYSTEM = "apple-generic"; + VERSION_INFO_PREFIX = ""; }; - name = Debug; + name = "Release-development"; }; 6F457EA98E3DCD04FD3C80A4C7C0C964 /* Debug-production */ = { isa = XCBuildConfiguration; - baseConfigurationReference = F4C3D5A980B27BD2C418D61228F67F01 /* package_info_plus.release.xcconfig */; + baseConfigurationReference = 6201BD6C84B86BD570988C7E3B8409CB /* package_info_plus.release.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO; @@ -25797,33 +25916,6 @@ }; name = "Debug-production"; }; - 6F7103AD5B0E47C526CEA1D6284E3977 /* Profile-staging */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 3C623764A02C0B6BA3A628060F65377B /* flutter_native_splash.release.xcconfig */; - buildSettings = { - CLANG_ENABLE_OBJC_WEAK = NO; - CODE_SIGNING_ALLOWED = NO; - CODE_SIGNING_IDENTITY = "-"; - CODE_SIGNING_REQUIRED = NO; - CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/flutter_native_splash"; - EXPANDED_CODE_SIGN_IDENTITY = "-"; - GCC_PREPROCESSOR_DEFINITIONS = ( - "$(inherited)", - "PERMISSION_CAMERA=1", - "PERMISSION_PHOTOS=1", - ); - IBSC_MODULE = flutter_native_splash; - INFOPLIST_FILE = "Target Support Files/flutter_native_splash/ResourceBundle-flutter_native_splash_privacy-flutter_native_splash-Info.plist"; - IPHONEOS_DEPLOYMENT_TARGET = 13.0; - PRODUCT_NAME = flutter_native_splash_privacy; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; - WRAPPER_EXTENSION = bundle; - }; - name = "Profile-staging"; - }; 6F8921242B404E73309AF4158B741151 /* Stage-production */ = { isa = XCBuildConfiguration; baseConfigurationReference = 19CE9AC8B13646CC03FBC77F131FF183 /* GoogleDataTransport.release.xcconfig */; @@ -25863,36 +25955,36 @@ }; name = "Stage-production"; }; - 6FEB4CFE2F2078F3C9B233E45B19DF3D /* Release-staging */ = { + 6F9F1E590677D6E4593FC218848581E9 /* Debug-development */ = { isa = XCBuildConfiguration; - baseConfigurationReference = B587A9A0D5365CAA9B8A2CC41EB17830 /* nanopb.release.xcconfig */; + baseConfigurationReference = 8ABCAE069412CFA453F913E4A7E0184B /* GoogleUtilities.release.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; CODE_SIGNING_ALLOWED = NO; CODE_SIGNING_IDENTITY = "-"; CODE_SIGNING_REQUIRED = NO; - CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/nanopb"; + CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/GoogleUtilities"; EXPANDED_CODE_SIGN_IDENTITY = "-"; GCC_PREPROCESSOR_DEFINITIONS = ( "$(inherited)", "PERMISSION_CAMERA=1", "PERMISSION_PHOTOS=1", ); - IBSC_MODULE = nanopb; - INFOPLIST_FILE = "Target Support Files/nanopb/ResourceBundle-nanopb_Privacy-nanopb-Info.plist"; + IBSC_MODULE = GoogleUtilities; + INFOPLIST_FILE = "Target Support Files/GoogleUtilities/ResourceBundle-GoogleUtilities_Privacy-GoogleUtilities-Info.plist"; IPHONEOS_DEPLOYMENT_TARGET = 13.0; - PRODUCT_NAME = nanopb_Privacy; + PRODUCT_NAME = GoogleUtilities_Privacy; SDKROOT = iphoneos; SKIP_INSTALL = YES; TARGETED_DEVICE_FAMILY = "1,2"; VALIDATE_PRODUCT = YES; WRAPPER_EXTENSION = bundle; }; - name = "Release-staging"; + name = "Debug-development"; }; 700A3B576805D43F5F200C4C60FEFBDC /* Release-development */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 3C623764A02C0B6BA3A628060F65377B /* flutter_native_splash.release.xcconfig */; + baseConfigurationReference = 57D6AA21B16FC3FF93AD29A67F768BB2 /* flutter_native_splash.release.xcconfig */; buildSettings = { CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -25947,36 +26039,76 @@ }; name = "Release-development"; }; - 705FBBC7B739C40183A4642372610F5B /* Release-staging */ = { + 7018FFF2DEB53FFA19C51C61D71B1015 /* Profile-production */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 73DB9045D22A4FBE50F8FACF34C6F052 /* url_launcher_ios.release.xcconfig */; + baseConfigurationReference = 98AE98BF8E201BFC344D7356F2883701 /* image_picker_ios.release.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; CODE_SIGNING_ALLOWED = NO; CODE_SIGNING_IDENTITY = "-"; CODE_SIGNING_REQUIRED = NO; - CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/url_launcher_ios"; + CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/image_picker_ios"; EXPANDED_CODE_SIGN_IDENTITY = "-"; GCC_PREPROCESSOR_DEFINITIONS = ( "$(inherited)", "PERMISSION_CAMERA=1", "PERMISSION_PHOTOS=1", ); - IBSC_MODULE = url_launcher_ios; - INFOPLIST_FILE = "Target Support Files/url_launcher_ios/ResourceBundle-url_launcher_ios_privacy-url_launcher_ios-Info.plist"; + IBSC_MODULE = image_picker_ios; + INFOPLIST_FILE = "Target Support Files/image_picker_ios/ResourceBundle-image_picker_ios_privacy-image_picker_ios-Info.plist"; IPHONEOS_DEPLOYMENT_TARGET = 13.0; - PRODUCT_NAME = url_launcher_ios_privacy; + PRODUCT_NAME = image_picker_ios_privacy; SDKROOT = iphoneos; SKIP_INSTALL = YES; TARGETED_DEVICE_FAMILY = "1,2"; VALIDATE_PRODUCT = YES; WRAPPER_EXTENSION = bundle; }; + name = "Profile-production"; + }; + 70747A5042610A34067B5C854E695F56 /* Release-staging */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 0E95E1622AE3A8ECD9572E38ECCC7DA7 /* GoogleToolboxForMac.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"; + GCC_PREFIX_HEADER = "Target Support Files/GoogleToolboxForMac/GoogleToolboxForMac-prefix.pch"; + GCC_PREPROCESSOR_DEFINITIONS = ( + "$(inherited)", + "PERMISSION_CAMERA=1", + "PERMISSION_PHOTOS=1", + ); + INFOPLIST_FILE = "Target Support Files/GoogleToolboxForMac/GoogleToolboxForMac-Info.plist"; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; + IPHONEOS_DEPLOYMENT_TARGET = 13.0; + LD_RUNPATH_SEARCH_PATHS = ( + "$(inherited)", + "@executable_path/Frameworks", + "@loader_path/Frameworks", + ); + MODULEMAP_FILE = "Target Support Files/GoogleToolboxForMac/GoogleToolboxForMac.modulemap"; + PRODUCT_MODULE_NAME = GoogleToolboxForMac; + PRODUCT_NAME = GoogleToolboxForMac; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; + SWIFT_VERSION = 5.0; + TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; + VERSIONING_SYSTEM = "apple-generic"; + VERSION_INFO_PREFIX = ""; + }; name = "Release-staging"; }; 7095FFD6AEE07C59BC6AC36EED0F2733 /* Release-production */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 1E47B40DD78F33D7394C9CDADE9B41A7 /* share_plus.release.xcconfig */; + baseConfigurationReference = 196B9320A9BD7C09E7C5420F49D709B3 /* share_plus.release.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO; @@ -26032,23 +26164,77 @@ }; name = "Release-production"; }; - 720582D48D6437411DF09B92E50D2F7E /* Profile-development */ = { + 720130AE89D90749AFE1FD7CCED8BEFB /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = FC4CA41561F8B1B855AED3763329DD2C /* PromisesObjC.release.xcconfig */; + baseConfigurationReference = 196B9320A9BD7C09E7C5420F49D709B3 /* share_plus.release.xcconfig */; + buildSettings = { + CODE_SIGNING_ALLOWED = NO; + CODE_SIGNING_IDENTITY = "-"; + CODE_SIGNING_REQUIRED = NO; + CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/share_plus"; + EXPANDED_CODE_SIGN_IDENTITY = "-"; + GCC_PREPROCESSOR_DEFINITIONS = ( + "$(inherited)", + "PERMISSION_CAMERA=1", + "PERMISSION_PHOTOS=1", + ); + IBSC_MODULE = share_plus; + INFOPLIST_FILE = "Target Support Files/share_plus/ResourceBundle-share_plus_privacy-share_plus-Info.plist"; + IPHONEOS_DEPLOYMENT_TARGET = 13.0; + PRODUCT_NAME = share_plus_privacy; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + TARGETED_DEVICE_FAMILY = "1,2"; + WRAPPER_EXTENSION = bundle; + }; + name = Release; + }; + 724867446E6CCE2D77BAC9B514D1A9C0 /* Release-production */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 2529F7B6D57D43838BFCB332D2EDFE47 /* path_provider_foundation.release.xcconfig */; + buildSettings = { + CLANG_ENABLE_OBJC_WEAK = NO; + CODE_SIGNING_ALLOWED = NO; + CODE_SIGNING_IDENTITY = "-"; + CODE_SIGNING_REQUIRED = NO; + CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/path_provider_foundation"; + EXPANDED_CODE_SIGN_IDENTITY = "-"; + GCC_PREPROCESSOR_DEFINITIONS = ( + "$(inherited)", + "PERMISSION_CAMERA=1", + "PERMISSION_PHOTOS=1", + ); + IBSC_MODULE = path_provider_foundation; + INFOPLIST_FILE = "Target Support Files/path_provider_foundation/ResourceBundle-path_provider_foundation_privacy-path_provider_foundation-Info.plist"; + IPHONEOS_DEPLOYMENT_TARGET = 13.0; + PRODUCT_NAME = path_provider_foundation_privacy; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; + WRAPPER_EXTENSION = bundle; + }; + name = "Release-production"; + }; + 724E46EB15F0F92849777E2072D9B657 /* Release-production */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 0E95E1622AE3A8ECD9572E38ECCC7DA7 /* GoogleToolboxForMac.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"; + GCC_PREFIX_HEADER = "Target Support Files/GoogleToolboxForMac/GoogleToolboxForMac-prefix.pch"; GCC_PREPROCESSOR_DEFINITIONS = ( "$(inherited)", "PERMISSION_CAMERA=1", "PERMISSION_PHOTOS=1", ); - INFOPLIST_FILE = "Target Support Files/PromisesObjC/PromisesObjC-Info.plist"; + INFOPLIST_FILE = "Target Support Files/GoogleToolboxForMac/GoogleToolboxForMac-Info.plist"; INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; IPHONEOS_DEPLOYMENT_TARGET = 13.0; LD_RUNPATH_SEARCH_PATHS = ( @@ -26056,9 +26242,9 @@ "@executable_path/Frameworks", "@loader_path/Frameworks", ); - MODULEMAP_FILE = "Target Support Files/PromisesObjC/PromisesObjC.modulemap"; - PRODUCT_MODULE_NAME = FBLPromises; - PRODUCT_NAME = FBLPromises; + MODULEMAP_FILE = "Target Support Files/GoogleToolboxForMac/GoogleToolboxForMac.modulemap"; + PRODUCT_MODULE_NAME = GoogleToolboxForMac; + PRODUCT_NAME = GoogleToolboxForMac; SDKROOT = iphoneos; SKIP_INSTALL = YES; SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; @@ -26068,38 +26254,132 @@ VERSIONING_SYSTEM = "apple-generic"; VERSION_INFO_PREFIX = ""; }; - name = "Profile-development"; + name = "Release-production"; }; - 72A9D963425AD2AFA8CB49028C6EB8FE /* Debug-production */ = { + 72955F07BC160EA54DE0738EB08127C9 /* Release-development */ = { isa = XCBuildConfiguration; - baseConfigurationReference = B91357BF97DBAECE656386331F10CCFD /* sqflite.release.xcconfig */; + baseConfigurationReference = D4F18F4F6B39AC1431EB143FE2915402 /* GoogleUtilitiesComponents.release.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; - CODE_SIGNING_ALLOWED = NO; - CODE_SIGNING_IDENTITY = "-"; - CODE_SIGNING_REQUIRED = NO; - CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/sqflite"; - EXPANDED_CODE_SIGN_IDENTITY = "-"; + "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"; GCC_PREPROCESSOR_DEFINITIONS = ( "$(inherited)", "PERMISSION_CAMERA=1", "PERMISSION_PHOTOS=1", ); - IBSC_MODULE = sqflite; - INFOPLIST_FILE = "Target Support Files/sqflite/ResourceBundle-sqflite_darwin_privacy-sqflite-Info.plist"; + INFOPLIST_FILE = "Target Support Files/GoogleUtilitiesComponents/GoogleUtilitiesComponents-Info.plist"; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; IPHONEOS_DEPLOYMENT_TARGET = 13.0; - PRODUCT_NAME = sqflite_darwin_privacy; + LD_RUNPATH_SEARCH_PATHS = ( + "$(inherited)", + "@executable_path/Frameworks", + "@loader_path/Frameworks", + ); + MACH_O_TYPE = staticlib; + MODULEMAP_FILE = "Target Support Files/GoogleUtilitiesComponents/GoogleUtilitiesComponents.modulemap"; + PRODUCT_MODULE_NAME = GoogleUtilitiesComponents; + PRODUCT_NAME = GoogleUtilitiesComponents; SDKROOT = iphoneos; SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; + SWIFT_VERSION = 5.0; TARGETED_DEVICE_FAMILY = "1,2"; VALIDATE_PRODUCT = YES; - WRAPPER_EXTENSION = bundle; + VERSIONING_SYSTEM = "apple-generic"; + VERSION_INFO_PREFIX = ""; }; - name = "Debug-production"; + name = "Release-development"; + }; + 72C0999BB0B2C42BC261DBF1727892A3 /* Profile */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = B587A9A0D5365CAA9B8A2CC41EB17830 /* nanopb.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"; + GCC_PREFIX_HEADER = "Target Support Files/nanopb/nanopb-prefix.pch"; + GCC_PREPROCESSOR_DEFINITIONS = ( + "$(inherited)", + "PERMISSION_CAMERA=1", + "PERMISSION_PHOTOS=1", + ); + INFOPLIST_FILE = "Target Support Files/nanopb/nanopb-Info.plist"; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; + IPHONEOS_DEPLOYMENT_TARGET = 13.0; + LD_RUNPATH_SEARCH_PATHS = ( + "$(inherited)", + "@executable_path/Frameworks", + "@loader_path/Frameworks", + ); + 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_VERSION = 5.0; + TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; + VERSIONING_SYSTEM = "apple-generic"; + VERSION_INFO_PREFIX = ""; + }; + name = Profile; + }; + 733B02314D3783442BD402CC84024BD6 /* Release-staging */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = B587A9A0D5365CAA9B8A2CC41EB17830 /* nanopb.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"; + GCC_PREFIX_HEADER = "Target Support Files/nanopb/nanopb-prefix.pch"; + GCC_PREPROCESSOR_DEFINITIONS = ( + "$(inherited)", + "PERMISSION_CAMERA=1", + "PERMISSION_PHOTOS=1", + ); + INFOPLIST_FILE = "Target Support Files/nanopb/nanopb-Info.plist"; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; + IPHONEOS_DEPLOYMENT_TARGET = 13.0; + LD_RUNPATH_SEARCH_PATHS = ( + "$(inherited)", + "@executable_path/Frameworks", + "@loader_path/Frameworks", + ); + 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_VERSION = 5.0; + TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; + VERSIONING_SYSTEM = "apple-generic"; + VERSION_INFO_PREFIX = ""; + }; + name = "Release-staging"; }; 733E373B4A7BBCECF984E67AB97017B8 /* Debug-staging */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 4A911B9FACB388B308D1ABB5669DD583 /* permission_handler_apple.release.xcconfig */; + baseConfigurationReference = 4BB6D83A83366DD3295B456FF36F5E3F /* permission_handler_apple.release.xcconfig */; buildSettings = { CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -26156,9 +26436,49 @@ }; name = "Debug-staging"; }; + 73AF244164678F921E1787EF858E0603 /* Debug-staging */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = B587A9A0D5365CAA9B8A2CC41EB17830 /* nanopb.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"; + GCC_PREFIX_HEADER = "Target Support Files/nanopb/nanopb-prefix.pch"; + GCC_PREPROCESSOR_DEFINITIONS = ( + "$(inherited)", + "PERMISSION_CAMERA=1", + "PERMISSION_PHOTOS=1", + ); + INFOPLIST_FILE = "Target Support Files/nanopb/nanopb-Info.plist"; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; + IPHONEOS_DEPLOYMENT_TARGET = 13.0; + LD_RUNPATH_SEARCH_PATHS = ( + "$(inherited)", + "@executable_path/Frameworks", + "@loader_path/Frameworks", + ); + 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_VERSION = 5.0; + TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; + VERSIONING_SYSTEM = "apple-generic"; + VERSION_INFO_PREFIX = ""; + }; + name = "Debug-staging"; + }; 746801BEB3903A240C8D17E533E590DC /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 869E5D3B5708F94FBC923E7B50C1DD07 /* flutter_nekoton_bridge.release.xcconfig */; + baseConfigurationReference = 5B385CBA22624866DCD19C0B8CCF9C42 /* flutter_nekoton_bridge.release.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -26237,32 +26557,43 @@ }; name = "Debug-development"; }; - 74B3BFED59462D9A1273A5867AAF3CD5 /* Release-production */ = { + 75404331A4489DF454E61D61DBC40F2A /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 4A911B9FACB388B308D1ABB5669DD583 /* permission_handler_apple.release.xcconfig */; + baseConfigurationReference = FC4CA41561F8B1B855AED3763329DD2C /* PromisesObjC.release.xcconfig */; buildSettings = { - CLANG_ENABLE_OBJC_WEAK = NO; - CODE_SIGNING_ALLOWED = NO; - CODE_SIGNING_IDENTITY = "-"; - CODE_SIGNING_REQUIRED = NO; - CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/permission_handler_apple"; - EXPANDED_CODE_SIGN_IDENTITY = "-"; + "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"; GCC_PREPROCESSOR_DEFINITIONS = ( "$(inherited)", "PERMISSION_CAMERA=1", "PERMISSION_PHOTOS=1", ); - IBSC_MODULE = permission_handler_apple; - INFOPLIST_FILE = "Target Support Files/permission_handler_apple/ResourceBundle-permission_handler_apple_privacy-permission_handler_apple-Info.plist"; + INFOPLIST_FILE = "Target Support Files/PromisesObjC/PromisesObjC-Info.plist"; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; IPHONEOS_DEPLOYMENT_TARGET = 13.0; - PRODUCT_NAME = permission_handler_apple_privacy; + LD_RUNPATH_SEARCH_PATHS = ( + "$(inherited)", + "@executable_path/Frameworks", + "@loader_path/Frameworks", + ); + 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_VERSION = 5.0; TARGETED_DEVICE_FAMILY = "1,2"; VALIDATE_PRODUCT = YES; - WRAPPER_EXTENSION = bundle; + VERSIONING_SYSTEM = "apple-generic"; + VERSION_INFO_PREFIX = ""; }; - name = "Release-production"; + name = Release; }; 755A46B439FDB7850DF0F2B853D2550B /* Debug-staging */ = { isa = XCBuildConfiguration; @@ -26287,92 +26618,62 @@ }; name = "Debug-staging"; }; - 75933AE238714B82B03AB68F00FAD2C3 /* Release-production */ = { + 7562A44F6CE8FEB50E25A55C09B2183A /* Release-staging */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 06772A7CF38F34E24C0E8F60729C6339 /* local_auth_darwin.release.xcconfig */; + baseConfigurationReference = 8ABCAE069412CFA453F913E4A7E0184B /* GoogleUtilities.release.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; - CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = 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_BITCODE = NO; - "EXCLUDED_ARCHS[sdk=iphoneos*]" = "$(inherited) armv7"; - "EXCLUDED_ARCHS[sdk=iphonesimulator*]" = "$(inherited) i386"; - "FRAMEWORK_SEARCH_PATHS[sdk=iphoneos*]" = ( - "\"/Users/user/flutter/bin/cache/artifacts/engine/ios-release/Flutter.xcframework/ios-arm64\"", - "$(inherited)", - ); - "FRAMEWORK_SEARCH_PATHS[sdk=iphonesimulator*]" = ( - "\"/Users/user/flutter/bin/cache/artifacts/engine/ios-release/Flutter.xcframework/ios-arm64_x86_64-simulator\"", - "$(inherited)", - ); - GCC_PREFIX_HEADER = "Target Support Files/local_auth_darwin/local_auth_darwin-prefix.pch"; + CODE_SIGNING_ALLOWED = NO; + CODE_SIGNING_IDENTITY = "-"; + CODE_SIGNING_REQUIRED = NO; + CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/GoogleUtilities"; + EXPANDED_CODE_SIGN_IDENTITY = "-"; GCC_PREPROCESSOR_DEFINITIONS = ( "$(inherited)", "PERMISSION_CAMERA=1", "PERMISSION_PHOTOS=1", ); - INFOPLIST_FILE = "Target Support Files/local_auth_darwin/local_auth_darwin-Info.plist"; - INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; + IBSC_MODULE = GoogleUtilities; + INFOPLIST_FILE = "Target Support Files/GoogleUtilities/ResourceBundle-GoogleUtilities_Privacy-GoogleUtilities-Info.plist"; IPHONEOS_DEPLOYMENT_TARGET = 13.0; - LD_RUNPATH_SEARCH_PATHS = ( - "$(inherited)", - "@executable_path/Frameworks", - "@loader_path/Frameworks", - ); - MODULEMAP_FILE = "Target Support Files/local_auth_darwin/local_auth_darwin.modulemap"; - OTHER_LDFLAGS = ( - "$(inherited)", - "-framework", - Flutter, - ); - PRODUCT_MODULE_NAME = local_auth_darwin; - PRODUCT_NAME = local_auth_darwin; + PRODUCT_NAME = GoogleUtilities_Privacy; SDKROOT = iphoneos; SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_VERSION = 5.0; TARGETED_DEVICE_FAMILY = "1,2"; VALIDATE_PRODUCT = YES; - "VALID_ARCHS[sdk=iphonesimulator*]" = "$(ARCHS_STANDARD)"; - VERSIONING_SYSTEM = "apple-generic"; - VERSION_INFO_PREFIX = ""; + WRAPPER_EXTENSION = bundle; }; - name = "Release-production"; + name = "Release-staging"; }; - 75B07FD200AC91F4A62143BAA7F4B154 /* Release */ = { + 7592596DAED13E2A9CDFFE8A0B7BE3BC /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = FC4CA41561F8B1B855AED3763329DD2C /* PromisesObjC.release.xcconfig */; + baseConfigurationReference = F0F07E8CD0DB5A7DE9FE5D96E481F1CF /* connectivity_plus.debug.xcconfig */; buildSettings = { CODE_SIGNING_ALLOWED = NO; CODE_SIGNING_IDENTITY = "-"; CODE_SIGNING_REQUIRED = NO; - CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/PromisesObjC"; + CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/connectivity_plus"; EXPANDED_CODE_SIGN_IDENTITY = "-"; GCC_PREPROCESSOR_DEFINITIONS = ( "$(inherited)", "PERMISSION_CAMERA=1", "PERMISSION_PHOTOS=1", ); - IBSC_MODULE = FBLPromises; - INFOPLIST_FILE = "Target Support Files/PromisesObjC/ResourceBundle-FBLPromises_Privacy-PromisesObjC-Info.plist"; + IBSC_MODULE = connectivity_plus; + INFOPLIST_FILE = "Target Support Files/connectivity_plus/ResourceBundle-connectivity_plus_privacy-connectivity_plus-Info.plist"; IPHONEOS_DEPLOYMENT_TARGET = 13.0; - PRODUCT_NAME = FBLPromises_Privacy; + ONLY_ACTIVE_ARCH = NO; + PRODUCT_NAME = connectivity_plus_privacy; SDKROOT = iphoneos; SKIP_INSTALL = YES; TARGETED_DEVICE_FAMILY = "1,2"; WRAPPER_EXTENSION = bundle; }; - name = Release; + name = Debug; }; - 75C2CE65B74CE91CF35F39699E3D016F /* Debug-staging */ = { + 75933AE238714B82B03AB68F00FAD2C3 /* Release-production */ = { isa = XCBuildConfiguration; - baseConfigurationReference = C782F3D64A5DB279B07DD4535BD2F969 /* image_picker_ios.release.xcconfig */; + baseConfigurationReference = 9ECF4B2E725AF88A4D8BD77668F776C4 /* local_auth_darwin.release.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO; @@ -26394,13 +26695,13 @@ "\"/Users/user/flutter/bin/cache/artifacts/engine/ios-release/Flutter.xcframework/ios-arm64_x86_64-simulator\"", "$(inherited)", ); - GCC_PREFIX_HEADER = "Target Support Files/image_picker_ios/image_picker_ios-prefix.pch"; + GCC_PREFIX_HEADER = "Target Support Files/local_auth_darwin/local_auth_darwin-prefix.pch"; GCC_PREPROCESSOR_DEFINITIONS = ( "$(inherited)", "PERMISSION_CAMERA=1", "PERMISSION_PHOTOS=1", ); - INFOPLIST_FILE = "Target Support Files/image_picker_ios/image_picker_ios-Info.plist"; + INFOPLIST_FILE = "Target Support Files/local_auth_darwin/local_auth_darwin-Info.plist"; INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; IPHONEOS_DEPLOYMENT_TARGET = 13.0; LD_RUNPATH_SEARCH_PATHS = ( @@ -26408,14 +26709,14 @@ "@executable_path/Frameworks", "@loader_path/Frameworks", ); - MODULEMAP_FILE = "Target Support Files/image_picker_ios/image_picker_ios.modulemap"; + MODULEMAP_FILE = "Target Support Files/local_auth_darwin/local_auth_darwin.modulemap"; OTHER_LDFLAGS = ( "$(inherited)", "-framework", Flutter, ); - PRODUCT_MODULE_NAME = image_picker_ios; - PRODUCT_NAME = image_picker_ios; + PRODUCT_MODULE_NAME = local_auth_darwin; + PRODUCT_NAME = local_auth_darwin; SDKROOT = iphoneos; SKIP_INSTALL = YES; SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; @@ -26426,118 +26727,69 @@ VERSIONING_SYSTEM = "apple-generic"; VERSION_INFO_PREFIX = ""; }; - name = "Debug-staging"; - }; - 7609B536ADB3EB3CE74C49EECF4DB271 /* Profile-staging */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 4A911B9FACB388B308D1ABB5669DD583 /* permission_handler_apple.release.xcconfig */; - buildSettings = { - CLANG_ENABLE_OBJC_WEAK = NO; - CODE_SIGNING_ALLOWED = NO; - CODE_SIGNING_IDENTITY = "-"; - CODE_SIGNING_REQUIRED = NO; - CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/permission_handler_apple"; - EXPANDED_CODE_SIGN_IDENTITY = "-"; - GCC_PREPROCESSOR_DEFINITIONS = ( - "$(inherited)", - "PERMISSION_CAMERA=1", - "PERMISSION_PHOTOS=1", - ); - IBSC_MODULE = permission_handler_apple; - INFOPLIST_FILE = "Target Support Files/permission_handler_apple/ResourceBundle-permission_handler_apple_privacy-permission_handler_apple-Info.plist"; - IPHONEOS_DEPLOYMENT_TARGET = 13.0; - PRODUCT_NAME = permission_handler_apple_privacy; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; - WRAPPER_EXTENSION = bundle; - }; - name = "Profile-staging"; - }; - 760E96AD9570E27C693EC5817B8D2545 /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 96032D57D2E112ABF8EF589DE1640244 /* PromisesObjC.debug.xcconfig */; - buildSettings = { - CODE_SIGNING_ALLOWED = NO; - CODE_SIGNING_IDENTITY = "-"; - CODE_SIGNING_REQUIRED = NO; - CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/PromisesObjC"; - EXPANDED_CODE_SIGN_IDENTITY = "-"; - GCC_PREPROCESSOR_DEFINITIONS = ( - "$(inherited)", - "PERMISSION_CAMERA=1", - "PERMISSION_PHOTOS=1", - ); - IBSC_MODULE = FBLPromises; - INFOPLIST_FILE = "Target Support Files/PromisesObjC/ResourceBundle-FBLPromises_Privacy-PromisesObjC-Info.plist"; - IPHONEOS_DEPLOYMENT_TARGET = 13.0; - ONLY_ACTIVE_ARCH = NO; - PRODUCT_NAME = FBLPromises_Privacy; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - TARGETED_DEVICE_FAMILY = "1,2"; - WRAPPER_EXTENSION = bundle; - }; - name = Debug; - }; - 764F8DB7A6E512A70F3CE1CC68AF8541 /* Release-production */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = FC4CA41561F8B1B855AED3763329DD2C /* PromisesObjC.release.xcconfig */; - buildSettings = { - CLANG_ENABLE_OBJC_WEAK = NO; - CODE_SIGNING_ALLOWED = NO; - CODE_SIGNING_IDENTITY = "-"; - CODE_SIGNING_REQUIRED = NO; - CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/PromisesObjC"; - EXPANDED_CODE_SIGN_IDENTITY = "-"; - GCC_PREPROCESSOR_DEFINITIONS = ( - "$(inherited)", - "PERMISSION_CAMERA=1", - "PERMISSION_PHOTOS=1", - ); - IBSC_MODULE = FBLPromises; - INFOPLIST_FILE = "Target Support Files/PromisesObjC/ResourceBundle-FBLPromises_Privacy-PromisesObjC-Info.plist"; - IPHONEOS_DEPLOYMENT_TARGET = 13.0; - PRODUCT_NAME = FBLPromises_Privacy; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; - WRAPPER_EXTENSION = bundle; - }; name = "Release-production"; }; - 768A644CF78196E3CCD3EDA101F9F5E2 /* Profile-development */ = { + 75C2CE65B74CE91CF35F39699E3D016F /* Debug-staging */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 3C623764A02C0B6BA3A628060F65377B /* flutter_native_splash.release.xcconfig */; + baseConfigurationReference = 98AE98BF8E201BFC344D7356F2883701 /* image_picker_ios.release.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; - CODE_SIGNING_ALLOWED = NO; - CODE_SIGNING_IDENTITY = "-"; - CODE_SIGNING_REQUIRED = NO; - CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/flutter_native_splash"; - EXPANDED_CODE_SIGN_IDENTITY = "-"; + CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = 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_BITCODE = NO; + "EXCLUDED_ARCHS[sdk=iphoneos*]" = "$(inherited) armv7"; + "EXCLUDED_ARCHS[sdk=iphonesimulator*]" = "$(inherited) i386"; + "FRAMEWORK_SEARCH_PATHS[sdk=iphoneos*]" = ( + "\"/Users/user/flutter/bin/cache/artifacts/engine/ios-release/Flutter.xcframework/ios-arm64\"", + "$(inherited)", + ); + "FRAMEWORK_SEARCH_PATHS[sdk=iphonesimulator*]" = ( + "\"/Users/user/flutter/bin/cache/artifacts/engine/ios-release/Flutter.xcframework/ios-arm64_x86_64-simulator\"", + "$(inherited)", + ); + GCC_PREFIX_HEADER = "Target Support Files/image_picker_ios/image_picker_ios-prefix.pch"; GCC_PREPROCESSOR_DEFINITIONS = ( "$(inherited)", "PERMISSION_CAMERA=1", "PERMISSION_PHOTOS=1", ); - IBSC_MODULE = flutter_native_splash; - INFOPLIST_FILE = "Target Support Files/flutter_native_splash/ResourceBundle-flutter_native_splash_privacy-flutter_native_splash-Info.plist"; + INFOPLIST_FILE = "Target Support Files/image_picker_ios/image_picker_ios-Info.plist"; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; IPHONEOS_DEPLOYMENT_TARGET = 13.0; - PRODUCT_NAME = flutter_native_splash_privacy; + LD_RUNPATH_SEARCH_PATHS = ( + "$(inherited)", + "@executable_path/Frameworks", + "@loader_path/Frameworks", + ); + MODULEMAP_FILE = "Target Support Files/image_picker_ios/image_picker_ios.modulemap"; + OTHER_LDFLAGS = ( + "$(inherited)", + "-framework", + Flutter, + ); + PRODUCT_MODULE_NAME = image_picker_ios; + PRODUCT_NAME = image_picker_ios; SDKROOT = iphoneos; SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; + SWIFT_VERSION = 5.0; TARGETED_DEVICE_FAMILY = "1,2"; VALIDATE_PRODUCT = YES; - WRAPPER_EXTENSION = bundle; + "VALID_ARCHS[sdk=iphonesimulator*]" = "$(ARCHS_STANDARD)"; + VERSIONING_SYSTEM = "apple-generic"; + VERSION_INFO_PREFIX = ""; }; - name = "Profile-development"; + name = "Debug-staging"; }; 76A235E887A1E7A3C9082D0E240320B8 /* Debug-staging */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 869E5D3B5708F94FBC923E7B50C1DD07 /* flutter_nekoton_bridge.release.xcconfig */; + baseConfigurationReference = 5B385CBA22624866DCD19C0B8CCF9C42 /* flutter_nekoton_bridge.release.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -26615,9 +26867,32 @@ }; name = Debug; }; + 76FD4FBB6782CDF08427EFE5611AED8A /* Profile */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = FE5C3B02302BE4DBC83D2A553D5F5C1B /* MLKitVision.release.xcconfig */; + buildSettings = { + ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; + ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; + CLANG_ENABLE_OBJC_WEAK = NO; + GCC_PREPROCESSOR_DEFINITIONS = ( + "$(inherited)", + "PERMISSION_CAMERA=1", + "PERMISSION_PHOTOS=1", + ); + IPHONEOS_DEPLOYMENT_TARGET = 13.0; + LD_RUNPATH_SEARCH_PATHS = ( + "$(inherited)", + "@executable_path/Frameworks", + ); + SDKROOT = iphoneos; + TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; + }; + name = Profile; + }; 7730C0A2F00B38642D91313143763ADF /* Debug-staging */ = { isa = XCBuildConfiguration; - baseConfigurationReference = C630DC976CFC529906571DA851643B86 /* integration_test.release.xcconfig */; + baseConfigurationReference = 5ACA34BFC6EAE3E5A15EE45A206A60FA /* integration_test.release.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO; @@ -26673,34 +26948,49 @@ }; name = "Debug-staging"; }; - 77ABEBB9E4366E6918C96E48E48EC3FB /* Release */ = { + 77F8DF5186EF714AF6B2AB08E89536E6 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 06772A7CF38F34E24C0E8F60729C6339 /* local_auth_darwin.release.xcconfig */; + baseConfigurationReference = B20BC1C62703EE7086A1E97BFA07547A /* GoogleToolboxForMac.debug.xcconfig */; buildSettings = { - CODE_SIGNING_ALLOWED = NO; - CODE_SIGNING_IDENTITY = "-"; - CODE_SIGNING_REQUIRED = NO; - CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/local_auth_darwin"; - EXPANDED_CODE_SIGN_IDENTITY = "-"; + "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"; + GCC_PREFIX_HEADER = "Target Support Files/GoogleToolboxForMac/GoogleToolboxForMac-prefix.pch"; GCC_PREPROCESSOR_DEFINITIONS = ( "$(inherited)", "PERMISSION_CAMERA=1", "PERMISSION_PHOTOS=1", ); - IBSC_MODULE = local_auth_darwin; - INFOPLIST_FILE = "Target Support Files/local_auth_darwin/ResourceBundle-local_auth_darwin_privacy-local_auth_darwin-Info.plist"; + INFOPLIST_FILE = "Target Support Files/GoogleToolboxForMac/GoogleToolboxForMac-Info.plist"; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; IPHONEOS_DEPLOYMENT_TARGET = 13.0; - PRODUCT_NAME = local_auth_darwin_privacy; + LD_RUNPATH_SEARCH_PATHS = ( + "$(inherited)", + "@executable_path/Frameworks", + "@loader_path/Frameworks", + ); + MODULEMAP_FILE = "Target Support Files/GoogleToolboxForMac/GoogleToolboxForMac.modulemap"; + ONLY_ACTIVE_ARCH = NO; + PRODUCT_MODULE_NAME = GoogleToolboxForMac; + PRODUCT_NAME = GoogleToolboxForMac; SDKROOT = iphoneos; SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; + SWIFT_VERSION = 5.0; TARGETED_DEVICE_FAMILY = "1,2"; - WRAPPER_EXTENSION = bundle; + VERSIONING_SYSTEM = "apple-generic"; + VERSION_INFO_PREFIX = ""; }; - name = Release; + name = Debug; }; 784EDA3371CCD2383D46F5675E91289E /* Stage-production */ = { isa = XCBuildConfiguration; - baseConfigurationReference = A7D0232BFA7DB2BABBC206DCBF4E211C /* flutter_email_sender.release.xcconfig */; + baseConfigurationReference = 59E64776226CA679807D58D84423DF5F /* flutter_email_sender.release.xcconfig */; buildSettings = { CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -26756,29 +27046,6 @@ }; name = "Stage-production"; }; - 79C9C243CFA1F883ADFA7415E26E2D8C /* Profile-development */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 5D2B88AD25CD5EBE586D760474336767 /* MLKitBarcodeScanning.release.xcconfig */; - buildSettings = { - ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; - ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; - CLANG_ENABLE_OBJC_WEAK = NO; - GCC_PREPROCESSOR_DEFINITIONS = ( - "$(inherited)", - "PERMISSION_CAMERA=1", - "PERMISSION_PHOTOS=1", - ); - IPHONEOS_DEPLOYMENT_TARGET = 13.0; - LD_RUNPATH_SEARCH_PATHS = ( - "$(inherited)", - "@executable_path/Frameworks", - ); - SDKROOT = iphoneos; - TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; - }; - name = "Profile-development"; - }; 79FA4B0B99FA27FD970DFDB498063E5D /* Release-staging */ = { isa = XCBuildConfiguration; buildSettings = { @@ -26841,9 +27108,36 @@ }; name = "Release-staging"; }; + 7A1D4F1BBEC2D96E0EE26BA30A12F0EC /* Release-development */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 19CE9AC8B13646CC03FBC77F131FF183 /* GoogleDataTransport.release.xcconfig */; + buildSettings = { + CLANG_ENABLE_OBJC_WEAK = NO; + CODE_SIGNING_ALLOWED = NO; + CODE_SIGNING_IDENTITY = "-"; + CODE_SIGNING_REQUIRED = NO; + CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/GoogleDataTransport"; + EXPANDED_CODE_SIGN_IDENTITY = "-"; + GCC_PREPROCESSOR_DEFINITIONS = ( + "$(inherited)", + "PERMISSION_CAMERA=1", + "PERMISSION_PHOTOS=1", + ); + IBSC_MODULE = GoogleDataTransport; + INFOPLIST_FILE = "Target Support Files/GoogleDataTransport/ResourceBundle-GoogleDataTransport_Privacy-GoogleDataTransport-Info.plist"; + IPHONEOS_DEPLOYMENT_TARGET = 13.0; + PRODUCT_NAME = GoogleDataTransport_Privacy; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; + WRAPPER_EXTENSION = bundle; + }; + name = "Release-development"; + }; 7A4773494F805454D359BEC9A84ABCFB /* Debug-development */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 4A911B9FACB388B308D1ABB5669DD583 /* permission_handler_apple.release.xcconfig */; + baseConfigurationReference = 4BB6D83A83366DD3295B456FF36F5E3F /* permission_handler_apple.release.xcconfig */; buildSettings = { CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -26900,50 +27194,9 @@ }; name = "Debug-development"; }; - 7A5D4F8DB91E1E42D4691F739D444853 /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 1FB6A8C90B1DEA55B361A5A2C264D21D /* GoogleUtilitiesComponents.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"; - GCC_PREPROCESSOR_DEFINITIONS = ( - "$(inherited)", - "PERMISSION_CAMERA=1", - "PERMISSION_PHOTOS=1", - ); - INFOPLIST_FILE = "Target Support Files/GoogleUtilitiesComponents/GoogleUtilitiesComponents-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/GoogleUtilitiesComponents/GoogleUtilitiesComponents.modulemap"; - ONLY_ACTIVE_ARCH = NO; - PRODUCT_MODULE_NAME = GoogleUtilitiesComponents; - PRODUCT_NAME = GoogleUtilitiesComponents; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_VERSION = 5.0; - TARGETED_DEVICE_FAMILY = "1,2"; - VERSIONING_SYSTEM = "apple-generic"; - VERSION_INFO_PREFIX = ""; - }; - name = Debug; - }; 7A6F61D6B26FB46687C5F2E35E234B02 /* Profile-development */ = { isa = XCBuildConfiguration; - baseConfigurationReference = C782F3D64A5DB279B07DD4535BD2F969 /* image_picker_ios.release.xcconfig */; + baseConfigurationReference = 98AE98BF8E201BFC344D7356F2883701 /* image_picker_ios.release.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO; @@ -26999,32 +27252,9 @@ }; name = "Profile-development"; }; - 7AE438E9FCF6D8D6626A71FCB3BA3C8E /* Debug-development */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 26DCE60E629963FB754A022AED7ACC73 /* MLImage.release.xcconfig */; - buildSettings = { - ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; - ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; - CLANG_ENABLE_OBJC_WEAK = NO; - GCC_PREPROCESSOR_DEFINITIONS = ( - "$(inherited)", - "PERMISSION_CAMERA=1", - "PERMISSION_PHOTOS=1", - ); - IPHONEOS_DEPLOYMENT_TARGET = 13.0; - LD_RUNPATH_SEARCH_PATHS = ( - "$(inherited)", - "@executable_path/Frameworks", - ); - SDKROOT = iphoneos; - TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; - }; - name = "Debug-development"; - }; 7B0F6702DEE099064063562F9A856E86 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 3C623764A02C0B6BA3A628060F65377B /* flutter_native_splash.release.xcconfig */; + baseConfigurationReference = 57D6AA21B16FC3FF93AD29A67F768BB2 /* flutter_native_splash.release.xcconfig */; buildSettings = { CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -27081,7 +27311,7 @@ }; 7B29C7431CEFA7385557603BFCD4297C /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = A7D0232BFA7DB2BABBC206DCBF4E211C /* flutter_email_sender.release.xcconfig */; + baseConfigurationReference = 59E64776226CA679807D58D84423DF5F /* flutter_email_sender.release.xcconfig */; buildSettings = { CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -27137,158 +27367,9 @@ }; name = Release; }; - 7B40EE074727F49355AD896DEA737C84 /* Release-production */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 26DCE60E629963FB754A022AED7ACC73 /* MLImage.release.xcconfig */; - buildSettings = { - ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; - ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; - CLANG_ENABLE_OBJC_WEAK = NO; - GCC_PREPROCESSOR_DEFINITIONS = ( - "$(inherited)", - "PERMISSION_CAMERA=1", - "PERMISSION_PHOTOS=1", - ); - IPHONEOS_DEPLOYMENT_TARGET = 13.0; - LD_RUNPATH_SEARCH_PATHS = ( - "$(inherited)", - "@executable_path/Frameworks", - ); - SDKROOT = iphoneos; - TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; - }; - name = "Release-production"; - }; - 7B6B0BBF85B921591A1EF76390914ADD /* Debug-production */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = FE5C3B02302BE4DBC83D2A553D5F5C1B /* MLKitVision.release.xcconfig */; - buildSettings = { - ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; - ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; - CLANG_ENABLE_OBJC_WEAK = NO; - GCC_PREPROCESSOR_DEFINITIONS = ( - "$(inherited)", - "PERMISSION_CAMERA=1", - "PERMISSION_PHOTOS=1", - ); - IPHONEOS_DEPLOYMENT_TARGET = 13.0; - LD_RUNPATH_SEARCH_PATHS = ( - "$(inherited)", - "@executable_path/Frameworks", - ); - SDKROOT = iphoneos; - TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; - }; - name = "Debug-production"; - }; - 7C0862DC353643974DD20ABD9C6BED36 /* Debug-staging */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = C782F3D64A5DB279B07DD4535BD2F969 /* image_picker_ios.release.xcconfig */; - buildSettings = { - CLANG_ENABLE_OBJC_WEAK = NO; - CODE_SIGNING_ALLOWED = NO; - CODE_SIGNING_IDENTITY = "-"; - CODE_SIGNING_REQUIRED = NO; - CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/image_picker_ios"; - EXPANDED_CODE_SIGN_IDENTITY = "-"; - GCC_PREPROCESSOR_DEFINITIONS = ( - "$(inherited)", - "PERMISSION_CAMERA=1", - "PERMISSION_PHOTOS=1", - ); - IBSC_MODULE = image_picker_ios; - INFOPLIST_FILE = "Target Support Files/image_picker_ios/ResourceBundle-image_picker_ios_privacy-image_picker_ios-Info.plist"; - IPHONEOS_DEPLOYMENT_TARGET = 13.0; - PRODUCT_NAME = image_picker_ios_privacy; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; - WRAPPER_EXTENSION = bundle; - }; - name = "Debug-staging"; - }; - 7C85A7A38C51D44111C2093B39ECE7BD /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 09591BCE938F1C26C6D192C1AB4F10A6 /* GoogleUtilities.debug.xcconfig */; - buildSettings = { - CODE_SIGNING_ALLOWED = NO; - CODE_SIGNING_IDENTITY = "-"; - CODE_SIGNING_REQUIRED = NO; - CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/GoogleUtilities"; - EXPANDED_CODE_SIGN_IDENTITY = "-"; - GCC_PREPROCESSOR_DEFINITIONS = ( - "$(inherited)", - "PERMISSION_CAMERA=1", - "PERMISSION_PHOTOS=1", - ); - IBSC_MODULE = GoogleUtilities; - INFOPLIST_FILE = "Target Support Files/GoogleUtilities/ResourceBundle-GoogleUtilities_Privacy-GoogleUtilities-Info.plist"; - IPHONEOS_DEPLOYMENT_TARGET = 13.0; - ONLY_ACTIVE_ARCH = NO; - PRODUCT_NAME = GoogleUtilities_Privacy; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - TARGETED_DEVICE_FAMILY = "1,2"; - WRAPPER_EXTENSION = bundle; - }; - name = Debug; - }; - 7CBA8D3B8E2FE631D7E81357DB0C3F99 /* Release-production */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = FE5C3B02302BE4DBC83D2A553D5F5C1B /* MLKitVision.release.xcconfig */; - buildSettings = { - ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; - ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; - CLANG_ENABLE_OBJC_WEAK = NO; - GCC_PREPROCESSOR_DEFINITIONS = ( - "$(inherited)", - "PERMISSION_CAMERA=1", - "PERMISSION_PHOTOS=1", - ); - IPHONEOS_DEPLOYMENT_TARGET = 13.0; - LD_RUNPATH_SEARCH_PATHS = ( - "$(inherited)", - "@executable_path/Frameworks", - ); - SDKROOT = iphoneos; - TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; - }; - name = "Release-production"; - }; - 7CDB118DEF4201CDD52D70A05ABBCB6F /* Profile */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 8ABCAE069412CFA453F913E4A7E0184B /* GoogleUtilities.release.xcconfig */; - buildSettings = { - CLANG_ENABLE_OBJC_WEAK = NO; - CODE_SIGNING_ALLOWED = NO; - CODE_SIGNING_IDENTITY = "-"; - CODE_SIGNING_REQUIRED = NO; - CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/GoogleUtilities"; - EXPANDED_CODE_SIGN_IDENTITY = "-"; - GCC_PREPROCESSOR_DEFINITIONS = ( - "$(inherited)", - "PERMISSION_CAMERA=1", - "PERMISSION_PHOTOS=1", - ); - IBSC_MODULE = GoogleUtilities; - INFOPLIST_FILE = "Target Support Files/GoogleUtilities/ResourceBundle-GoogleUtilities_Privacy-GoogleUtilities-Info.plist"; - IPHONEOS_DEPLOYMENT_TARGET = 13.0; - PRODUCT_NAME = GoogleUtilities_Privacy; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; - WRAPPER_EXTENSION = bundle; - }; - name = Profile; - }; 7D1F0BDA5795A9C698EF749BECE999A3 /* Stage-production */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 79066AF4601F7FFEE6681FB7DA45FA72 /* flutter_keyboard_visibility.release.xcconfig */; + baseConfigurationReference = A0E07105D46C98227F9CF101D83E460C /* flutter_keyboard_visibility.release.xcconfig */; buildSettings = { CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -27343,6 +27424,31 @@ }; name = "Stage-production"; }; + 7D3F63C4328F032349B0DBB19B37789A /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 6201BD6C84B86BD570988C7E3B8409CB /* package_info_plus.release.xcconfig */; + buildSettings = { + CODE_SIGNING_ALLOWED = NO; + CODE_SIGNING_IDENTITY = "-"; + CODE_SIGNING_REQUIRED = NO; + CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/package_info_plus"; + EXPANDED_CODE_SIGN_IDENTITY = "-"; + GCC_PREPROCESSOR_DEFINITIONS = ( + "$(inherited)", + "PERMISSION_CAMERA=1", + "PERMISSION_PHOTOS=1", + ); + IBSC_MODULE = package_info_plus; + INFOPLIST_FILE = "Target Support Files/package_info_plus/ResourceBundle-package_info_plus_privacy-package_info_plus-Info.plist"; + IPHONEOS_DEPLOYMENT_TARGET = 13.0; + PRODUCT_NAME = package_info_plus_privacy; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + TARGETED_DEVICE_FAMILY = "1,2"; + WRAPPER_EXTENSION = bundle; + }; + name = Release; + }; 7D58DAB582DDFEC3210B79E78DB0B123 /* Debug-staging */ = { isa = XCBuildConfiguration; baseConfigurationReference = 9DAA7B5E5871B37317E0633BE9DB4156 /* OrderedSet.release.xcconfig */; @@ -27385,7 +27491,7 @@ }; 7E08CA8EA15655CB898801A84C7858B2 /* Debug-production */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 1E47B40DD78F33D7394C9CDADE9B41A7 /* share_plus.release.xcconfig */; + baseConfigurationReference = 196B9320A9BD7C09E7C5420F49D709B3 /* share_plus.release.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO; @@ -27441,9 +27547,32 @@ }; name = "Debug-production"; }; + 7E5C41C756A447FDD5513199353FB8E9 /* Profile-production */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = FE5C3B02302BE4DBC83D2A553D5F5C1B /* MLKitVision.release.xcconfig */; + buildSettings = { + ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; + ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; + CLANG_ENABLE_OBJC_WEAK = NO; + GCC_PREPROCESSOR_DEFINITIONS = ( + "$(inherited)", + "PERMISSION_CAMERA=1", + "PERMISSION_PHOTOS=1", + ); + IPHONEOS_DEPLOYMENT_TARGET = 13.0; + LD_RUNPATH_SEARCH_PATHS = ( + "$(inherited)", + "@executable_path/Frameworks", + ); + SDKROOT = iphoneos; + TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; + }; + name = "Profile-production"; + }; 7E69D60AA31F5A1010E1901167050542 /* Debug-staging */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 7B2F4BE2D901E9309159228CD856EBAF /* flutter_secure_storage.release.xcconfig */; + baseConfigurationReference = 13146A48D1544CF0CF218B3A514C848E /* flutter_secure_storage.release.xcconfig */; buildSettings = { CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -27498,25 +27627,25 @@ }; name = "Debug-staging"; }; - 7E74CEE6E006FA2EE523C6BC8192CD8D /* Profile */ = { + 7E8435855B9FF9F372B9F93005BF4B58 /* Profile */ = { isa = XCBuildConfiguration; - baseConfigurationReference = A7D0232BFA7DB2BABBC206DCBF4E211C /* flutter_email_sender.release.xcconfig */; + baseConfigurationReference = F9F252ACFB155ACF9BB56FB267880E01 /* url_launcher_ios.release.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; CODE_SIGNING_ALLOWED = NO; CODE_SIGNING_IDENTITY = "-"; CODE_SIGNING_REQUIRED = NO; - CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/flutter_email_sender"; + CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/url_launcher_ios"; EXPANDED_CODE_SIGN_IDENTITY = "-"; GCC_PREPROCESSOR_DEFINITIONS = ( "$(inherited)", "PERMISSION_CAMERA=1", "PERMISSION_PHOTOS=1", ); - IBSC_MODULE = flutter_email_sender; - INFOPLIST_FILE = "Target Support Files/flutter_email_sender/ResourceBundle-flutter_email_sender-flutter_email_sender-Info.plist"; + IBSC_MODULE = url_launcher_ios; + INFOPLIST_FILE = "Target Support Files/url_launcher_ios/ResourceBundle-url_launcher_ios_privacy-url_launcher_ios-Info.plist"; IPHONEOS_DEPLOYMENT_TARGET = 13.0; - PRODUCT_NAME = flutter_email_sender; + PRODUCT_NAME = url_launcher_ios_privacy; SDKROOT = iphoneos; SKIP_INSTALL = YES; TARGETED_DEVICE_FAMILY = "1,2"; @@ -27525,142 +27654,140 @@ }; name = Profile; }; - 7EFFD8395B35BCA700CA1C2ED739D787 /* Debug-production */ = { + 7EB5497E576C1AA9DF1C2AB26EAABE6B /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 52D3A45B276300DECC1173BE9A70A0A1 /* GoogleMLKit.release.xcconfig */; + baseConfigurationReference = C3A8E22467ADEB42B7D83259E1A6F078 /* Sentry.release.xcconfig */; buildSettings = { - ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; - ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; - CLANG_ENABLE_OBJC_WEAK = NO; + CODE_SIGNING_ALLOWED = NO; + CODE_SIGNING_IDENTITY = "-"; + CODE_SIGNING_REQUIRED = NO; + CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/Sentry"; + EXPANDED_CODE_SIGN_IDENTITY = "-"; GCC_PREPROCESSOR_DEFINITIONS = ( "$(inherited)", "PERMISSION_CAMERA=1", "PERMISSION_PHOTOS=1", ); + IBSC_MODULE = Sentry; + INFOPLIST_FILE = "Target Support Files/Sentry/ResourceBundle-Sentry-Sentry-Info.plist"; IPHONEOS_DEPLOYMENT_TARGET = 13.0; - LD_RUNPATH_SEARCH_PATHS = ( - "$(inherited)", - "@executable_path/Frameworks", - ); + PRODUCT_NAME = Sentry; SDKROOT = iphoneos; + SKIP_INSTALL = YES; TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; + WRAPPER_EXTENSION = bundle; }; - name = "Debug-production"; + name = Release; }; - 7F064B0C2085767A2706877D6B33BFAD /* Profile-production */ = { + 7ED4C6B93EF45C11B99A5DC9590DFC42 /* Debug-development */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 06772A7CF38F34E24C0E8F60729C6339 /* local_auth_darwin.release.xcconfig */; + baseConfigurationReference = 6201BD6C84B86BD570988C7E3B8409CB /* package_info_plus.release.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; - CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = 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_BITCODE = NO; - "EXCLUDED_ARCHS[sdk=iphoneos*]" = "$(inherited) armv7"; - "EXCLUDED_ARCHS[sdk=iphonesimulator*]" = "$(inherited) i386"; - "FRAMEWORK_SEARCH_PATHS[sdk=iphoneos*]" = ( - "\"/Users/user/flutter/bin/cache/artifacts/engine/ios-release/Flutter.xcframework/ios-arm64\"", - "$(inherited)", - ); - "FRAMEWORK_SEARCH_PATHS[sdk=iphonesimulator*]" = ( - "\"/Users/user/flutter/bin/cache/artifacts/engine/ios-release/Flutter.xcframework/ios-arm64_x86_64-simulator\"", - "$(inherited)", - ); - GCC_PREFIX_HEADER = "Target Support Files/local_auth_darwin/local_auth_darwin-prefix.pch"; + CODE_SIGNING_ALLOWED = NO; + CODE_SIGNING_IDENTITY = "-"; + CODE_SIGNING_REQUIRED = NO; + CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/package_info_plus"; + EXPANDED_CODE_SIGN_IDENTITY = "-"; GCC_PREPROCESSOR_DEFINITIONS = ( "$(inherited)", "PERMISSION_CAMERA=1", "PERMISSION_PHOTOS=1", ); - INFOPLIST_FILE = "Target Support Files/local_auth_darwin/local_auth_darwin-Info.plist"; - INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; + IBSC_MODULE = package_info_plus; + INFOPLIST_FILE = "Target Support Files/package_info_plus/ResourceBundle-package_info_plus_privacy-package_info_plus-Info.plist"; IPHONEOS_DEPLOYMENT_TARGET = 13.0; - LD_RUNPATH_SEARCH_PATHS = ( - "$(inherited)", - "@executable_path/Frameworks", - "@loader_path/Frameworks", - ); - MODULEMAP_FILE = "Target Support Files/local_auth_darwin/local_auth_darwin.modulemap"; - OTHER_LDFLAGS = ( - "$(inherited)", - "-framework", - Flutter, - ); - PRODUCT_MODULE_NAME = local_auth_darwin; - PRODUCT_NAME = local_auth_darwin; + PRODUCT_NAME = package_info_plus_privacy; SDKROOT = iphoneos; SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_VERSION = 5.0; TARGETED_DEVICE_FAMILY = "1,2"; VALIDATE_PRODUCT = YES; - "VALID_ARCHS[sdk=iphonesimulator*]" = "$(ARCHS_STANDARD)"; - VERSIONING_SYSTEM = "apple-generic"; - VERSION_INFO_PREFIX = ""; + WRAPPER_EXTENSION = bundle; }; - name = "Profile-production"; + name = "Debug-development"; }; - 7F8BAC5C25360BF7D095971EF8D015DA /* Release-production */ = { + 7EFFD8395B35BCA700CA1C2ED739D787 /* Debug-production */ = { isa = XCBuildConfiguration; - baseConfigurationReference = C3A8E22467ADEB42B7D83259E1A6F078 /* Sentry.release.xcconfig */; + baseConfigurationReference = 52D3A45B276300DECC1173BE9A70A0A1 /* GoogleMLKit.release.xcconfig */; buildSettings = { + ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; + ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; CLANG_ENABLE_OBJC_WEAK = NO; - CODE_SIGNING_ALLOWED = NO; - CODE_SIGNING_IDENTITY = "-"; - CODE_SIGNING_REQUIRED = NO; - CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/Sentry"; - EXPANDED_CODE_SIGN_IDENTITY = "-"; GCC_PREPROCESSOR_DEFINITIONS = ( "$(inherited)", "PERMISSION_CAMERA=1", "PERMISSION_PHOTOS=1", ); - IBSC_MODULE = Sentry; - INFOPLIST_FILE = "Target Support Files/Sentry/ResourceBundle-Sentry-Sentry-Info.plist"; IPHONEOS_DEPLOYMENT_TARGET = 13.0; - PRODUCT_NAME = Sentry; + LD_RUNPATH_SEARCH_PATHS = ( + "$(inherited)", + "@executable_path/Frameworks", + ); SDKROOT = iphoneos; - SKIP_INSTALL = YES; TARGETED_DEVICE_FAMILY = "1,2"; VALIDATE_PRODUCT = YES; - WRAPPER_EXTENSION = bundle; }; - name = "Release-production"; + name = "Debug-production"; }; - 80402665091ADC84F0651B1DA53E083F /* Profile-production */ = { + 7F064B0C2085767A2706877D6B33BFAD /* Profile-production */ = { isa = XCBuildConfiguration; - baseConfigurationReference = F4C3D5A980B27BD2C418D61228F67F01 /* package_info_plus.release.xcconfig */; + baseConfigurationReference = 9ECF4B2E725AF88A4D8BD77668F776C4 /* local_auth_darwin.release.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; - CODE_SIGNING_ALLOWED = NO; - CODE_SIGNING_IDENTITY = "-"; - CODE_SIGNING_REQUIRED = NO; - CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/package_info_plus"; - EXPANDED_CODE_SIGN_IDENTITY = "-"; + CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = 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_BITCODE = NO; + "EXCLUDED_ARCHS[sdk=iphoneos*]" = "$(inherited) armv7"; + "EXCLUDED_ARCHS[sdk=iphonesimulator*]" = "$(inherited) i386"; + "FRAMEWORK_SEARCH_PATHS[sdk=iphoneos*]" = ( + "\"/Users/user/flutter/bin/cache/artifacts/engine/ios-release/Flutter.xcframework/ios-arm64\"", + "$(inherited)", + ); + "FRAMEWORK_SEARCH_PATHS[sdk=iphonesimulator*]" = ( + "\"/Users/user/flutter/bin/cache/artifacts/engine/ios-release/Flutter.xcframework/ios-arm64_x86_64-simulator\"", + "$(inherited)", + ); + GCC_PREFIX_HEADER = "Target Support Files/local_auth_darwin/local_auth_darwin-prefix.pch"; GCC_PREPROCESSOR_DEFINITIONS = ( "$(inherited)", "PERMISSION_CAMERA=1", "PERMISSION_PHOTOS=1", ); - IBSC_MODULE = package_info_plus; - INFOPLIST_FILE = "Target Support Files/package_info_plus/ResourceBundle-package_info_plus_privacy-package_info_plus-Info.plist"; + INFOPLIST_FILE = "Target Support Files/local_auth_darwin/local_auth_darwin-Info.plist"; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; IPHONEOS_DEPLOYMENT_TARGET = 13.0; - PRODUCT_NAME = package_info_plus_privacy; + LD_RUNPATH_SEARCH_PATHS = ( + "$(inherited)", + "@executable_path/Frameworks", + "@loader_path/Frameworks", + ); + MODULEMAP_FILE = "Target Support Files/local_auth_darwin/local_auth_darwin.modulemap"; + OTHER_LDFLAGS = ( + "$(inherited)", + "-framework", + Flutter, + ); + PRODUCT_MODULE_NAME = local_auth_darwin; + PRODUCT_NAME = local_auth_darwin; SDKROOT = iphoneos; SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; + SWIFT_VERSION = 5.0; TARGETED_DEVICE_FAMILY = "1,2"; VALIDATE_PRODUCT = YES; - WRAPPER_EXTENSION = bundle; + "VALID_ARCHS[sdk=iphonesimulator*]" = "$(ARCHS_STANDARD)"; + VERSIONING_SYSTEM = "apple-generic"; + VERSION_INFO_PREFIX = ""; }; name = "Profile-production"; }; - 8084C3B145591715F8393F7D68E5FFBE /* Release-production */ = { + 8075ED2F1FB354A54D7B31911D68B00F /* Stage-production */ = { isa = XCBuildConfiguration; baseConfigurationReference = B587A9A0D5365CAA9B8A2CC41EB17830 /* nanopb.release.xcconfig */; buildSettings = { @@ -27685,38 +27812,38 @@ VALIDATE_PRODUCT = YES; WRAPPER_EXTENSION = bundle; }; - name = "Release-production"; + name = "Stage-production"; }; - 8086843459B04EE0A5B6F283E74508C3 /* Release-staging */ = { + 80B2E6EC5585653E29873D50D78C5C7E /* Debug-staging */ = { isa = XCBuildConfiguration; - baseConfigurationReference = F4C3D5A980B27BD2C418D61228F67F01 /* package_info_plus.release.xcconfig */; + baseConfigurationReference = B587A9A0D5365CAA9B8A2CC41EB17830 /* nanopb.release.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; CODE_SIGNING_ALLOWED = NO; CODE_SIGNING_IDENTITY = "-"; CODE_SIGNING_REQUIRED = NO; - CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/package_info_plus"; + CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/nanopb"; EXPANDED_CODE_SIGN_IDENTITY = "-"; GCC_PREPROCESSOR_DEFINITIONS = ( "$(inherited)", "PERMISSION_CAMERA=1", "PERMISSION_PHOTOS=1", ); - IBSC_MODULE = package_info_plus; - INFOPLIST_FILE = "Target Support Files/package_info_plus/ResourceBundle-package_info_plus_privacy-package_info_plus-Info.plist"; + IBSC_MODULE = nanopb; + INFOPLIST_FILE = "Target Support Files/nanopb/ResourceBundle-nanopb_Privacy-nanopb-Info.plist"; IPHONEOS_DEPLOYMENT_TARGET = 13.0; - PRODUCT_NAME = package_info_plus_privacy; + PRODUCT_NAME = nanopb_Privacy; SDKROOT = iphoneos; SKIP_INSTALL = YES; TARGETED_DEVICE_FAMILY = "1,2"; VALIDATE_PRODUCT = YES; WRAPPER_EXTENSION = bundle; }; - name = "Release-staging"; + name = "Debug-staging"; }; 80FD083AA4AF32660769C9EB5948A8CF /* Profile-production */ = { isa = XCBuildConfiguration; - baseConfigurationReference = F4C3D5A980B27BD2C418D61228F67F01 /* package_info_plus.release.xcconfig */; + baseConfigurationReference = 6201BD6C84B86BD570988C7E3B8409CB /* package_info_plus.release.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO; @@ -27772,32 +27899,9 @@ }; name = "Profile-production"; }; - 8128BAD3AE9417C13D135F40A906ADAE /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = FE5C3B02302BE4DBC83D2A553D5F5C1B /* MLKitVision.release.xcconfig */; - buildSettings = { - ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; - ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; - CLANG_ENABLE_OBJC_WEAK = NO; - GCC_PREPROCESSOR_DEFINITIONS = ( - "$(inherited)", - "PERMISSION_CAMERA=1", - "PERMISSION_PHOTOS=1", - ); - IPHONEOS_DEPLOYMENT_TARGET = 13.0; - LD_RUNPATH_SEARCH_PATHS = ( - "$(inherited)", - "@executable_path/Frameworks", - ); - SDKROOT = iphoneos; - TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; - }; - name = Release; - }; 819E37CCBAE1F50F4D9701C46158D5B6 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 9281357EC3038ADC39C884ED1A1D94E1 /* flutter_inappwebview.release.xcconfig */; + baseConfigurationReference = F3BAFA0B70330F234C6B8BF559E7A252 /* flutter_inappwebview.release.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO; @@ -27853,100 +27957,116 @@ }; name = Release; }; - 83DB92966EB8CED6F470544E9D10A4C6 /* Debug-staging */ = { + 81D0633C0A80BAB8B60EA48DC6FD7E81 /* Profile-production */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 73DB9045D22A4FBE50F8FACF34C6F052 /* url_launcher_ios.release.xcconfig */; + baseConfigurationReference = 196B9320A9BD7C09E7C5420F49D709B3 /* share_plus.release.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; CODE_SIGNING_ALLOWED = NO; CODE_SIGNING_IDENTITY = "-"; CODE_SIGNING_REQUIRED = NO; - CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/url_launcher_ios"; + CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/share_plus"; EXPANDED_CODE_SIGN_IDENTITY = "-"; GCC_PREPROCESSOR_DEFINITIONS = ( "$(inherited)", "PERMISSION_CAMERA=1", "PERMISSION_PHOTOS=1", ); - IBSC_MODULE = url_launcher_ios; - INFOPLIST_FILE = "Target Support Files/url_launcher_ios/ResourceBundle-url_launcher_ios_privacy-url_launcher_ios-Info.plist"; + IBSC_MODULE = share_plus; + INFOPLIST_FILE = "Target Support Files/share_plus/ResourceBundle-share_plus_privacy-share_plus-Info.plist"; IPHONEOS_DEPLOYMENT_TARGET = 13.0; - PRODUCT_NAME = url_launcher_ios_privacy; + PRODUCT_NAME = share_plus_privacy; SDKROOT = iphoneos; SKIP_INSTALL = YES; TARGETED_DEVICE_FAMILY = "1,2"; VALIDATE_PRODUCT = YES; WRAPPER_EXTENSION = bundle; }; - name = "Debug-staging"; + name = "Profile-production"; }; - 849782854EF21EF2ECCEAB5044F80ABD /* Release-production */ = { + 8215632960693D6E09E92DB40313E45B /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 8ABCAE069412CFA453F913E4A7E0184B /* GoogleUtilities.release.xcconfig */; + baseConfigurationReference = 412060A2F3DC91E4FB221A1795BD33D5 /* GoogleDataTransport.debug.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"; + CODE_SIGNING_ALLOWED = NO; + CODE_SIGNING_IDENTITY = "-"; + CODE_SIGNING_REQUIRED = NO; + CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/GoogleDataTransport"; + EXPANDED_CODE_SIGN_IDENTITY = "-"; GCC_PREPROCESSOR_DEFINITIONS = ( "$(inherited)", "PERMISSION_CAMERA=1", "PERMISSION_PHOTOS=1", ); - INFOPLIST_FILE = "Target Support Files/GoogleUtilities/GoogleUtilities-Info.plist"; - INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; + IBSC_MODULE = GoogleDataTransport; + INFOPLIST_FILE = "Target Support Files/GoogleDataTransport/ResourceBundle-GoogleDataTransport_Privacy-GoogleDataTransport-Info.plist"; IPHONEOS_DEPLOYMENT_TARGET = 13.0; - LD_RUNPATH_SEARCH_PATHS = ( + ONLY_ACTIVE_ARCH = NO; + PRODUCT_NAME = GoogleDataTransport_Privacy; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + TARGETED_DEVICE_FAMILY = "1,2"; + WRAPPER_EXTENSION = bundle; + }; + name = Debug; + }; + 841BD63375C2D724DC41E52D7B3CC553 /* Profile */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 19CE9AC8B13646CC03FBC77F131FF183 /* GoogleDataTransport.release.xcconfig */; + buildSettings = { + CLANG_ENABLE_OBJC_WEAK = NO; + CODE_SIGNING_ALLOWED = NO; + CODE_SIGNING_IDENTITY = "-"; + CODE_SIGNING_REQUIRED = NO; + CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/GoogleDataTransport"; + EXPANDED_CODE_SIGN_IDENTITY = "-"; + GCC_PREPROCESSOR_DEFINITIONS = ( "$(inherited)", - "@executable_path/Frameworks", - "@loader_path/Frameworks", + "PERMISSION_CAMERA=1", + "PERMISSION_PHOTOS=1", ); - MODULEMAP_FILE = "Target Support Files/GoogleUtilities/GoogleUtilities.modulemap"; - PRODUCT_MODULE_NAME = GoogleUtilities; - PRODUCT_NAME = GoogleUtilities; + IBSC_MODULE = GoogleDataTransport; + INFOPLIST_FILE = "Target Support Files/GoogleDataTransport/ResourceBundle-GoogleDataTransport_Privacy-GoogleDataTransport-Info.plist"; + IPHONEOS_DEPLOYMENT_TARGET = 13.0; + PRODUCT_NAME = GoogleDataTransport_Privacy; SDKROOT = iphoneos; SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_VERSION = 5.0; TARGETED_DEVICE_FAMILY = "1,2"; VALIDATE_PRODUCT = YES; - VERSIONING_SYSTEM = "apple-generic"; - VERSION_INFO_PREFIX = ""; + WRAPPER_EXTENSION = bundle; }; - name = "Release-production"; + name = Profile; }; - 84F53969BFABA2BE020C3BFD5149C176 /* Release */ = { + 85E9334176240B24CE52A3A2933D32CC /* Debug-staging */ = { isa = XCBuildConfiguration; - baseConfigurationReference = B60761FA10DAC783EF5D7E4C1574226A /* connectivity_plus.release.xcconfig */; + baseConfigurationReference = 196B9320A9BD7C09E7C5420F49D709B3 /* share_plus.release.xcconfig */; buildSettings = { + CLANG_ENABLE_OBJC_WEAK = NO; CODE_SIGNING_ALLOWED = NO; CODE_SIGNING_IDENTITY = "-"; CODE_SIGNING_REQUIRED = NO; - CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/connectivity_plus"; + CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/share_plus"; EXPANDED_CODE_SIGN_IDENTITY = "-"; GCC_PREPROCESSOR_DEFINITIONS = ( "$(inherited)", "PERMISSION_CAMERA=1", "PERMISSION_PHOTOS=1", ); - IBSC_MODULE = connectivity_plus; - INFOPLIST_FILE = "Target Support Files/connectivity_plus/ResourceBundle-connectivity_plus_privacy-connectivity_plus-Info.plist"; + IBSC_MODULE = share_plus; + INFOPLIST_FILE = "Target Support Files/share_plus/ResourceBundle-share_plus_privacy-share_plus-Info.plist"; IPHONEOS_DEPLOYMENT_TARGET = 13.0; - PRODUCT_NAME = connectivity_plus_privacy; + PRODUCT_NAME = share_plus_privacy; SDKROOT = iphoneos; SKIP_INSTALL = YES; TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; WRAPPER_EXTENSION = bundle; }; - name = Release; + name = "Debug-staging"; }; 85E999BA23FA6E215EBA854475C20C4A /* Release-development */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 86E540DA830E020FCC7DEA27000E1A98 /* shared_preferences_foundation.release.xcconfig */; + baseConfigurationReference = D1CCD0C16DFF0194B0A936A205ED4ED0 /* shared_preferences_foundation.release.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO; @@ -28038,7 +28158,7 @@ }; 86078551B7EE42C9093E7F98DE176945 /* Profile-production */ = { isa = XCBuildConfiguration; - baseConfigurationReference = C630DC976CFC529906571DA851643B86 /* integration_test.release.xcconfig */; + baseConfigurationReference = 5ACA34BFC6EAE3E5A15EE45A206A60FA /* integration_test.release.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO; @@ -28094,169 +28214,136 @@ }; name = "Profile-production"; }; - 867C0F6FBB8CDA1D6FDFED3ACF66E789 /* Release-staging */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = FC4CA41561F8B1B855AED3763329DD2C /* 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"; - GCC_PREPROCESSOR_DEFINITIONS = ( - "$(inherited)", - "PERMISSION_CAMERA=1", - "PERMISSION_PHOTOS=1", - ); - INFOPLIST_FILE = "Target Support Files/PromisesObjC/PromisesObjC-Info.plist"; - INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; - IPHONEOS_DEPLOYMENT_TARGET = 13.0; - LD_RUNPATH_SEARCH_PATHS = ( - "$(inherited)", - "@executable_path/Frameworks", - "@loader_path/Frameworks", - ); - 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_VERSION = 5.0; - TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; - VERSIONING_SYSTEM = "apple-generic"; - VERSION_INFO_PREFIX = ""; - }; - name = "Release-staging"; - }; - 8698E405E41AA1755C6D3BF9A93DBBFA /* Profile-staging */ = { + 86725CFB057FEB4FAB6D0D34AEFEA2E0 /* Debug-development */ = { isa = XCBuildConfiguration; - baseConfigurationReference = FC4CA41561F8B1B855AED3763329DD2C /* PromisesObjC.release.xcconfig */; + baseConfigurationReference = 13146A48D1544CF0CF218B3A514C848E /* flutter_secure_storage.release.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; CODE_SIGNING_ALLOWED = NO; CODE_SIGNING_IDENTITY = "-"; CODE_SIGNING_REQUIRED = NO; - CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/PromisesObjC"; + CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/flutter_secure_storage"; EXPANDED_CODE_SIGN_IDENTITY = "-"; GCC_PREPROCESSOR_DEFINITIONS = ( "$(inherited)", "PERMISSION_CAMERA=1", "PERMISSION_PHOTOS=1", ); - IBSC_MODULE = FBLPromises; - INFOPLIST_FILE = "Target Support Files/PromisesObjC/ResourceBundle-FBLPromises_Privacy-PromisesObjC-Info.plist"; + IBSC_MODULE = flutter_secure_storage; + INFOPLIST_FILE = "Target Support Files/flutter_secure_storage/ResourceBundle-flutter_secure_storage-flutter_secure_storage-Info.plist"; IPHONEOS_DEPLOYMENT_TARGET = 13.0; - PRODUCT_NAME = FBLPromises_Privacy; + PRODUCT_NAME = flutter_secure_storage; SDKROOT = iphoneos; SKIP_INSTALL = YES; TARGETED_DEVICE_FAMILY = "1,2"; VALIDATE_PRODUCT = YES; WRAPPER_EXTENSION = bundle; }; - name = "Profile-staging"; + name = "Debug-development"; }; - 870590030FAEBD570440EE6F84190149 /* Release-development */ = { + 870B6DA67B44CA17E67010826AAAE170 /* Profile-development */ = { isa = XCBuildConfiguration; - baseConfigurationReference = D4F18F4F6B39AC1431EB143FE2915402 /* GoogleUtilitiesComponents.release.xcconfig */; + baseConfigurationReference = 85EF9BEBA8B20A13BA96488C86CD663A /* MLKitCommon.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"; GCC_PREPROCESSOR_DEFINITIONS = ( "$(inherited)", "PERMISSION_CAMERA=1", "PERMISSION_PHOTOS=1", ); - INFOPLIST_FILE = "Target Support Files/GoogleUtilitiesComponents/GoogleUtilitiesComponents-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/GoogleUtilitiesComponents/GoogleUtilitiesComponents.modulemap"; - PRODUCT_MODULE_NAME = GoogleUtilitiesComponents; - PRODUCT_NAME = GoogleUtilitiesComponents; SDKROOT = iphoneos; - SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_VERSION = 5.0; TARGETED_DEVICE_FAMILY = "1,2"; VALIDATE_PRODUCT = YES; - VERSIONING_SYSTEM = "apple-generic"; - VERSION_INFO_PREFIX = ""; }; - name = "Release-development"; + name = "Profile-development"; }; - 87454F2945F998D400D7941EA8DB8DF8 /* Profile-development */ = { + 87113543EB9EF2E6052216CED71FB4DD /* Debug-production */ = { isa = XCBuildConfiguration; - baseConfigurationReference = FC4CA41561F8B1B855AED3763329DD2C /* PromisesObjC.release.xcconfig */; + baseConfigurationReference = B587A9A0D5365CAA9B8A2CC41EB17830 /* nanopb.release.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; CODE_SIGNING_ALLOWED = NO; CODE_SIGNING_IDENTITY = "-"; CODE_SIGNING_REQUIRED = NO; - CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/PromisesObjC"; + CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/nanopb"; EXPANDED_CODE_SIGN_IDENTITY = "-"; GCC_PREPROCESSOR_DEFINITIONS = ( "$(inherited)", "PERMISSION_CAMERA=1", "PERMISSION_PHOTOS=1", ); - IBSC_MODULE = FBLPromises; - INFOPLIST_FILE = "Target Support Files/PromisesObjC/ResourceBundle-FBLPromises_Privacy-PromisesObjC-Info.plist"; + IBSC_MODULE = nanopb; + INFOPLIST_FILE = "Target Support Files/nanopb/ResourceBundle-nanopb_Privacy-nanopb-Info.plist"; IPHONEOS_DEPLOYMENT_TARGET = 13.0; - PRODUCT_NAME = FBLPromises_Privacy; + PRODUCT_NAME = nanopb_Privacy; SDKROOT = iphoneos; SKIP_INSTALL = YES; TARGETED_DEVICE_FAMILY = "1,2"; VALIDATE_PRODUCT = YES; WRAPPER_EXTENSION = bundle; }; + name = "Debug-production"; + }; + 871C994E6BB2A7610CC28B30E5983676 /* Profile-development */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 26DCE60E629963FB754A022AED7ACC73 /* MLImage.release.xcconfig */; + buildSettings = { + ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; + ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; + CLANG_ENABLE_OBJC_WEAK = NO; + GCC_PREPROCESSOR_DEFINITIONS = ( + "$(inherited)", + "PERMISSION_CAMERA=1", + "PERMISSION_PHOTOS=1", + ); + IPHONEOS_DEPLOYMENT_TARGET = 13.0; + LD_RUNPATH_SEARCH_PATHS = ( + "$(inherited)", + "@executable_path/Frameworks", + ); + SDKROOT = iphoneos; + TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; + }; name = "Profile-development"; }; - 879ED984FEBA284C3E67903E8209E0D0 /* Stage-production */ = { + 879E8E289866F113697AF9FF95C7E121 /* Profile-production */ = { isa = XCBuildConfiguration; - baseConfigurationReference = F4C3D5A980B27BD2C418D61228F67F01 /* package_info_plus.release.xcconfig */; + baseConfigurationReference = 59E64776226CA679807D58D84423DF5F /* flutter_email_sender.release.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; CODE_SIGNING_ALLOWED = NO; CODE_SIGNING_IDENTITY = "-"; CODE_SIGNING_REQUIRED = NO; - CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/package_info_plus"; + CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/flutter_email_sender"; EXPANDED_CODE_SIGN_IDENTITY = "-"; GCC_PREPROCESSOR_DEFINITIONS = ( "$(inherited)", "PERMISSION_CAMERA=1", "PERMISSION_PHOTOS=1", ); - IBSC_MODULE = package_info_plus; - INFOPLIST_FILE = "Target Support Files/package_info_plus/ResourceBundle-package_info_plus_privacy-package_info_plus-Info.plist"; + IBSC_MODULE = flutter_email_sender; + INFOPLIST_FILE = "Target Support Files/flutter_email_sender/ResourceBundle-flutter_email_sender-flutter_email_sender-Info.plist"; IPHONEOS_DEPLOYMENT_TARGET = 13.0; - PRODUCT_NAME = package_info_plus_privacy; + PRODUCT_NAME = flutter_email_sender; SDKROOT = iphoneos; SKIP_INSTALL = YES; TARGETED_DEVICE_FAMILY = "1,2"; VALIDATE_PRODUCT = YES; WRAPPER_EXTENSION = bundle; }; - name = "Stage-production"; + name = "Profile-production"; }; 87DF848B1F575BD43C2495BC22700D00 /* Release-development */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 9311BBA346794A168AC09B1625AB1683 /* path_provider_foundation.release.xcconfig */; + baseConfigurationReference = 2529F7B6D57D43838BFCB332D2EDFE47 /* path_provider_foundation.release.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO; @@ -28308,33 +28395,6 @@ }; name = "Release-development"; }; - 881B3EF13989FC5B1C95C11D2C4FD127 /* Stage-production */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = C782F3D64A5DB279B07DD4535BD2F969 /* image_picker_ios.release.xcconfig */; - buildSettings = { - CLANG_ENABLE_OBJC_WEAK = NO; - CODE_SIGNING_ALLOWED = NO; - CODE_SIGNING_IDENTITY = "-"; - CODE_SIGNING_REQUIRED = NO; - CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/image_picker_ios"; - EXPANDED_CODE_SIGN_IDENTITY = "-"; - GCC_PREPROCESSOR_DEFINITIONS = ( - "$(inherited)", - "PERMISSION_CAMERA=1", - "PERMISSION_PHOTOS=1", - ); - IBSC_MODULE = image_picker_ios; - INFOPLIST_FILE = "Target Support Files/image_picker_ios/ResourceBundle-image_picker_ios_privacy-image_picker_ios-Info.plist"; - IPHONEOS_DEPLOYMENT_TARGET = 13.0; - PRODUCT_NAME = image_picker_ios_privacy; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; - WRAPPER_EXTENSION = bundle; - }; - name = "Stage-production"; - }; 88B1F07089026DC892561BD697B5682E /* Profile */ = { isa = XCBuildConfiguration; baseConfigurationReference = 52D3A45B276300DECC1173BE9A70A0A1 /* GoogleMLKit.release.xcconfig */; @@ -28358,70 +28418,28 @@ }; name = Profile; }; - 88EC74A27BB87E01A75ED965FEF42CE1 /* Profile-production */ = { + 89C19A490C0BBE3CF063777687CAF4D4 /* Release-development */ = { isa = XCBuildConfiguration; - baseConfigurationReference = FC4CA41561F8B1B855AED3763329DD2C /* PromisesObjC.release.xcconfig */; + baseConfigurationReference = FE5C3B02302BE4DBC83D2A553D5F5C1B /* MLKitVision.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"; + ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; + ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; + CLANG_ENABLE_OBJC_WEAK = NO; GCC_PREPROCESSOR_DEFINITIONS = ( "$(inherited)", "PERMISSION_CAMERA=1", "PERMISSION_PHOTOS=1", ); - INFOPLIST_FILE = "Target Support Files/PromisesObjC/PromisesObjC-Info.plist"; - INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; IPHONEOS_DEPLOYMENT_TARGET = 13.0; LD_RUNPATH_SEARCH_PATHS = ( "$(inherited)", "@executable_path/Frameworks", - "@loader_path/Frameworks", - ); - 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_VERSION = 5.0; - TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; - VERSIONING_SYSTEM = "apple-generic"; - VERSION_INFO_PREFIX = ""; - }; - name = "Profile-production"; - }; - 893DABE0A773128D871ECCC96C24DDA7 /* Profile-production */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 19CE9AC8B13646CC03FBC77F131FF183 /* GoogleDataTransport.release.xcconfig */; - buildSettings = { - CLANG_ENABLE_OBJC_WEAK = NO; - CODE_SIGNING_ALLOWED = NO; - CODE_SIGNING_IDENTITY = "-"; - CODE_SIGNING_REQUIRED = NO; - CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/GoogleDataTransport"; - EXPANDED_CODE_SIGN_IDENTITY = "-"; - GCC_PREPROCESSOR_DEFINITIONS = ( - "$(inherited)", - "PERMISSION_CAMERA=1", - "PERMISSION_PHOTOS=1", ); - IBSC_MODULE = GoogleDataTransport; - INFOPLIST_FILE = "Target Support Files/GoogleDataTransport/ResourceBundle-GoogleDataTransport_Privacy-GoogleDataTransport-Info.plist"; - IPHONEOS_DEPLOYMENT_TARGET = 13.0; - PRODUCT_NAME = GoogleDataTransport_Privacy; SDKROOT = iphoneos; - SKIP_INSTALL = YES; TARGETED_DEVICE_FAMILY = "1,2"; VALIDATE_PRODUCT = YES; - WRAPPER_EXTENSION = bundle; }; - name = "Profile-production"; + name = "Release-development"; }; 8A4F0CDBBEA89AFC07AFB4517D7B2DD9 /* Release-production */ = { isa = XCBuildConfiguration; @@ -28446,36 +28464,9 @@ }; name = "Release-production"; }; - 8A5131F3E75D876B85EC97F389A68808 /* Debug-production */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = F4C3D5A980B27BD2C418D61228F67F01 /* package_info_plus.release.xcconfig */; - buildSettings = { - CLANG_ENABLE_OBJC_WEAK = NO; - CODE_SIGNING_ALLOWED = NO; - CODE_SIGNING_IDENTITY = "-"; - CODE_SIGNING_REQUIRED = NO; - CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/package_info_plus"; - EXPANDED_CODE_SIGN_IDENTITY = "-"; - GCC_PREPROCESSOR_DEFINITIONS = ( - "$(inherited)", - "PERMISSION_CAMERA=1", - "PERMISSION_PHOTOS=1", - ); - IBSC_MODULE = package_info_plus; - INFOPLIST_FILE = "Target Support Files/package_info_plus/ResourceBundle-package_info_plus_privacy-package_info_plus-Info.plist"; - IPHONEOS_DEPLOYMENT_TARGET = 13.0; - PRODUCT_NAME = package_info_plus_privacy; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; - WRAPPER_EXTENSION = bundle; - }; - name = "Debug-production"; - }; 8ABF3DE78FC1BC658699DEC1BAE47E75 /* Profile */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 9D69F5F0798882A34E95D912A7DDF7B1 /* sentry_flutter.release.xcconfig */; + baseConfigurationReference = 28C6A92040B7AE9155DE2648EB0D7296 /* sentry_flutter.release.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO; @@ -28531,46 +28522,26 @@ }; name = Profile; }; - 8ACC1CC23AE8CEDE84FBA03A3D9B0BB4 /* Profile */ = { + 8AF4836E73A82B8C974DE9830EC5C78E /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 85EF9BEBA8B20A13BA96488C86CD663A /* MLKitCommon.release.xcconfig */; + baseConfigurationReference = C3A8E22467ADEB42B7D83259E1A6F078 /* Sentry.release.xcconfig */; buildSettings = { - ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; - ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; CLANG_ENABLE_OBJC_WEAK = NO; - GCC_PREPROCESSOR_DEFINITIONS = ( - "$(inherited)", - "PERMISSION_CAMERA=1", - "PERMISSION_PHOTOS=1", - ); - IPHONEOS_DEPLOYMENT_TARGET = 13.0; - LD_RUNPATH_SEARCH_PATHS = ( - "$(inherited)", - "@executable_path/Frameworks", - ); - SDKROOT = iphoneos; - TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; - }; - name = Profile; - }; - 8AE60B4BEEE99F6D654F3DDBCFC03106 /* Release-production */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = FC4CA41561F8B1B855AED3763329DD2C /* PromisesObjC.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"; + GCC_PREFIX_HEADER = "Target Support Files/Sentry/Sentry-prefix.pch"; GCC_PREPROCESSOR_DEFINITIONS = ( "$(inherited)", "PERMISSION_CAMERA=1", "PERMISSION_PHOTOS=1", ); - INFOPLIST_FILE = "Target Support Files/PromisesObjC/PromisesObjC-Info.plist"; + INFOPLIST_FILE = "Target Support Files/Sentry/Sentry-Info.plist"; INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; IPHONEOS_DEPLOYMENT_TARGET = 13.0; LD_RUNPATH_SEARCH_PATHS = ( @@ -28578,25 +28549,24 @@ "@executable_path/Frameworks", "@loader_path/Frameworks", ); - MODULEMAP_FILE = "Target Support Files/PromisesObjC/PromisesObjC.modulemap"; - PRODUCT_MODULE_NAME = FBLPromises; - PRODUCT_NAME = FBLPromises; + MODULEMAP_FILE = "Target Support Files/Sentry/Sentry.modulemap"; + PRODUCT_MODULE_NAME = Sentry; + PRODUCT_NAME = Sentry; SDKROOT = iphoneos; SKIP_INSTALL = YES; SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_VERSION = 5.0; + SWIFT_VERSION = 5.5; TARGETED_DEVICE_FAMILY = "1,2"; VALIDATE_PRODUCT = YES; VERSIONING_SYSTEM = "apple-generic"; VERSION_INFO_PREFIX = ""; }; - name = "Release-production"; + name = Release; }; - 8AF4836E73A82B8C974DE9830EC5C78E /* Release */ = { + 8B4CB2A23D54F16321BF78E6F3FF7D04 /* Profile */ = { isa = XCBuildConfiguration; - baseConfigurationReference = C3A8E22467ADEB42B7D83259E1A6F078 /* Sentry.release.xcconfig */; + baseConfigurationReference = 0E95E1622AE3A8ECD9572E38ECCC7DA7 /* GoogleToolboxForMac.release.xcconfig */; buildSettings = { - CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; @@ -28605,13 +28575,13 @@ DYLIB_COMPATIBILITY_VERSION = 1; DYLIB_CURRENT_VERSION = 1; DYLIB_INSTALL_NAME_BASE = "@rpath"; - GCC_PREFIX_HEADER = "Target Support Files/Sentry/Sentry-prefix.pch"; + GCC_PREFIX_HEADER = "Target Support Files/GoogleToolboxForMac/GoogleToolboxForMac-prefix.pch"; GCC_PREPROCESSOR_DEFINITIONS = ( "$(inherited)", "PERMISSION_CAMERA=1", "PERMISSION_PHOTOS=1", ); - INFOPLIST_FILE = "Target Support Files/Sentry/Sentry-Info.plist"; + INFOPLIST_FILE = "Target Support Files/GoogleToolboxForMac/GoogleToolboxForMac-Info.plist"; INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; IPHONEOS_DEPLOYMENT_TARGET = 13.0; LD_RUNPATH_SEARCH_PATHS = ( @@ -28619,23 +28589,23 @@ "@executable_path/Frameworks", "@loader_path/Frameworks", ); - MODULEMAP_FILE = "Target Support Files/Sentry/Sentry.modulemap"; - PRODUCT_MODULE_NAME = Sentry; - PRODUCT_NAME = Sentry; + MODULEMAP_FILE = "Target Support Files/GoogleToolboxForMac/GoogleToolboxForMac.modulemap"; + PRODUCT_MODULE_NAME = GoogleToolboxForMac; + PRODUCT_NAME = GoogleToolboxForMac; SDKROOT = iphoneos; SKIP_INSTALL = YES; SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_VERSION = 5.5; + SWIFT_VERSION = 5.0; TARGETED_DEVICE_FAMILY = "1,2"; VALIDATE_PRODUCT = YES; VERSIONING_SYSTEM = "apple-generic"; VERSION_INFO_PREFIX = ""; }; - name = Release; + name = Profile; }; 8B9826DF07E654EEFEBBCCAA6F62CD9D /* Release-staging */ = { isa = XCBuildConfiguration; - baseConfigurationReference = F4C3D5A980B27BD2C418D61228F67F01 /* package_info_plus.release.xcconfig */; + baseConfigurationReference = 6201BD6C84B86BD570988C7E3B8409CB /* package_info_plus.release.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO; @@ -28691,98 +28661,9 @@ }; name = "Release-staging"; }; - 8BDAFA1A5C0966804F57E4A6A4DF86EA /* Profile-production */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = FE5C3B02302BE4DBC83D2A553D5F5C1B /* MLKitVision.release.xcconfig */; - buildSettings = { - ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; - ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; - CLANG_ENABLE_OBJC_WEAK = NO; - GCC_PREPROCESSOR_DEFINITIONS = ( - "$(inherited)", - "PERMISSION_CAMERA=1", - "PERMISSION_PHOTOS=1", - ); - IPHONEOS_DEPLOYMENT_TARGET = 13.0; - LD_RUNPATH_SEARCH_PATHS = ( - "$(inherited)", - "@executable_path/Frameworks", - ); - SDKROOT = iphoneos; - TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; - }; - name = "Profile-production"; - }; - 8C73DFFA48E6C7280D46667DD5351B7E /* Debug-development */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 7B2F4BE2D901E9309159228CD856EBAF /* flutter_secure_storage.release.xcconfig */; - buildSettings = { - CLANG_ENABLE_OBJC_WEAK = NO; - CODE_SIGNING_ALLOWED = NO; - CODE_SIGNING_IDENTITY = "-"; - CODE_SIGNING_REQUIRED = NO; - CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/flutter_secure_storage"; - EXPANDED_CODE_SIGN_IDENTITY = "-"; - GCC_PREPROCESSOR_DEFINITIONS = ( - "$(inherited)", - "PERMISSION_CAMERA=1", - "PERMISSION_PHOTOS=1", - ); - IBSC_MODULE = flutter_secure_storage; - INFOPLIST_FILE = "Target Support Files/flutter_secure_storage/ResourceBundle-flutter_secure_storage-flutter_secure_storage-Info.plist"; - IPHONEOS_DEPLOYMENT_TARGET = 13.0; - PRODUCT_NAME = flutter_secure_storage; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; - WRAPPER_EXTENSION = bundle; - }; - name = "Debug-development"; - }; - 8C7CF7B127350FCDDF63CA1C390BF9BF /* Profile-production */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 8ABCAE069412CFA453F913E4A7E0184B /* GoogleUtilities.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"; - GCC_PREPROCESSOR_DEFINITIONS = ( - "$(inherited)", - "PERMISSION_CAMERA=1", - "PERMISSION_PHOTOS=1", - ); - INFOPLIST_FILE = "Target Support Files/GoogleUtilities/GoogleUtilities-Info.plist"; - INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; - IPHONEOS_DEPLOYMENT_TARGET = 13.0; - LD_RUNPATH_SEARCH_PATHS = ( - "$(inherited)", - "@executable_path/Frameworks", - "@loader_path/Frameworks", - ); - 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_VERSION = 5.0; - TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; - VERSIONING_SYSTEM = "apple-generic"; - VERSION_INFO_PREFIX = ""; - }; - name = "Profile-production"; - }; 8CAD99970016567F08C8D1684CD361E1 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 06772A7CF38F34E24C0E8F60729C6339 /* local_auth_darwin.release.xcconfig */; + baseConfigurationReference = 9ECF4B2E725AF88A4D8BD77668F776C4 /* local_auth_darwin.release.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO; @@ -28838,36 +28719,36 @@ }; name = Release; }; - 8D10403E50F57307886827A8F03A0FF2 /* Profile-staging */ = { + 8D0ACBED55EAF16E0CD174077B7803F1 /* Profile-production */ = { isa = XCBuildConfiguration; - baseConfigurationReference = A7D0232BFA7DB2BABBC206DCBF4E211C /* flutter_email_sender.release.xcconfig */; + baseConfigurationReference = D1CCD0C16DFF0194B0A936A205ED4ED0 /* shared_preferences_foundation.release.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; CODE_SIGNING_ALLOWED = NO; CODE_SIGNING_IDENTITY = "-"; CODE_SIGNING_REQUIRED = NO; - CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/flutter_email_sender"; + CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/shared_preferences_foundation"; EXPANDED_CODE_SIGN_IDENTITY = "-"; GCC_PREPROCESSOR_DEFINITIONS = ( "$(inherited)", "PERMISSION_CAMERA=1", "PERMISSION_PHOTOS=1", ); - IBSC_MODULE = flutter_email_sender; - INFOPLIST_FILE = "Target Support Files/flutter_email_sender/ResourceBundle-flutter_email_sender-flutter_email_sender-Info.plist"; + IBSC_MODULE = shared_preferences_foundation; + INFOPLIST_FILE = "Target Support Files/shared_preferences_foundation/ResourceBundle-shared_preferences_foundation_privacy-shared_preferences_foundation-Info.plist"; IPHONEOS_DEPLOYMENT_TARGET = 13.0; - PRODUCT_NAME = flutter_email_sender; + PRODUCT_NAME = shared_preferences_foundation_privacy; SDKROOT = iphoneos; SKIP_INSTALL = YES; TARGETED_DEVICE_FAMILY = "1,2"; VALIDATE_PRODUCT = YES; WRAPPER_EXTENSION = bundle; }; - name = "Profile-staging"; + name = "Profile-production"; }; 8D5B8DAF5F44D9DE3F09AF937CC2AA0B /* Debug-production */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 86E540DA830E020FCC7DEA27000E1A98 /* shared_preferences_foundation.release.xcconfig */; + baseConfigurationReference = D1CCD0C16DFF0194B0A936A205ED4ED0 /* shared_preferences_foundation.release.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO; @@ -28957,6 +28838,56 @@ }; name = "Debug-development"; }; + 8DA7D694A4071C0173D629E6947FA215 /* Profile */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 26DCE60E629963FB754A022AED7ACC73 /* MLImage.release.xcconfig */; + buildSettings = { + ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; + ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; + CLANG_ENABLE_OBJC_WEAK = NO; + GCC_PREPROCESSOR_DEFINITIONS = ( + "$(inherited)", + "PERMISSION_CAMERA=1", + "PERMISSION_PHOTOS=1", + ); + IPHONEOS_DEPLOYMENT_TARGET = 13.0; + LD_RUNPATH_SEARCH_PATHS = ( + "$(inherited)", + "@executable_path/Frameworks", + ); + SDKROOT = iphoneos; + TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; + }; + name = Profile; + }; + 8DB68F46E0C9E2C4D562BFD655F5BF7D /* Profile-development */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 59E64776226CA679807D58D84423DF5F /* flutter_email_sender.release.xcconfig */; + buildSettings = { + CLANG_ENABLE_OBJC_WEAK = NO; + CODE_SIGNING_ALLOWED = NO; + CODE_SIGNING_IDENTITY = "-"; + CODE_SIGNING_REQUIRED = NO; + CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/flutter_email_sender"; + EXPANDED_CODE_SIGN_IDENTITY = "-"; + GCC_PREPROCESSOR_DEFINITIONS = ( + "$(inherited)", + "PERMISSION_CAMERA=1", + "PERMISSION_PHOTOS=1", + ); + IBSC_MODULE = flutter_email_sender; + INFOPLIST_FILE = "Target Support Files/flutter_email_sender/ResourceBundle-flutter_email_sender-flutter_email_sender-Info.plist"; + IPHONEOS_DEPLOYMENT_TARGET = 13.0; + PRODUCT_NAME = flutter_email_sender; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; + WRAPPER_EXTENSION = bundle; + }; + name = "Profile-development"; + }; 8DE5143C03248BB6CD542DE3963D6F3A /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { @@ -29023,9 +28954,36 @@ }; name = Debug; }; + 8E66BDB4C13A7E60823FE2888A88F419 /* Debug-development */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 2529F7B6D57D43838BFCB332D2EDFE47 /* path_provider_foundation.release.xcconfig */; + buildSettings = { + CLANG_ENABLE_OBJC_WEAK = NO; + CODE_SIGNING_ALLOWED = NO; + CODE_SIGNING_IDENTITY = "-"; + CODE_SIGNING_REQUIRED = NO; + CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/path_provider_foundation"; + EXPANDED_CODE_SIGN_IDENTITY = "-"; + GCC_PREPROCESSOR_DEFINITIONS = ( + "$(inherited)", + "PERMISSION_CAMERA=1", + "PERMISSION_PHOTOS=1", + ); + IBSC_MODULE = path_provider_foundation; + INFOPLIST_FILE = "Target Support Files/path_provider_foundation/ResourceBundle-path_provider_foundation_privacy-path_provider_foundation-Info.plist"; + IPHONEOS_DEPLOYMENT_TARGET = 13.0; + PRODUCT_NAME = path_provider_foundation_privacy; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; + WRAPPER_EXTENSION = bundle; + }; + name = "Debug-development"; + }; 8EAE2BE5967180D239A1BF3E7653408E /* Stage-production */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 9311BBA346794A168AC09B1625AB1683 /* path_provider_foundation.release.xcconfig */; + baseConfigurationReference = 2529F7B6D57D43838BFCB332D2EDFE47 /* path_provider_foundation.release.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO; @@ -29079,7 +29037,7 @@ }; 8EDEEA112AC1DC024F47E505B6B217F1 /* Profile-staging */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 06772A7CF38F34E24C0E8F60729C6339 /* local_auth_darwin.release.xcconfig */; + baseConfigurationReference = 9ECF4B2E725AF88A4D8BD77668F776C4 /* local_auth_darwin.release.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO; @@ -29195,140 +29153,140 @@ }; name = Profile; }; - 8FC430A82D939A9E50CA1A6508DC5FDB /* Profile-development */ = { + 8FB846F206FEAC12746BAC27AD68E365 /* Debug-development */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 52D3A45B276300DECC1173BE9A70A0A1 /* GoogleMLKit.release.xcconfig */; + baseConfigurationReference = 57D6AA21B16FC3FF93AD29A67F768BB2 /* flutter_native_splash.release.xcconfig */; buildSettings = { - ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; - ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; CLANG_ENABLE_OBJC_WEAK = NO; + CODE_SIGNING_ALLOWED = NO; + CODE_SIGNING_IDENTITY = "-"; + CODE_SIGNING_REQUIRED = NO; + CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/flutter_native_splash"; + EXPANDED_CODE_SIGN_IDENTITY = "-"; GCC_PREPROCESSOR_DEFINITIONS = ( "$(inherited)", "PERMISSION_CAMERA=1", "PERMISSION_PHOTOS=1", ); + IBSC_MODULE = flutter_native_splash; + INFOPLIST_FILE = "Target Support Files/flutter_native_splash/ResourceBundle-flutter_native_splash_privacy-flutter_native_splash-Info.plist"; IPHONEOS_DEPLOYMENT_TARGET = 13.0; - LD_RUNPATH_SEARCH_PATHS = ( - "$(inherited)", - "@executable_path/Frameworks", - ); + PRODUCT_NAME = flutter_native_splash_privacy; SDKROOT = iphoneos; + SKIP_INSTALL = YES; TARGETED_DEVICE_FAMILY = "1,2"; VALIDATE_PRODUCT = YES; + WRAPPER_EXTENSION = bundle; }; - name = "Profile-development"; + name = "Debug-development"; }; - 90C88B162D09E0E4AB599CBCA9C448F2 /* Profile */ = { + 8FC430A82D939A9E50CA1A6508DC5FDB /* Profile-development */ = { isa = XCBuildConfiguration; - baseConfigurationReference = B587A9A0D5365CAA9B8A2CC41EB17830 /* nanopb.release.xcconfig */; + baseConfigurationReference = 52D3A45B276300DECC1173BE9A70A0A1 /* GoogleMLKit.release.xcconfig */; buildSettings = { + ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; + ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; CLANG_ENABLE_OBJC_WEAK = NO; - CODE_SIGNING_ALLOWED = NO; - CODE_SIGNING_IDENTITY = "-"; - CODE_SIGNING_REQUIRED = NO; - CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/nanopb"; - EXPANDED_CODE_SIGN_IDENTITY = "-"; GCC_PREPROCESSOR_DEFINITIONS = ( "$(inherited)", "PERMISSION_CAMERA=1", "PERMISSION_PHOTOS=1", ); - IBSC_MODULE = nanopb; - INFOPLIST_FILE = "Target Support Files/nanopb/ResourceBundle-nanopb_Privacy-nanopb-Info.plist"; IPHONEOS_DEPLOYMENT_TARGET = 13.0; - PRODUCT_NAME = nanopb_Privacy; + LD_RUNPATH_SEARCH_PATHS = ( + "$(inherited)", + "@executable_path/Frameworks", + ); SDKROOT = iphoneos; - SKIP_INSTALL = YES; TARGETED_DEVICE_FAMILY = "1,2"; VALIDATE_PRODUCT = YES; - WRAPPER_EXTENSION = bundle; }; - name = Profile; + name = "Profile-development"; }; - 90DE20FB82DD1E10F215BD2E43C7EFD8 /* Stage-production */ = { + 903EF22C825822D7261B665A0EA6F0D6 /* Release-production */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 73DB9045D22A4FBE50F8FACF34C6F052 /* url_launcher_ios.release.xcconfig */; + baseConfigurationReference = B587A9A0D5365CAA9B8A2CC41EB17830 /* nanopb.release.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; CODE_SIGNING_ALLOWED = NO; CODE_SIGNING_IDENTITY = "-"; CODE_SIGNING_REQUIRED = NO; - CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/url_launcher_ios"; + CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/nanopb"; EXPANDED_CODE_SIGN_IDENTITY = "-"; GCC_PREPROCESSOR_DEFINITIONS = ( "$(inherited)", "PERMISSION_CAMERA=1", "PERMISSION_PHOTOS=1", ); - IBSC_MODULE = url_launcher_ios; - INFOPLIST_FILE = "Target Support Files/url_launcher_ios/ResourceBundle-url_launcher_ios_privacy-url_launcher_ios-Info.plist"; + IBSC_MODULE = nanopb; + INFOPLIST_FILE = "Target Support Files/nanopb/ResourceBundle-nanopb_Privacy-nanopb-Info.plist"; IPHONEOS_DEPLOYMENT_TARGET = 13.0; - PRODUCT_NAME = url_launcher_ios_privacy; + PRODUCT_NAME = nanopb_Privacy; SDKROOT = iphoneos; SKIP_INSTALL = YES; TARGETED_DEVICE_FAMILY = "1,2"; VALIDATE_PRODUCT = YES; WRAPPER_EXTENSION = bundle; }; - name = "Stage-production"; + name = "Release-production"; }; - 90EFEF1F2F3B40390A66E1F904D0F6B6 /* Debug-development */ = { + 906F8B5F2AEE14B58A7911196615D6CE /* Debug-production */ = { isa = XCBuildConfiguration; - baseConfigurationReference = B91357BF97DBAECE656386331F10CCFD /* sqflite.release.xcconfig */; + baseConfigurationReference = 59E64776226CA679807D58D84423DF5F /* flutter_email_sender.release.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; CODE_SIGNING_ALLOWED = NO; CODE_SIGNING_IDENTITY = "-"; CODE_SIGNING_REQUIRED = NO; - CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/sqflite"; + CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/flutter_email_sender"; EXPANDED_CODE_SIGN_IDENTITY = "-"; GCC_PREPROCESSOR_DEFINITIONS = ( "$(inherited)", "PERMISSION_CAMERA=1", "PERMISSION_PHOTOS=1", ); - IBSC_MODULE = sqflite; - INFOPLIST_FILE = "Target Support Files/sqflite/ResourceBundle-sqflite_darwin_privacy-sqflite-Info.plist"; + IBSC_MODULE = flutter_email_sender; + INFOPLIST_FILE = "Target Support Files/flutter_email_sender/ResourceBundle-flutter_email_sender-flutter_email_sender-Info.plist"; IPHONEOS_DEPLOYMENT_TARGET = 13.0; - PRODUCT_NAME = sqflite_darwin_privacy; + PRODUCT_NAME = flutter_email_sender; SDKROOT = iphoneos; SKIP_INSTALL = YES; TARGETED_DEVICE_FAMILY = "1,2"; VALIDATE_PRODUCT = YES; WRAPPER_EXTENSION = bundle; }; - name = "Debug-development"; + name = "Debug-production"; }; - 9148AE786D2C24E17B28889197178831 /* Profile */ = { + 9075781B6E57BA45EB0723A18FECC184 /* Profile-staging */ = { isa = XCBuildConfiguration; - baseConfigurationReference = C3A8E22467ADEB42B7D83259E1A6F078 /* Sentry.release.xcconfig */; + baseConfigurationReference = FC4CA41561F8B1B855AED3763329DD2C /* PromisesObjC.release.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; CODE_SIGNING_ALLOWED = NO; CODE_SIGNING_IDENTITY = "-"; CODE_SIGNING_REQUIRED = NO; - CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/Sentry"; + CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/PromisesObjC"; EXPANDED_CODE_SIGN_IDENTITY = "-"; GCC_PREPROCESSOR_DEFINITIONS = ( "$(inherited)", "PERMISSION_CAMERA=1", "PERMISSION_PHOTOS=1", ); - IBSC_MODULE = Sentry; - INFOPLIST_FILE = "Target Support Files/Sentry/ResourceBundle-Sentry-Sentry-Info.plist"; + IBSC_MODULE = FBLPromises; + INFOPLIST_FILE = "Target Support Files/PromisesObjC/ResourceBundle-FBLPromises_Privacy-PromisesObjC-Info.plist"; IPHONEOS_DEPLOYMENT_TARGET = 13.0; - PRODUCT_NAME = Sentry; + PRODUCT_NAME = FBLPromises_Privacy; SDKROOT = iphoneos; SKIP_INSTALL = YES; TARGETED_DEVICE_FAMILY = "1,2"; VALIDATE_PRODUCT = YES; WRAPPER_EXTENSION = bundle; }; - name = Profile; + name = "Profile-staging"; }; 9176BD141A76819305F6C18A76B08584 /* Debug-development */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 1E47B40DD78F33D7394C9CDADE9B41A7 /* share_plus.release.xcconfig */; + baseConfigurationReference = 196B9320A9BD7C09E7C5420F49D709B3 /* share_plus.release.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO; @@ -29386,7 +29344,7 @@ }; 918F41E34C7E4FC92098A58D7B346335 /* Profile-development */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 9311BBA346794A168AC09B1625AB1683 /* path_provider_foundation.release.xcconfig */; + baseConfigurationReference = 2529F7B6D57D43838BFCB332D2EDFE47 /* path_provider_foundation.release.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO; @@ -29438,9 +29396,36 @@ }; name = "Profile-development"; }; - 937C9EC51A12D4908947DBA027AEC0D4 /* Debug */ = { + 91BD9723FE4D35ED9E721F1D924F3110 /* Debug-development */ = { isa = XCBuildConfiguration; - baseConfigurationReference = E2D59994DB2DF47504EA20EBB04953C4 /* MLKitCommon.debug.xcconfig */; + baseConfigurationReference = FC4CA41561F8B1B855AED3763329DD2C /* PromisesObjC.release.xcconfig */; + buildSettings = { + CLANG_ENABLE_OBJC_WEAK = NO; + CODE_SIGNING_ALLOWED = NO; + CODE_SIGNING_IDENTITY = "-"; + CODE_SIGNING_REQUIRED = NO; + CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/PromisesObjC"; + EXPANDED_CODE_SIGN_IDENTITY = "-"; + GCC_PREPROCESSOR_DEFINITIONS = ( + "$(inherited)", + "PERMISSION_CAMERA=1", + "PERMISSION_PHOTOS=1", + ); + IBSC_MODULE = FBLPromises; + INFOPLIST_FILE = "Target Support Files/PromisesObjC/ResourceBundle-FBLPromises_Privacy-PromisesObjC-Info.plist"; + IPHONEOS_DEPLOYMENT_TARGET = 13.0; + PRODUCT_NAME = FBLPromises_Privacy; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; + WRAPPER_EXTENSION = bundle; + }; + name = "Debug-development"; + }; + 923FE9EF422798E6A5C881FE2CA50470 /* Profile-staging */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 5D2B88AD25CD5EBE586D760474336767 /* MLKitBarcodeScanning.release.xcconfig */; buildSettings = { ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; @@ -29455,15 +29440,130 @@ "$(inherited)", "@executable_path/Frameworks", ); - ONLY_ACTIVE_ARCH = NO; SDKROOT = iphoneos; TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; }; - name = Debug; + name = "Profile-staging"; + }; + 929A760F7DC02E338C81D3A3955F6F39 /* Debug-staging */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 26DCE60E629963FB754A022AED7ACC73 /* MLImage.release.xcconfig */; + buildSettings = { + ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; + ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; + CLANG_ENABLE_OBJC_WEAK = NO; + GCC_PREPROCESSOR_DEFINITIONS = ( + "$(inherited)", + "PERMISSION_CAMERA=1", + "PERMISSION_PHOTOS=1", + ); + IPHONEOS_DEPLOYMENT_TARGET = 13.0; + LD_RUNPATH_SEARCH_PATHS = ( + "$(inherited)", + "@executable_path/Frameworks", + ); + SDKROOT = iphoneos; + TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; + }; + name = "Debug-staging"; + }; + 92B918C466E468937CC0313B38CA3B11 /* Release-staging */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = B3F81CBF23C2B71680A734B4B74EA6EF /* sqflite.release.xcconfig */; + buildSettings = { + CLANG_ENABLE_OBJC_WEAK = NO; + CODE_SIGNING_ALLOWED = NO; + CODE_SIGNING_IDENTITY = "-"; + CODE_SIGNING_REQUIRED = NO; + CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/sqflite"; + EXPANDED_CODE_SIGN_IDENTITY = "-"; + GCC_PREPROCESSOR_DEFINITIONS = ( + "$(inherited)", + "PERMISSION_CAMERA=1", + "PERMISSION_PHOTOS=1", + ); + IBSC_MODULE = sqflite; + INFOPLIST_FILE = "Target Support Files/sqflite/ResourceBundle-sqflite_darwin_privacy-sqflite-Info.plist"; + IPHONEOS_DEPLOYMENT_TARGET = 13.0; + PRODUCT_NAME = sqflite_darwin_privacy; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; + WRAPPER_EXTENSION = bundle; + }; + name = "Release-staging"; + }; + 93370B236ABBE068CD8401F540003C19 /* Release-production */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = FC4CA41561F8B1B855AED3763329DD2C /* 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"; + GCC_PREPROCESSOR_DEFINITIONS = ( + "$(inherited)", + "PERMISSION_CAMERA=1", + "PERMISSION_PHOTOS=1", + ); + INFOPLIST_FILE = "Target Support Files/PromisesObjC/PromisesObjC-Info.plist"; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; + IPHONEOS_DEPLOYMENT_TARGET = 13.0; + LD_RUNPATH_SEARCH_PATHS = ( + "$(inherited)", + "@executable_path/Frameworks", + "@loader_path/Frameworks", + ); + 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_VERSION = 5.0; + TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; + VERSIONING_SYSTEM = "apple-generic"; + VERSION_INFO_PREFIX = ""; + }; + name = "Release-production"; + }; + 93884099078EB1AA43E0452ADA5CC9E6 /* Stage-production */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 196B9320A9BD7C09E7C5420F49D709B3 /* share_plus.release.xcconfig */; + buildSettings = { + CLANG_ENABLE_OBJC_WEAK = NO; + CODE_SIGNING_ALLOWED = NO; + CODE_SIGNING_IDENTITY = "-"; + CODE_SIGNING_REQUIRED = NO; + CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/share_plus"; + EXPANDED_CODE_SIGN_IDENTITY = "-"; + GCC_PREPROCESSOR_DEFINITIONS = ( + "$(inherited)", + "PERMISSION_CAMERA=1", + "PERMISSION_PHOTOS=1", + ); + IBSC_MODULE = share_plus; + INFOPLIST_FILE = "Target Support Files/share_plus/ResourceBundle-share_plus_privacy-share_plus-Info.plist"; + IPHONEOS_DEPLOYMENT_TARGET = 13.0; + PRODUCT_NAME = share_plus_privacy; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; + WRAPPER_EXTENSION = bundle; + }; + name = "Stage-production"; }; 939E31A0D89C834CD43AFB4B88173DD4 /* Profile-production */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 86E540DA830E020FCC7DEA27000E1A98 /* shared_preferences_foundation.release.xcconfig */; + baseConfigurationReference = D1CCD0C16DFF0194B0A936A205ED4ED0 /* shared_preferences_foundation.release.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO; @@ -29514,11 +29614,10 @@ }; name = "Profile-production"; }; - 948EC2580B74CDB1C4A14D4D71846AD9 /* Profile-production */ = { + 93B381698C31EC8504253F1D4162D9E2 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 8ABCAE069412CFA453F913E4A7E0184B /* GoogleUtilities.release.xcconfig */; + baseConfigurationReference = 09591BCE938F1C26C6D192C1AB4F10A6 /* GoogleUtilities.debug.xcconfig */; buildSettings = { - CLANG_ENABLE_OBJC_WEAK = NO; CODE_SIGNING_ALLOWED = NO; CODE_SIGNING_IDENTITY = "-"; CODE_SIGNING_REQUIRED = NO; @@ -29532,72 +29631,108 @@ IBSC_MODULE = GoogleUtilities; INFOPLIST_FILE = "Target Support Files/GoogleUtilities/ResourceBundle-GoogleUtilities_Privacy-GoogleUtilities-Info.plist"; IPHONEOS_DEPLOYMENT_TARGET = 13.0; + ONLY_ACTIVE_ARCH = NO; PRODUCT_NAME = GoogleUtilities_Privacy; SDKROOT = iphoneos; SKIP_INSTALL = YES; TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; WRAPPER_EXTENSION = bundle; }; - name = "Profile-production"; + name = Debug; }; - 952BF8B0478580DA1343739B879EAB4F /* Stage-production */ = { + 9409CD1E2C096081021C5F69683F1910 /* Debug-production */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 86E540DA830E020FCC7DEA27000E1A98 /* shared_preferences_foundation.release.xcconfig */; + baseConfigurationReference = B3F81CBF23C2B71680A734B4B74EA6EF /* sqflite.release.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; CODE_SIGNING_ALLOWED = NO; CODE_SIGNING_IDENTITY = "-"; CODE_SIGNING_REQUIRED = NO; - CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/shared_preferences_foundation"; + CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/sqflite"; EXPANDED_CODE_SIGN_IDENTITY = "-"; GCC_PREPROCESSOR_DEFINITIONS = ( "$(inherited)", "PERMISSION_CAMERA=1", "PERMISSION_PHOTOS=1", ); - IBSC_MODULE = shared_preferences_foundation; - INFOPLIST_FILE = "Target Support Files/shared_preferences_foundation/ResourceBundle-shared_preferences_foundation_privacy-shared_preferences_foundation-Info.plist"; + IBSC_MODULE = sqflite; + INFOPLIST_FILE = "Target Support Files/sqflite/ResourceBundle-sqflite_darwin_privacy-sqflite-Info.plist"; IPHONEOS_DEPLOYMENT_TARGET = 13.0; - PRODUCT_NAME = shared_preferences_foundation_privacy; + PRODUCT_NAME = sqflite_darwin_privacy; SDKROOT = iphoneos; SKIP_INSTALL = YES; TARGETED_DEVICE_FAMILY = "1,2"; VALIDATE_PRODUCT = YES; WRAPPER_EXTENSION = bundle; }; - name = "Stage-production"; + name = "Debug-production"; }; - 9557E81093B64D4C14EB5C23B87A0E9C /* Stage-production */ = { + 94792EBD6354FA0E07F4A79A430BDEE4 /* Stage-production */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 19CE9AC8B13646CC03FBC77F131FF183 /* GoogleDataTransport.release.xcconfig */; + baseConfigurationReference = FE5C3B02302BE4DBC83D2A553D5F5C1B /* MLKitVision.release.xcconfig */; buildSettings = { + ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; + ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; CLANG_ENABLE_OBJC_WEAK = NO; - CODE_SIGNING_ALLOWED = NO; - CODE_SIGNING_IDENTITY = "-"; - CODE_SIGNING_REQUIRED = NO; - CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/GoogleDataTransport"; - EXPANDED_CODE_SIGN_IDENTITY = "-"; GCC_PREPROCESSOR_DEFINITIONS = ( "$(inherited)", "PERMISSION_CAMERA=1", "PERMISSION_PHOTOS=1", ); - IBSC_MODULE = GoogleDataTransport; - INFOPLIST_FILE = "Target Support Files/GoogleDataTransport/ResourceBundle-GoogleDataTransport_Privacy-GoogleDataTransport-Info.plist"; IPHONEOS_DEPLOYMENT_TARGET = 13.0; - PRODUCT_NAME = GoogleDataTransport_Privacy; + LD_RUNPATH_SEARCH_PATHS = ( + "$(inherited)", + "@executable_path/Frameworks", + ); SDKROOT = iphoneos; - SKIP_INSTALL = YES; TARGETED_DEVICE_FAMILY = "1,2"; VALIDATE_PRODUCT = YES; - WRAPPER_EXTENSION = bundle; }; name = "Stage-production"; }; + 95383F84DD2EC9EE1342B824022FA9DA /* Debug-development */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 0E95E1622AE3A8ECD9572E38ECCC7DA7 /* GoogleToolboxForMac.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"; + GCC_PREFIX_HEADER = "Target Support Files/GoogleToolboxForMac/GoogleToolboxForMac-prefix.pch"; + GCC_PREPROCESSOR_DEFINITIONS = ( + "$(inherited)", + "PERMISSION_CAMERA=1", + "PERMISSION_PHOTOS=1", + ); + INFOPLIST_FILE = "Target Support Files/GoogleToolboxForMac/GoogleToolboxForMac-Info.plist"; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; + IPHONEOS_DEPLOYMENT_TARGET = 13.0; + LD_RUNPATH_SEARCH_PATHS = ( + "$(inherited)", + "@executable_path/Frameworks", + "@loader_path/Frameworks", + ); + MODULEMAP_FILE = "Target Support Files/GoogleToolboxForMac/GoogleToolboxForMac.modulemap"; + PRODUCT_MODULE_NAME = GoogleToolboxForMac; + PRODUCT_NAME = GoogleToolboxForMac; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; + SWIFT_VERSION = 5.0; + TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; + VERSIONING_SYSTEM = "apple-generic"; + VERSION_INFO_PREFIX = ""; + }; + name = "Debug-development"; + }; 957642901C5D942A689225ABCF53699F /* Debug-production */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 9D69F5F0798882A34E95D912A7DDF7B1 /* sentry_flutter.release.xcconfig */; + baseConfigurationReference = 28C6A92040B7AE9155DE2648EB0D7296 /* sentry_flutter.release.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO; @@ -29655,7 +29790,7 @@ }; 95A9859ADACC6049B8E1BC284B7F4A45 /* Debug-production */ = { isa = XCBuildConfiguration; - baseConfigurationReference = B60761FA10DAC783EF5D7E4C1574226A /* connectivity_plus.release.xcconfig */; + baseConfigurationReference = 0F62AA5AF0EE048AB478074EDD1A2CD4 /* connectivity_plus.release.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO; @@ -29771,125 +29906,34 @@ }; name = Debug; }; - 96121734EE08D2750658D5DA633480D7 /* Debug-staging */ = { + 978F78CED7501B5D0A58BCFE9A8E6BB0 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = C3A8E22467ADEB42B7D83259E1A6F078 /* Sentry.release.xcconfig */; - buildSettings = { - CLANG_ENABLE_OBJC_WEAK = NO; - CODE_SIGNING_ALLOWED = NO; - CODE_SIGNING_IDENTITY = "-"; - CODE_SIGNING_REQUIRED = NO; - CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/Sentry"; - EXPANDED_CODE_SIGN_IDENTITY = "-"; - GCC_PREPROCESSOR_DEFINITIONS = ( - "$(inherited)", - "PERMISSION_CAMERA=1", - "PERMISSION_PHOTOS=1", - ); - IBSC_MODULE = Sentry; - INFOPLIST_FILE = "Target Support Files/Sentry/ResourceBundle-Sentry-Sentry-Info.plist"; - IPHONEOS_DEPLOYMENT_TARGET = 13.0; - PRODUCT_NAME = Sentry; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; - WRAPPER_EXTENSION = bundle; - }; - name = "Debug-staging"; - }; - 962D1B9FDD7F835772AAAD47D3719CAD /* Profile */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = FE5C3B02302BE4DBC83D2A553D5F5C1B /* MLKitVision.release.xcconfig */; - buildSettings = { - ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; - ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; - CLANG_ENABLE_OBJC_WEAK = NO; - GCC_PREPROCESSOR_DEFINITIONS = ( - "$(inherited)", - "PERMISSION_CAMERA=1", - "PERMISSION_PHOTOS=1", - ); - IPHONEOS_DEPLOYMENT_TARGET = 13.0; - LD_RUNPATH_SEARCH_PATHS = ( - "$(inherited)", - "@executable_path/Frameworks", - ); - SDKROOT = iphoneos; - TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; - }; - name = Profile; - }; - 96E47D3FEC6EC8816702141A845C4D37 /* Release-staging */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 06772A7CF38F34E24C0E8F60729C6339 /* local_auth_darwin.release.xcconfig */; + baseConfigurationReference = 8ABCAE069412CFA453F913E4A7E0184B /* GoogleUtilities.release.xcconfig */; buildSettings = { - CLANG_ENABLE_OBJC_WEAK = NO; CODE_SIGNING_ALLOWED = NO; CODE_SIGNING_IDENTITY = "-"; CODE_SIGNING_REQUIRED = NO; - CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/local_auth_darwin"; + CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/GoogleUtilities"; EXPANDED_CODE_SIGN_IDENTITY = "-"; GCC_PREPROCESSOR_DEFINITIONS = ( "$(inherited)", "PERMISSION_CAMERA=1", "PERMISSION_PHOTOS=1", ); - IBSC_MODULE = local_auth_darwin; - INFOPLIST_FILE = "Target Support Files/local_auth_darwin/ResourceBundle-local_auth_darwin_privacy-local_auth_darwin-Info.plist"; + IBSC_MODULE = GoogleUtilities; + INFOPLIST_FILE = "Target Support Files/GoogleUtilities/ResourceBundle-GoogleUtilities_Privacy-GoogleUtilities-Info.plist"; IPHONEOS_DEPLOYMENT_TARGET = 13.0; - PRODUCT_NAME = local_auth_darwin_privacy; + PRODUCT_NAME = GoogleUtilities_Privacy; SDKROOT = iphoneos; SKIP_INSTALL = YES; TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; WRAPPER_EXTENSION = bundle; }; - name = "Release-staging"; - }; - 97695A29B214CC8204719B66FB0B972B /* Debug-staging */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 8ABCAE069412CFA453F913E4A7E0184B /* GoogleUtilities.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"; - GCC_PREPROCESSOR_DEFINITIONS = ( - "$(inherited)", - "PERMISSION_CAMERA=1", - "PERMISSION_PHOTOS=1", - ); - INFOPLIST_FILE = "Target Support Files/GoogleUtilities/GoogleUtilities-Info.plist"; - INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; - IPHONEOS_DEPLOYMENT_TARGET = 13.0; - LD_RUNPATH_SEARCH_PATHS = ( - "$(inherited)", - "@executable_path/Frameworks", - "@loader_path/Frameworks", - ); - 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_VERSION = 5.0; - TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; - VERSIONING_SYSTEM = "apple-generic"; - VERSION_INFO_PREFIX = ""; - }; - name = "Debug-staging"; + name = Release; }; 985B6F7EC8B7E0C17919FBA39FE19754 /* Profile */ = { isa = XCBuildConfiguration; - baseConfigurationReference = A7D0232BFA7DB2BABBC206DCBF4E211C /* flutter_email_sender.release.xcconfig */; + baseConfigurationReference = 59E64776226CA679807D58D84423DF5F /* flutter_email_sender.release.xcconfig */; buildSettings = { CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -29945,59 +29989,9 @@ }; name = Profile; }; - 987758A72AD54BA3A61F87C1C78D1F7A /* Stage-production */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = FC4CA41561F8B1B855AED3763329DD2C /* PromisesObjC.release.xcconfig */; - buildSettings = { - CLANG_ENABLE_OBJC_WEAK = NO; - CODE_SIGNING_ALLOWED = NO; - CODE_SIGNING_IDENTITY = "-"; - CODE_SIGNING_REQUIRED = NO; - CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/PromisesObjC"; - EXPANDED_CODE_SIGN_IDENTITY = "-"; - GCC_PREPROCESSOR_DEFINITIONS = ( - "$(inherited)", - "PERMISSION_CAMERA=1", - "PERMISSION_PHOTOS=1", - ); - IBSC_MODULE = FBLPromises; - INFOPLIST_FILE = "Target Support Files/PromisesObjC/ResourceBundle-FBLPromises_Privacy-PromisesObjC-Info.plist"; - IPHONEOS_DEPLOYMENT_TARGET = 13.0; - PRODUCT_NAME = FBLPromises_Privacy; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; - WRAPPER_EXTENSION = bundle; - }; - name = "Stage-production"; - }; - 9898FC36A6278C0A001246C6ABF4C824 /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 2C5957FCE912B5945FE204322A7DE0C5 /* MLKitVision.debug.xcconfig */; - buildSettings = { - ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; - ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; - CLANG_ENABLE_OBJC_WEAK = NO; - GCC_PREPROCESSOR_DEFINITIONS = ( - "$(inherited)", - "PERMISSION_CAMERA=1", - "PERMISSION_PHOTOS=1", - ); - IPHONEOS_DEPLOYMENT_TARGET = 13.0; - LD_RUNPATH_SEARCH_PATHS = ( - "$(inherited)", - "@executable_path/Frameworks", - ); - ONLY_ACTIVE_ARCH = NO; - SDKROOT = iphoneos; - TARGETED_DEVICE_FAMILY = "1,2"; - }; - name = Debug; - }; 98A817F89E5E445A94A885029A6FC744 /* Debug-production */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 7B2F4BE2D901E9309159228CD856EBAF /* flutter_secure_storage.release.xcconfig */; + baseConfigurationReference = 13146A48D1544CF0CF218B3A514C848E /* flutter_secure_storage.release.xcconfig */; buildSettings = { CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -30052,9 +30046,9 @@ }; name = "Debug-production"; }; - 98BD71457FB1963712B3883AF942E90E /* Profile-staging */ = { + 994EDEA33D0F661373B5EFB4074022F2 /* Debug-production */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 7B2F4BE2D901E9309159228CD856EBAF /* flutter_secure_storage.release.xcconfig */; + baseConfigurationReference = 13146A48D1544CF0CF218B3A514C848E /* flutter_secure_storage.release.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; CODE_SIGNING_ALLOWED = NO; @@ -30077,34 +30071,59 @@ VALIDATE_PRODUCT = YES; WRAPPER_EXTENSION = bundle; }; - name = "Profile-staging"; + name = "Debug-production"; + }; + 99BBCD6047BD85B53D053F3B3A4E9DC7 /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 0F62AA5AF0EE048AB478074EDD1A2CD4 /* connectivity_plus.release.xcconfig */; + buildSettings = { + CODE_SIGNING_ALLOWED = NO; + CODE_SIGNING_IDENTITY = "-"; + CODE_SIGNING_REQUIRED = NO; + CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/connectivity_plus"; + EXPANDED_CODE_SIGN_IDENTITY = "-"; + GCC_PREPROCESSOR_DEFINITIONS = ( + "$(inherited)", + "PERMISSION_CAMERA=1", + "PERMISSION_PHOTOS=1", + ); + IBSC_MODULE = connectivity_plus; + INFOPLIST_FILE = "Target Support Files/connectivity_plus/ResourceBundle-connectivity_plus_privacy-connectivity_plus-Info.plist"; + IPHONEOS_DEPLOYMENT_TARGET = 13.0; + PRODUCT_NAME = connectivity_plus_privacy; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + TARGETED_DEVICE_FAMILY = "1,2"; + WRAPPER_EXTENSION = bundle; + }; + name = Release; }; - 98D5D5607D664DEE4DFAD39B653C266D /* Profile-development */ = { + 9A44487591710D37A6351DB938D0C872 /* Release-development */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 1E47B40DD78F33D7394C9CDADE9B41A7 /* share_plus.release.xcconfig */; + baseConfigurationReference = 2529F7B6D57D43838BFCB332D2EDFE47 /* path_provider_foundation.release.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; CODE_SIGNING_ALLOWED = NO; CODE_SIGNING_IDENTITY = "-"; CODE_SIGNING_REQUIRED = NO; - CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/share_plus"; + CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/path_provider_foundation"; EXPANDED_CODE_SIGN_IDENTITY = "-"; GCC_PREPROCESSOR_DEFINITIONS = ( "$(inherited)", "PERMISSION_CAMERA=1", "PERMISSION_PHOTOS=1", ); - IBSC_MODULE = share_plus; - INFOPLIST_FILE = "Target Support Files/share_plus/ResourceBundle-share_plus_privacy-share_plus-Info.plist"; + IBSC_MODULE = path_provider_foundation; + INFOPLIST_FILE = "Target Support Files/path_provider_foundation/ResourceBundle-path_provider_foundation_privacy-path_provider_foundation-Info.plist"; IPHONEOS_DEPLOYMENT_TARGET = 13.0; - PRODUCT_NAME = share_plus_privacy; + PRODUCT_NAME = path_provider_foundation_privacy; SDKROOT = iphoneos; SKIP_INSTALL = YES; TARGETED_DEVICE_FAMILY = "1,2"; VALIDATE_PRODUCT = YES; WRAPPER_EXTENSION = bundle; }; - name = "Profile-development"; + name = "Release-development"; }; 9A5C7C9D0D1295B04FA93334B207FD8C /* Debug-staging */ = { isa = XCBuildConfiguration; @@ -30145,35 +30164,36 @@ }; name = "Debug-staging"; }; - 9A88BCF370AE6FDD348913F8C5F1D5A3 /* Debug */ = { + 9AF5FE0170BB2731C58409D35D34E524 /* Debug-staging */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 412060A2F3DC91E4FB221A1795BD33D5 /* GoogleDataTransport.debug.xcconfig */; + baseConfigurationReference = 8ABCAE069412CFA453F913E4A7E0184B /* GoogleUtilities.release.xcconfig */; buildSettings = { + CLANG_ENABLE_OBJC_WEAK = NO; CODE_SIGNING_ALLOWED = NO; CODE_SIGNING_IDENTITY = "-"; CODE_SIGNING_REQUIRED = NO; - CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/GoogleDataTransport"; + CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/GoogleUtilities"; EXPANDED_CODE_SIGN_IDENTITY = "-"; GCC_PREPROCESSOR_DEFINITIONS = ( "$(inherited)", "PERMISSION_CAMERA=1", "PERMISSION_PHOTOS=1", ); - IBSC_MODULE = GoogleDataTransport; - INFOPLIST_FILE = "Target Support Files/GoogleDataTransport/ResourceBundle-GoogleDataTransport_Privacy-GoogleDataTransport-Info.plist"; + IBSC_MODULE = GoogleUtilities; + INFOPLIST_FILE = "Target Support Files/GoogleUtilities/ResourceBundle-GoogleUtilities_Privacy-GoogleUtilities-Info.plist"; IPHONEOS_DEPLOYMENT_TARGET = 13.0; - ONLY_ACTIVE_ARCH = NO; - PRODUCT_NAME = GoogleDataTransport_Privacy; + PRODUCT_NAME = GoogleUtilities_Privacy; SDKROOT = iphoneos; SKIP_INSTALL = YES; TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; WRAPPER_EXTENSION = bundle; }; - name = Debug; + name = "Debug-staging"; }; 9B1D33FDE6B1A0759BD54DCD91D3BAF2 /* Debug-production */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 3C623764A02C0B6BA3A628060F65377B /* flutter_native_splash.release.xcconfig */; + baseConfigurationReference = 57D6AA21B16FC3FF93AD29A67F768BB2 /* flutter_native_splash.release.xcconfig */; buildSettings = { CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -30230,7 +30250,7 @@ }; 9B2C65BEDDF8CE98FDEF2A6CE79BB63A /* Release-development */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 6D3FC8F30A9759CEC467C9CBCFF1BDA6 /* mobile_scanner.release.xcconfig */; + baseConfigurationReference = 55CABBFDA741B6809730DEE1165E60C9 /* mobile_scanner.release.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO; @@ -30287,6 +30307,60 @@ }; name = "Release-development"; }; + 9B333A373FE4624C5CE5B4885DA4C375 /* Release-staging */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 4BB6D83A83366DD3295B456FF36F5E3F /* permission_handler_apple.release.xcconfig */; + buildSettings = { + CLANG_ENABLE_OBJC_WEAK = NO; + CODE_SIGNING_ALLOWED = NO; + CODE_SIGNING_IDENTITY = "-"; + CODE_SIGNING_REQUIRED = NO; + CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/permission_handler_apple"; + EXPANDED_CODE_SIGN_IDENTITY = "-"; + GCC_PREPROCESSOR_DEFINITIONS = ( + "$(inherited)", + "PERMISSION_CAMERA=1", + "PERMISSION_PHOTOS=1", + ); + IBSC_MODULE = permission_handler_apple; + INFOPLIST_FILE = "Target Support Files/permission_handler_apple/ResourceBundle-permission_handler_apple_privacy-permission_handler_apple-Info.plist"; + IPHONEOS_DEPLOYMENT_TARGET = 13.0; + PRODUCT_NAME = permission_handler_apple_privacy; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; + WRAPPER_EXTENSION = bundle; + }; + name = "Release-staging"; + }; + 9B7A70A607DFA895ADD187A89F7FF19E /* Profile-staging */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 6201BD6C84B86BD570988C7E3B8409CB /* package_info_plus.release.xcconfig */; + buildSettings = { + CLANG_ENABLE_OBJC_WEAK = NO; + CODE_SIGNING_ALLOWED = NO; + CODE_SIGNING_IDENTITY = "-"; + CODE_SIGNING_REQUIRED = NO; + CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/package_info_plus"; + EXPANDED_CODE_SIGN_IDENTITY = "-"; + GCC_PREPROCESSOR_DEFINITIONS = ( + "$(inherited)", + "PERMISSION_CAMERA=1", + "PERMISSION_PHOTOS=1", + ); + IBSC_MODULE = package_info_plus; + INFOPLIST_FILE = "Target Support Files/package_info_plus/ResourceBundle-package_info_plus_privacy-package_info_plus-Info.plist"; + IPHONEOS_DEPLOYMENT_TARGET = 13.0; + PRODUCT_NAME = package_info_plus_privacy; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; + WRAPPER_EXTENSION = bundle; + }; + name = "Profile-staging"; + }; 9B929C9A652E7235661EA1F226B95BD3 /* Release */ = { isa = XCBuildConfiguration; baseConfigurationReference = 7BBC54695C99C2B14E25AEFD9F48CF32 /* GTMSessionFetcher.release.xcconfig */; @@ -30328,7 +30402,7 @@ }; 9B98A23D461CF32F26ED3A150F5E6365 /* Release-development */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 4A911B9FACB388B308D1ABB5669DD583 /* permission_handler_apple.release.xcconfig */; + baseConfigurationReference = 4BB6D83A83366DD3295B456FF36F5E3F /* permission_handler_apple.release.xcconfig */; buildSettings = { CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -30385,124 +30459,36 @@ }; name = "Release-development"; }; - 9B9C3A8BD4E337711ADC64162C27CC6E /* Release */ = { + 9BF372CDE2AD32E01211D792AB55B13D /* Profile-development */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 19CE9AC8B13646CC03FBC77F131FF183 /* GoogleDataTransport.release.xcconfig */; - buildSettings = { - CODE_SIGNING_ALLOWED = NO; - CODE_SIGNING_IDENTITY = "-"; - CODE_SIGNING_REQUIRED = NO; - CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/GoogleDataTransport"; - EXPANDED_CODE_SIGN_IDENTITY = "-"; - GCC_PREPROCESSOR_DEFINITIONS = ( - "$(inherited)", - "PERMISSION_CAMERA=1", - "PERMISSION_PHOTOS=1", - ); - IBSC_MODULE = GoogleDataTransport; - INFOPLIST_FILE = "Target Support Files/GoogleDataTransport/ResourceBundle-GoogleDataTransport_Privacy-GoogleDataTransport-Info.plist"; - IPHONEOS_DEPLOYMENT_TARGET = 13.0; - PRODUCT_NAME = GoogleDataTransport_Privacy; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - TARGETED_DEVICE_FAMILY = "1,2"; - WRAPPER_EXTENSION = bundle; - }; - name = Release; - }; - 9BAF62FBBB8C43EF16A4BEDCA78B9195 /* Stage-production */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = B587A9A0D5365CAA9B8A2CC41EB17830 /* nanopb.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"; - GCC_PREFIX_HEADER = "Target Support Files/nanopb/nanopb-prefix.pch"; - GCC_PREPROCESSOR_DEFINITIONS = ( - "$(inherited)", - "PERMISSION_CAMERA=1", - "PERMISSION_PHOTOS=1", - ); - INFOPLIST_FILE = "Target Support Files/nanopb/nanopb-Info.plist"; - INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; - IPHONEOS_DEPLOYMENT_TARGET = 13.0; - LD_RUNPATH_SEARCH_PATHS = ( - "$(inherited)", - "@executable_path/Frameworks", - "@loader_path/Frameworks", - ); - 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_VERSION = 5.0; - TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; - VERSIONING_SYSTEM = "apple-generic"; - VERSION_INFO_PREFIX = ""; - }; - name = "Stage-production"; - }; - 9BBE958E23F624DFB77CD1CD0046C3DB /* Profile-staging */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 1E47B40DD78F33D7394C9CDADE9B41A7 /* share_plus.release.xcconfig */; + baseConfigurationReference = D1CCD0C16DFF0194B0A936A205ED4ED0 /* shared_preferences_foundation.release.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; CODE_SIGNING_ALLOWED = NO; CODE_SIGNING_IDENTITY = "-"; CODE_SIGNING_REQUIRED = NO; - CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/share_plus"; + CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/shared_preferences_foundation"; EXPANDED_CODE_SIGN_IDENTITY = "-"; GCC_PREPROCESSOR_DEFINITIONS = ( "$(inherited)", "PERMISSION_CAMERA=1", "PERMISSION_PHOTOS=1", ); - IBSC_MODULE = share_plus; - INFOPLIST_FILE = "Target Support Files/share_plus/ResourceBundle-share_plus_privacy-share_plus-Info.plist"; + IBSC_MODULE = shared_preferences_foundation; + INFOPLIST_FILE = "Target Support Files/shared_preferences_foundation/ResourceBundle-shared_preferences_foundation_privacy-shared_preferences_foundation-Info.plist"; IPHONEOS_DEPLOYMENT_TARGET = 13.0; - PRODUCT_NAME = share_plus_privacy; + PRODUCT_NAME = shared_preferences_foundation_privacy; SDKROOT = iphoneos; SKIP_INSTALL = YES; TARGETED_DEVICE_FAMILY = "1,2"; VALIDATE_PRODUCT = YES; WRAPPER_EXTENSION = bundle; }; - name = "Profile-staging"; - }; - 9C32CC7AD893D9A69D2BD9058518C88B /* Debug-staging */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = FE5C3B02302BE4DBC83D2A553D5F5C1B /* MLKitVision.release.xcconfig */; - buildSettings = { - ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; - ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; - CLANG_ENABLE_OBJC_WEAK = NO; - GCC_PREPROCESSOR_DEFINITIONS = ( - "$(inherited)", - "PERMISSION_CAMERA=1", - "PERMISSION_PHOTOS=1", - ); - IPHONEOS_DEPLOYMENT_TARGET = 13.0; - LD_RUNPATH_SEARCH_PATHS = ( - "$(inherited)", - "@executable_path/Frameworks", - ); - SDKROOT = iphoneos; - TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; - }; - name = "Debug-staging"; + name = "Profile-development"; }; 9C535471CC02477A7D153EA40A99907A /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = D8EE162A14AE49B28AFDB1D6A27459C8 /* share_plus.debug.xcconfig */; + baseConfigurationReference = 8245B503917DB437609D1F307FE126A4 /* share_plus.debug.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO; @@ -30558,6 +30544,33 @@ }; name = Debug; }; + 9CAC610AA67C18ACA2D0E2E847FFFDBC /* Release-development */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = B587A9A0D5365CAA9B8A2CC41EB17830 /* nanopb.release.xcconfig */; + buildSettings = { + CLANG_ENABLE_OBJC_WEAK = NO; + CODE_SIGNING_ALLOWED = NO; + CODE_SIGNING_IDENTITY = "-"; + CODE_SIGNING_REQUIRED = NO; + CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/nanopb"; + EXPANDED_CODE_SIGN_IDENTITY = "-"; + GCC_PREPROCESSOR_DEFINITIONS = ( + "$(inherited)", + "PERMISSION_CAMERA=1", + "PERMISSION_PHOTOS=1", + ); + IBSC_MODULE = nanopb; + INFOPLIST_FILE = "Target Support Files/nanopb/ResourceBundle-nanopb_Privacy-nanopb-Info.plist"; + IPHONEOS_DEPLOYMENT_TARGET = 13.0; + PRODUCT_NAME = nanopb_Privacy; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; + WRAPPER_EXTENSION = bundle; + }; + name = "Release-development"; + }; 9CB21CD53370E0023D0E34AC4FD285C1 /* Profile-staging */ = { isa = XCBuildConfiguration; baseConfigurationReference = B5EDCA0312C3217F84009C863795BD2F /* Pods-Runner.profile-staging.xcconfig */; @@ -30618,59 +30631,55 @@ }; name = "Profile-staging"; }; - 9CE90C00DD054CFD970AF5F0AEEA2343 /* Debug-production */ = { + 9D8E5F7F8A7E27DF57BF43F17B28F3E3 /* Debug-production */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 8ABCAE069412CFA453F913E4A7E0184B /* GoogleUtilities.release.xcconfig */; + baseConfigurationReference = 85EF9BEBA8B20A13BA96488C86CD663A /* MLKitCommon.release.xcconfig */; buildSettings = { + ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; + ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; CLANG_ENABLE_OBJC_WEAK = NO; - CODE_SIGNING_ALLOWED = NO; - CODE_SIGNING_IDENTITY = "-"; - CODE_SIGNING_REQUIRED = NO; - CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/GoogleUtilities"; - EXPANDED_CODE_SIGN_IDENTITY = "-"; GCC_PREPROCESSOR_DEFINITIONS = ( "$(inherited)", "PERMISSION_CAMERA=1", "PERMISSION_PHOTOS=1", ); - IBSC_MODULE = GoogleUtilities; - INFOPLIST_FILE = "Target Support Files/GoogleUtilities/ResourceBundle-GoogleUtilities_Privacy-GoogleUtilities-Info.plist"; IPHONEOS_DEPLOYMENT_TARGET = 13.0; - PRODUCT_NAME = GoogleUtilities_Privacy; + LD_RUNPATH_SEARCH_PATHS = ( + "$(inherited)", + "@executable_path/Frameworks", + ); SDKROOT = iphoneos; - SKIP_INSTALL = YES; TARGETED_DEVICE_FAMILY = "1,2"; VALIDATE_PRODUCT = YES; - WRAPPER_EXTENSION = bundle; }; name = "Debug-production"; }; - 9D4B786DE932BC47916A27AE6A162975 /* Profile-development */ = { + 9DF09AF59971268B28B493C63D26C6AD /* Profile */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 8ABCAE069412CFA453F913E4A7E0184B /* GoogleUtilities.release.xcconfig */; + baseConfigurationReference = 2529F7B6D57D43838BFCB332D2EDFE47 /* path_provider_foundation.release.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; CODE_SIGNING_ALLOWED = NO; CODE_SIGNING_IDENTITY = "-"; CODE_SIGNING_REQUIRED = NO; - CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/GoogleUtilities"; + CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/path_provider_foundation"; EXPANDED_CODE_SIGN_IDENTITY = "-"; GCC_PREPROCESSOR_DEFINITIONS = ( "$(inherited)", "PERMISSION_CAMERA=1", "PERMISSION_PHOTOS=1", ); - IBSC_MODULE = GoogleUtilities; - INFOPLIST_FILE = "Target Support Files/GoogleUtilities/ResourceBundle-GoogleUtilities_Privacy-GoogleUtilities-Info.plist"; + IBSC_MODULE = path_provider_foundation; + INFOPLIST_FILE = "Target Support Files/path_provider_foundation/ResourceBundle-path_provider_foundation_privacy-path_provider_foundation-Info.plist"; IPHONEOS_DEPLOYMENT_TARGET = 13.0; - PRODUCT_NAME = GoogleUtilities_Privacy; + PRODUCT_NAME = path_provider_foundation_privacy; SDKROOT = iphoneos; SKIP_INSTALL = YES; TARGETED_DEVICE_FAMILY = "1,2"; VALIDATE_PRODUCT = YES; WRAPPER_EXTENSION = bundle; }; - name = "Profile-development"; + name = Profile; }; 9E406C6AAF85E580207CD97B0044DEAB /* Release */ = { isa = XCBuildConfiguration; @@ -30734,9 +30743,102 @@ }; name = Release; }; + 9E5D4251EF716F046DBEBB020E89FA5D /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = C855B0903105AC46A0D025FA2287F884 /* shared_preferences_foundation.debug.xcconfig */; + buildSettings = { + CODE_SIGNING_ALLOWED = NO; + CODE_SIGNING_IDENTITY = "-"; + CODE_SIGNING_REQUIRED = NO; + CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/shared_preferences_foundation"; + EXPANDED_CODE_SIGN_IDENTITY = "-"; + GCC_PREPROCESSOR_DEFINITIONS = ( + "$(inherited)", + "PERMISSION_CAMERA=1", + "PERMISSION_PHOTOS=1", + ); + IBSC_MODULE = shared_preferences_foundation; + INFOPLIST_FILE = "Target Support Files/shared_preferences_foundation/ResourceBundle-shared_preferences_foundation_privacy-shared_preferences_foundation-Info.plist"; + IPHONEOS_DEPLOYMENT_TARGET = 13.0; + ONLY_ACTIVE_ARCH = NO; + PRODUCT_NAME = shared_preferences_foundation_privacy; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + TARGETED_DEVICE_FAMILY = "1,2"; + WRAPPER_EXTENSION = bundle; + }; + name = Debug; + }; + 9EB23856E73FFB2D127A0FD8BD5C5F85 /* Profile */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 6201BD6C84B86BD570988C7E3B8409CB /* package_info_plus.release.xcconfig */; + buildSettings = { + CLANG_ENABLE_OBJC_WEAK = NO; + CODE_SIGNING_ALLOWED = NO; + CODE_SIGNING_IDENTITY = "-"; + CODE_SIGNING_REQUIRED = NO; + CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/package_info_plus"; + EXPANDED_CODE_SIGN_IDENTITY = "-"; + GCC_PREPROCESSOR_DEFINITIONS = ( + "$(inherited)", + "PERMISSION_CAMERA=1", + "PERMISSION_PHOTOS=1", + ); + IBSC_MODULE = package_info_plus; + INFOPLIST_FILE = "Target Support Files/package_info_plus/ResourceBundle-package_info_plus_privacy-package_info_plus-Info.plist"; + IPHONEOS_DEPLOYMENT_TARGET = 13.0; + PRODUCT_NAME = package_info_plus_privacy; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; + WRAPPER_EXTENSION = bundle; + }; + name = Profile; + }; + A063ACC75573C5703A0F59B61F60632F /* Profile-development */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 0E95E1622AE3A8ECD9572E38ECCC7DA7 /* GoogleToolboxForMac.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"; + GCC_PREFIX_HEADER = "Target Support Files/GoogleToolboxForMac/GoogleToolboxForMac-prefix.pch"; + GCC_PREPROCESSOR_DEFINITIONS = ( + "$(inherited)", + "PERMISSION_CAMERA=1", + "PERMISSION_PHOTOS=1", + ); + INFOPLIST_FILE = "Target Support Files/GoogleToolboxForMac/GoogleToolboxForMac-Info.plist"; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; + IPHONEOS_DEPLOYMENT_TARGET = 13.0; + LD_RUNPATH_SEARCH_PATHS = ( + "$(inherited)", + "@executable_path/Frameworks", + "@loader_path/Frameworks", + ); + MODULEMAP_FILE = "Target Support Files/GoogleToolboxForMac/GoogleToolboxForMac.modulemap"; + PRODUCT_MODULE_NAME = GoogleToolboxForMac; + PRODUCT_NAME = GoogleToolboxForMac; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; + SWIFT_VERSION = 5.0; + TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; + VERSIONING_SYSTEM = "apple-generic"; + VERSION_INFO_PREFIX = ""; + }; + name = "Profile-development"; + }; A0817510722B4E702764B15EFCE4F427 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 9AA91A07D6742747C7B580226E9AAA9B /* flutter_inappwebview.debug.xcconfig */; + baseConfigurationReference = AACA2A0A183B02C1F08F864B2AC7D674 /* flutter_inappwebview.debug.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO; @@ -30794,7 +30896,7 @@ }; A08274E1D2EFA5E64B52C077552DD58C /* Profile-development */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 9D69F5F0798882A34E95D912A7DDF7B1 /* sentry_flutter.release.xcconfig */; + baseConfigurationReference = 28C6A92040B7AE9155DE2648EB0D7296 /* sentry_flutter.release.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO; @@ -30850,130 +30952,34 @@ }; name = "Profile-development"; }; - A0D602DFA7989901FE4283D88ACBFDCB /* Stage-production */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = B91357BF97DBAECE656386331F10CCFD /* sqflite.release.xcconfig */; - buildSettings = { - CLANG_ENABLE_OBJC_WEAK = NO; - CODE_SIGNING_ALLOWED = NO; - CODE_SIGNING_IDENTITY = "-"; - CODE_SIGNING_REQUIRED = NO; - CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/sqflite"; - EXPANDED_CODE_SIGN_IDENTITY = "-"; - GCC_PREPROCESSOR_DEFINITIONS = ( - "$(inherited)", - "PERMISSION_CAMERA=1", - "PERMISSION_PHOTOS=1", - ); - IBSC_MODULE = sqflite; - INFOPLIST_FILE = "Target Support Files/sqflite/ResourceBundle-sqflite_darwin_privacy-sqflite-Info.plist"; - IPHONEOS_DEPLOYMENT_TARGET = 13.0; - PRODUCT_NAME = sqflite_darwin_privacy; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; - WRAPPER_EXTENSION = bundle; - }; - name = "Stage-production"; - }; - A1831260343E264E0BBBE0AC32CC4D69 /* Profile-development */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = F4C3D5A980B27BD2C418D61228F67F01 /* package_info_plus.release.xcconfig */; - buildSettings = { - CLANG_ENABLE_OBJC_WEAK = NO; - CODE_SIGNING_ALLOWED = NO; - CODE_SIGNING_IDENTITY = "-"; - CODE_SIGNING_REQUIRED = NO; - CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/package_info_plus"; - EXPANDED_CODE_SIGN_IDENTITY = "-"; - GCC_PREPROCESSOR_DEFINITIONS = ( - "$(inherited)", - "PERMISSION_CAMERA=1", - "PERMISSION_PHOTOS=1", - ); - IBSC_MODULE = package_info_plus; - INFOPLIST_FILE = "Target Support Files/package_info_plus/ResourceBundle-package_info_plus_privacy-package_info_plus-Info.plist"; - IPHONEOS_DEPLOYMENT_TARGET = 13.0; - PRODUCT_NAME = package_info_plus_privacy; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; - WRAPPER_EXTENSION = bundle; - }; - name = "Profile-development"; - }; - A1C02AADDE478D0AC5CDB750AB02A315 /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = B20BC1C62703EE7086A1E97BFA07547A /* GoogleToolboxForMac.debug.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"; - GCC_PREFIX_HEADER = "Target Support Files/GoogleToolboxForMac/GoogleToolboxForMac-prefix.pch"; - GCC_PREPROCESSOR_DEFINITIONS = ( - "$(inherited)", - "PERMISSION_CAMERA=1", - "PERMISSION_PHOTOS=1", - ); - INFOPLIST_FILE = "Target Support Files/GoogleToolboxForMac/GoogleToolboxForMac-Info.plist"; - INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; - IPHONEOS_DEPLOYMENT_TARGET = 13.0; - LD_RUNPATH_SEARCH_PATHS = ( - "$(inherited)", - "@executable_path/Frameworks", - "@loader_path/Frameworks", - ); - MODULEMAP_FILE = "Target Support Files/GoogleToolboxForMac/GoogleToolboxForMac.modulemap"; - ONLY_ACTIVE_ARCH = NO; - PRODUCT_MODULE_NAME = GoogleToolboxForMac; - PRODUCT_NAME = GoogleToolboxForMac; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_VERSION = 5.0; - TARGETED_DEVICE_FAMILY = "1,2"; - VERSIONING_SYSTEM = "apple-generic"; - VERSION_INFO_PREFIX = ""; - }; - name = Debug; - }; - A223231BCBE37ADA5F9BFAAF98E3D63F /* Release-production */ = { + A0C12DF61D4AA3A2E4A4122A57A22594 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 19CE9AC8B13646CC03FBC77F131FF183 /* GoogleDataTransport.release.xcconfig */; + baseConfigurationReference = 98AE98BF8E201BFC344D7356F2883701 /* image_picker_ios.release.xcconfig */; buildSettings = { - CLANG_ENABLE_OBJC_WEAK = NO; CODE_SIGNING_ALLOWED = NO; CODE_SIGNING_IDENTITY = "-"; CODE_SIGNING_REQUIRED = NO; - CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/GoogleDataTransport"; + CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/image_picker_ios"; EXPANDED_CODE_SIGN_IDENTITY = "-"; GCC_PREPROCESSOR_DEFINITIONS = ( "$(inherited)", "PERMISSION_CAMERA=1", "PERMISSION_PHOTOS=1", ); - IBSC_MODULE = GoogleDataTransport; - INFOPLIST_FILE = "Target Support Files/GoogleDataTransport/ResourceBundle-GoogleDataTransport_Privacy-GoogleDataTransport-Info.plist"; + IBSC_MODULE = image_picker_ios; + INFOPLIST_FILE = "Target Support Files/image_picker_ios/ResourceBundle-image_picker_ios_privacy-image_picker_ios-Info.plist"; IPHONEOS_DEPLOYMENT_TARGET = 13.0; - PRODUCT_NAME = GoogleDataTransport_Privacy; + PRODUCT_NAME = image_picker_ios_privacy; SDKROOT = iphoneos; SKIP_INSTALL = YES; TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; WRAPPER_EXTENSION = bundle; }; - name = "Release-production"; + name = Release; }; A25E7F00376862818A060CA6B0EF57E2 /* Stage-production */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 4A911B9FACB388B308D1ABB5669DD583 /* permission_handler_apple.release.xcconfig */; + baseConfigurationReference = 4BB6D83A83366DD3295B456FF36F5E3F /* permission_handler_apple.release.xcconfig */; buildSettings = { CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -31032,7 +31038,7 @@ }; A2644652DEB5A0697829CC840FCE04E6 /* Debug-development */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 06772A7CF38F34E24C0E8F60729C6339 /* local_auth_darwin.release.xcconfig */; + baseConfigurationReference = 9ECF4B2E725AF88A4D8BD77668F776C4 /* local_auth_darwin.release.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO; @@ -31088,64 +31094,51 @@ }; name = "Debug-development"; }; - A2A63FECBFC457DE7C15E1A8705A2455 /* Profile-production */ = { + A2C447B854845E4FFEA7BF262E1A485E /* Stage-production */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 0E95E1622AE3A8ECD9572E38ECCC7DA7 /* GoogleToolboxForMac.release.xcconfig */; + baseConfigurationReference = 9ECF4B2E725AF88A4D8BD77668F776C4 /* local_auth_darwin.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"; - GCC_PREFIX_HEADER = "Target Support Files/GoogleToolboxForMac/GoogleToolboxForMac-prefix.pch"; + CLANG_ENABLE_OBJC_WEAK = NO; + CODE_SIGNING_ALLOWED = NO; + CODE_SIGNING_IDENTITY = "-"; + CODE_SIGNING_REQUIRED = NO; + CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/local_auth_darwin"; + EXPANDED_CODE_SIGN_IDENTITY = "-"; GCC_PREPROCESSOR_DEFINITIONS = ( "$(inherited)", "PERMISSION_CAMERA=1", "PERMISSION_PHOTOS=1", ); - INFOPLIST_FILE = "Target Support Files/GoogleToolboxForMac/GoogleToolboxForMac-Info.plist"; - INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; + IBSC_MODULE = local_auth_darwin; + INFOPLIST_FILE = "Target Support Files/local_auth_darwin/ResourceBundle-local_auth_darwin_privacy-local_auth_darwin-Info.plist"; IPHONEOS_DEPLOYMENT_TARGET = 13.0; - LD_RUNPATH_SEARCH_PATHS = ( - "$(inherited)", - "@executable_path/Frameworks", - "@loader_path/Frameworks", - ); - MODULEMAP_FILE = "Target Support Files/GoogleToolboxForMac/GoogleToolboxForMac.modulemap"; - PRODUCT_MODULE_NAME = GoogleToolboxForMac; - PRODUCT_NAME = GoogleToolboxForMac; + PRODUCT_NAME = local_auth_darwin_privacy; SDKROOT = iphoneos; SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_VERSION = 5.0; TARGETED_DEVICE_FAMILY = "1,2"; VALIDATE_PRODUCT = YES; - VERSIONING_SYSTEM = "apple-generic"; - VERSION_INFO_PREFIX = ""; + WRAPPER_EXTENSION = bundle; }; - name = "Profile-production"; + name = "Stage-production"; }; - A3037E2CBCE84E1724022D401FD6B984 /* Release */ = { + A327A02781955647F14D55802BE13392 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = B587A9A0D5365CAA9B8A2CC41EB17830 /* nanopb.release.xcconfig */; + baseConfigurationReference = B3F81CBF23C2B71680A734B4B74EA6EF /* sqflite.release.xcconfig */; buildSettings = { CODE_SIGNING_ALLOWED = NO; CODE_SIGNING_IDENTITY = "-"; CODE_SIGNING_REQUIRED = NO; - CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/nanopb"; + CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/sqflite"; EXPANDED_CODE_SIGN_IDENTITY = "-"; GCC_PREPROCESSOR_DEFINITIONS = ( "$(inherited)", "PERMISSION_CAMERA=1", "PERMISSION_PHOTOS=1", ); - IBSC_MODULE = nanopb; - INFOPLIST_FILE = "Target Support Files/nanopb/ResourceBundle-nanopb_Privacy-nanopb-Info.plist"; + IBSC_MODULE = sqflite; + INFOPLIST_FILE = "Target Support Files/sqflite/ResourceBundle-sqflite_darwin_privacy-sqflite-Info.plist"; IPHONEOS_DEPLOYMENT_TARGET = 13.0; - PRODUCT_NAME = nanopb_Privacy; + PRODUCT_NAME = sqflite_darwin_privacy; SDKROOT = iphoneos; SKIP_INSTALL = YES; TARGETED_DEVICE_FAMILY = "1,2"; @@ -31153,32 +31146,9 @@ }; name = Release; }; - A31FF92E5C7C5E8BAAF06CB0D7E263CD /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 8A1FA04201D3F5B8B3023ED17C38F601 /* MLImage.debug.xcconfig */; - buildSettings = { - ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; - ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; - CLANG_ENABLE_OBJC_WEAK = NO; - GCC_PREPROCESSOR_DEFINITIONS = ( - "$(inherited)", - "PERMISSION_CAMERA=1", - "PERMISSION_PHOTOS=1", - ); - IPHONEOS_DEPLOYMENT_TARGET = 13.0; - LD_RUNPATH_SEARCH_PATHS = ( - "$(inherited)", - "@executable_path/Frameworks", - ); - ONLY_ACTIVE_ARCH = NO; - SDKROOT = iphoneos; - TARGETED_DEVICE_FAMILY = "1,2"; - }; - name = Debug; - }; A32A4472FBD60E6F3F2A72C0FCCFF2CA /* Release-staging */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 9311BBA346794A168AC09B1625AB1683 /* path_provider_foundation.release.xcconfig */; + baseConfigurationReference = 2529F7B6D57D43838BFCB332D2EDFE47 /* path_provider_foundation.release.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO; @@ -31232,7 +31202,7 @@ }; A3599CF83D68DFDAF8B34AFBA406D979 /* Profile-production */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 73DB9045D22A4FBE50F8FACF34C6F052 /* url_launcher_ios.release.xcconfig */; + baseConfigurationReference = F9F252ACFB155ACF9BB56FB267880E01 /* url_launcher_ios.release.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO; @@ -31283,36 +31253,50 @@ }; name = "Profile-production"; }; - A3B350D4FFA48922A3C52329F6FD8D19 /* Debug-production */ = { + A3AC58E9516704124B201B75E096C6DC /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 19CE9AC8B13646CC03FBC77F131FF183 /* GoogleDataTransport.release.xcconfig */; + baseConfigurationReference = 1FB6A8C90B1DEA55B361A5A2C264D21D /* GoogleUtilitiesComponents.debug.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; - CODE_SIGNING_ALLOWED = NO; - CODE_SIGNING_IDENTITY = "-"; - CODE_SIGNING_REQUIRED = NO; - CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/GoogleDataTransport"; - EXPANDED_CODE_SIGN_IDENTITY = "-"; + "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"; GCC_PREPROCESSOR_DEFINITIONS = ( "$(inherited)", "PERMISSION_CAMERA=1", "PERMISSION_PHOTOS=1", ); - IBSC_MODULE = GoogleDataTransport; - INFOPLIST_FILE = "Target Support Files/GoogleDataTransport/ResourceBundle-GoogleDataTransport_Privacy-GoogleDataTransport-Info.plist"; + INFOPLIST_FILE = "Target Support Files/GoogleUtilitiesComponents/GoogleUtilitiesComponents-Info.plist"; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; IPHONEOS_DEPLOYMENT_TARGET = 13.0; - PRODUCT_NAME = GoogleDataTransport_Privacy; + LD_RUNPATH_SEARCH_PATHS = ( + "$(inherited)", + "@executable_path/Frameworks", + "@loader_path/Frameworks", + ); + MACH_O_TYPE = staticlib; + MODULEMAP_FILE = "Target Support Files/GoogleUtilitiesComponents/GoogleUtilitiesComponents.modulemap"; + ONLY_ACTIVE_ARCH = NO; + PRODUCT_MODULE_NAME = GoogleUtilitiesComponents; + PRODUCT_NAME = GoogleUtilitiesComponents; SDKROOT = iphoneos; SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; + SWIFT_VERSION = 5.0; TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; - WRAPPER_EXTENSION = bundle; + VERSIONING_SYSTEM = "apple-generic"; + VERSION_INFO_PREFIX = ""; }; - name = "Debug-production"; + name = Debug; }; - A415EF8DEF7EA6C9A993EF2D1A9B5AEA /* Profile-production */ = { + A3D727681F5560720D4ED7EBB1988EAD /* Profile-staging */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 19CE9AC8B13646CC03FBC77F131FF183 /* GoogleDataTransport.release.xcconfig */; + baseConfigurationReference = B587A9A0D5365CAA9B8A2CC41EB17830 /* nanopb.release.xcconfig */; buildSettings = { "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; @@ -31322,12 +31306,13 @@ DYLIB_COMPATIBILITY_VERSION = 1; DYLIB_CURRENT_VERSION = 1; DYLIB_INSTALL_NAME_BASE = "@rpath"; + GCC_PREFIX_HEADER = "Target Support Files/nanopb/nanopb-prefix.pch"; GCC_PREPROCESSOR_DEFINITIONS = ( "$(inherited)", "PERMISSION_CAMERA=1", "PERMISSION_PHOTOS=1", ); - INFOPLIST_FILE = "Target Support Files/GoogleDataTransport/GoogleDataTransport-Info.plist"; + INFOPLIST_FILE = "Target Support Files/nanopb/nanopb-Info.plist"; INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; IPHONEOS_DEPLOYMENT_TARGET = 13.0; LD_RUNPATH_SEARCH_PATHS = ( @@ -31335,9 +31320,9 @@ "@executable_path/Frameworks", "@loader_path/Frameworks", ); - MODULEMAP_FILE = "Target Support Files/GoogleDataTransport/GoogleDataTransport.modulemap"; - PRODUCT_MODULE_NAME = GoogleDataTransport; - PRODUCT_NAME = GoogleDataTransport; + 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) "; @@ -31347,57 +31332,77 @@ VERSIONING_SYSTEM = "apple-generic"; VERSION_INFO_PREFIX = ""; }; - name = "Profile-production"; + name = "Profile-staging"; }; - A4C1818DFFF5E7E4EF4639D47B4202BC /* Debug-production */ = { + A415EF8DEF7EA6C9A993EF2D1A9B5AEA /* Profile-production */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 26DCE60E629963FB754A022AED7ACC73 /* MLImage.release.xcconfig */; + baseConfigurationReference = 19CE9AC8B13646CC03FBC77F131FF183 /* GoogleDataTransport.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"; GCC_PREPROCESSOR_DEFINITIONS = ( "$(inherited)", "PERMISSION_CAMERA=1", "PERMISSION_PHOTOS=1", ); + INFOPLIST_FILE = "Target Support Files/GoogleDataTransport/GoogleDataTransport-Info.plist"; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; IPHONEOS_DEPLOYMENT_TARGET = 13.0; LD_RUNPATH_SEARCH_PATHS = ( "$(inherited)", "@executable_path/Frameworks", + "@loader_path/Frameworks", ); + MODULEMAP_FILE = "Target Support Files/GoogleDataTransport/GoogleDataTransport.modulemap"; + PRODUCT_MODULE_NAME = GoogleDataTransport; + PRODUCT_NAME = GoogleDataTransport; SDKROOT = iphoneos; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; + SWIFT_VERSION = 5.0; TARGETED_DEVICE_FAMILY = "1,2"; VALIDATE_PRODUCT = YES; + VERSIONING_SYSTEM = "apple-generic"; + VERSION_INFO_PREFIX = ""; }; - name = "Debug-production"; + name = "Profile-production"; }; - A5D29CE9E8AFBB300D527C2AB6566492 /* Release */ = { + A5BD7EE0AF530BC2CBF45CBAAE872FC4 /* Profile-production */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 85EF9BEBA8B20A13BA96488C86CD663A /* MLKitCommon.release.xcconfig */; + baseConfigurationReference = 9ECF4B2E725AF88A4D8BD77668F776C4 /* local_auth_darwin.release.xcconfig */; buildSettings = { - ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; - ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; CLANG_ENABLE_OBJC_WEAK = NO; + CODE_SIGNING_ALLOWED = NO; + CODE_SIGNING_IDENTITY = "-"; + CODE_SIGNING_REQUIRED = NO; + CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/local_auth_darwin"; + EXPANDED_CODE_SIGN_IDENTITY = "-"; GCC_PREPROCESSOR_DEFINITIONS = ( "$(inherited)", "PERMISSION_CAMERA=1", "PERMISSION_PHOTOS=1", ); + IBSC_MODULE = local_auth_darwin; + INFOPLIST_FILE = "Target Support Files/local_auth_darwin/ResourceBundle-local_auth_darwin_privacy-local_auth_darwin-Info.plist"; IPHONEOS_DEPLOYMENT_TARGET = 13.0; - LD_RUNPATH_SEARCH_PATHS = ( - "$(inherited)", - "@executable_path/Frameworks", - ); + PRODUCT_NAME = local_auth_darwin_privacy; SDKROOT = iphoneos; + SKIP_INSTALL = YES; TARGETED_DEVICE_FAMILY = "1,2"; VALIDATE_PRODUCT = YES; + WRAPPER_EXTENSION = bundle; }; - name = Release; + name = "Profile-production"; }; A5DF767DA27E7B7C1D98A10708A6DE56 /* Profile-production */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 7B2F4BE2D901E9309159228CD856EBAF /* flutter_secure_storage.release.xcconfig */; + baseConfigurationReference = 13146A48D1544CF0CF218B3A514C848E /* flutter_secure_storage.release.xcconfig */; buildSettings = { CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -31454,7 +31459,7 @@ }; A5E4CBDEEB2DD453FBC7140D94538699 /* Release-staging */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 73DB9045D22A4FBE50F8FACF34C6F052 /* url_launcher_ios.release.xcconfig */; + baseConfigurationReference = F9F252ACFB155ACF9BB56FB267880E01 /* url_launcher_ios.release.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO; @@ -31507,7 +31512,7 @@ }; A5F4BE3369C34C2D7A3364E5915070AE /* Profile */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 9281357EC3038ADC39C884ED1A1D94E1 /* flutter_inappwebview.release.xcconfig */; + baseConfigurationReference = F3BAFA0B70330F234C6B8BF559E7A252 /* flutter_inappwebview.release.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO; @@ -31563,59 +31568,147 @@ }; name = Profile; }; - A612F4D63D098EFEC5C473F8511E26AB /* Profile */ = { + A649CA7AF3E08EE565A437D1C4DA549A /* Profile-staging */ = { isa = XCBuildConfiguration; - baseConfigurationReference = C782F3D64A5DB279B07DD4535BD2F969 /* image_picker_ios.release.xcconfig */; + baseConfigurationReference = FC4CA41561F8B1B855AED3763329DD2C /* PromisesObjC.release.xcconfig */; buildSettings = { - CLANG_ENABLE_OBJC_WEAK = NO; - CODE_SIGNING_ALLOWED = NO; - CODE_SIGNING_IDENTITY = "-"; - CODE_SIGNING_REQUIRED = NO; - CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/image_picker_ios"; - EXPANDED_CODE_SIGN_IDENTITY = "-"; + "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"; GCC_PREPROCESSOR_DEFINITIONS = ( "$(inherited)", "PERMISSION_CAMERA=1", "PERMISSION_PHOTOS=1", ); - IBSC_MODULE = image_picker_ios; - INFOPLIST_FILE = "Target Support Files/image_picker_ios/ResourceBundle-image_picker_ios_privacy-image_picker_ios-Info.plist"; + INFOPLIST_FILE = "Target Support Files/PromisesObjC/PromisesObjC-Info.plist"; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; IPHONEOS_DEPLOYMENT_TARGET = 13.0; - PRODUCT_NAME = image_picker_ios_privacy; + LD_RUNPATH_SEARCH_PATHS = ( + "$(inherited)", + "@executable_path/Frameworks", + "@loader_path/Frameworks", + ); + 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_VERSION = 5.0; TARGETED_DEVICE_FAMILY = "1,2"; VALIDATE_PRODUCT = YES; - WRAPPER_EXTENSION = bundle; + VERSIONING_SYSTEM = "apple-generic"; + VERSION_INFO_PREFIX = ""; + }; + name = "Profile-staging"; + }; + A6B5B2A8B96E247AFCB5160B52055C2A /* Profile-production */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = FC4CA41561F8B1B855AED3763329DD2C /* 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"; + GCC_PREPROCESSOR_DEFINITIONS = ( + "$(inherited)", + "PERMISSION_CAMERA=1", + "PERMISSION_PHOTOS=1", + ); + INFOPLIST_FILE = "Target Support Files/PromisesObjC/PromisesObjC-Info.plist"; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; + IPHONEOS_DEPLOYMENT_TARGET = 13.0; + LD_RUNPATH_SEARCH_PATHS = ( + "$(inherited)", + "@executable_path/Frameworks", + "@loader_path/Frameworks", + ); + 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_VERSION = 5.0; + TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; + VERSIONING_SYSTEM = "apple-generic"; + VERSION_INFO_PREFIX = ""; + }; + name = "Profile-production"; + }; + A6F28EECD265B1F79C2AB8CFB6879C9F /* Profile */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 8ABCAE069412CFA453F913E4A7E0184B /* GoogleUtilities.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"; + GCC_PREPROCESSOR_DEFINITIONS = ( + "$(inherited)", + "PERMISSION_CAMERA=1", + "PERMISSION_PHOTOS=1", + ); + INFOPLIST_FILE = "Target Support Files/GoogleUtilities/GoogleUtilities-Info.plist"; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; + IPHONEOS_DEPLOYMENT_TARGET = 13.0; + LD_RUNPATH_SEARCH_PATHS = ( + "$(inherited)", + "@executable_path/Frameworks", + "@loader_path/Frameworks", + ); + 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_VERSION = 5.0; + TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; + VERSIONING_SYSTEM = "apple-generic"; + VERSION_INFO_PREFIX = ""; }; name = Profile; }; - A648B0958C0D8D71A4967F87D418950D /* Profile-development */ = { + A74CD304633EE2024116276B09CAC315 /* Profile-production */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 73DB9045D22A4FBE50F8FACF34C6F052 /* url_launcher_ios.release.xcconfig */; + baseConfigurationReference = 8ABCAE069412CFA453F913E4A7E0184B /* GoogleUtilities.release.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; CODE_SIGNING_ALLOWED = NO; CODE_SIGNING_IDENTITY = "-"; CODE_SIGNING_REQUIRED = NO; - CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/url_launcher_ios"; + CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/GoogleUtilities"; EXPANDED_CODE_SIGN_IDENTITY = "-"; GCC_PREPROCESSOR_DEFINITIONS = ( "$(inherited)", "PERMISSION_CAMERA=1", "PERMISSION_PHOTOS=1", ); - IBSC_MODULE = url_launcher_ios; - INFOPLIST_FILE = "Target Support Files/url_launcher_ios/ResourceBundle-url_launcher_ios_privacy-url_launcher_ios-Info.plist"; + IBSC_MODULE = GoogleUtilities; + INFOPLIST_FILE = "Target Support Files/GoogleUtilities/ResourceBundle-GoogleUtilities_Privacy-GoogleUtilities-Info.plist"; IPHONEOS_DEPLOYMENT_TARGET = 13.0; - PRODUCT_NAME = url_launcher_ios_privacy; + PRODUCT_NAME = GoogleUtilities_Privacy; SDKROOT = iphoneos; SKIP_INSTALL = YES; TARGETED_DEVICE_FAMILY = "1,2"; VALIDATE_PRODUCT = YES; WRAPPER_EXTENSION = bundle; }; - name = "Profile-development"; + name = "Profile-production"; }; A74E98B12B7E1A1620FA64747B47FCBE /* Release-staging */ = { isa = XCBuildConfiguration; @@ -31658,7 +31751,7 @@ }; A763B9083DF22103AE7028045E1F121D /* Profile-production */ = { isa = XCBuildConfiguration; - baseConfigurationReference = C782F3D64A5DB279B07DD4535BD2F969 /* image_picker_ios.release.xcconfig */; + baseConfigurationReference = 98AE98BF8E201BFC344D7356F2883701 /* image_picker_ios.release.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO; @@ -31714,49 +31807,9 @@ }; name = "Profile-production"; }; - A80CDD3959D7B02037466C02A558AC32 /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = B587A9A0D5365CAA9B8A2CC41EB17830 /* nanopb.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"; - GCC_PREFIX_HEADER = "Target Support Files/nanopb/nanopb-prefix.pch"; - GCC_PREPROCESSOR_DEFINITIONS = ( - "$(inherited)", - "PERMISSION_CAMERA=1", - "PERMISSION_PHOTOS=1", - ); - INFOPLIST_FILE = "Target Support Files/nanopb/nanopb-Info.plist"; - INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; - IPHONEOS_DEPLOYMENT_TARGET = 13.0; - LD_RUNPATH_SEARCH_PATHS = ( - "$(inherited)", - "@executable_path/Frameworks", - "@loader_path/Frameworks", - ); - 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_VERSION = 5.0; - TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; - VERSIONING_SYSTEM = "apple-generic"; - VERSION_INFO_PREFIX = ""; - }; - name = Release; - }; A946161F37991DC98441E48D9EC0E5CD /* Debug-development */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 7B2F4BE2D901E9309159228CD856EBAF /* flutter_secure_storage.release.xcconfig */; + baseConfigurationReference = 13146A48D1544CF0CF218B3A514C848E /* flutter_secure_storage.release.xcconfig */; buildSettings = { CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -31811,36 +31864,9 @@ }; name = "Debug-development"; }; - A981A4AF80A4CB03E7E5EC1D00B6180F /* Profile */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 86E540DA830E020FCC7DEA27000E1A98 /* shared_preferences_foundation.release.xcconfig */; - buildSettings = { - CLANG_ENABLE_OBJC_WEAK = NO; - CODE_SIGNING_ALLOWED = NO; - CODE_SIGNING_IDENTITY = "-"; - CODE_SIGNING_REQUIRED = NO; - CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/shared_preferences_foundation"; - EXPANDED_CODE_SIGN_IDENTITY = "-"; - GCC_PREPROCESSOR_DEFINITIONS = ( - "$(inherited)", - "PERMISSION_CAMERA=1", - "PERMISSION_PHOTOS=1", - ); - IBSC_MODULE = shared_preferences_foundation; - INFOPLIST_FILE = "Target Support Files/shared_preferences_foundation/ResourceBundle-shared_preferences_foundation_privacy-shared_preferences_foundation-Info.plist"; - IPHONEOS_DEPLOYMENT_TARGET = 13.0; - PRODUCT_NAME = shared_preferences_foundation_privacy; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; - WRAPPER_EXTENSION = bundle; - }; - name = Profile; - }; AA125773597D22481269E5AB7E5A2F67 /* Release-production */ = { isa = XCBuildConfiguration; - baseConfigurationReference = C630DC976CFC529906571DA851643B86 /* integration_test.release.xcconfig */; + baseConfigurationReference = 5ACA34BFC6EAE3E5A15EE45A206A60FA /* integration_test.release.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO; @@ -31896,99 +31922,113 @@ }; name = "Release-production"; }; - AA3CAAA1BCFE48B5A9850D68B0F46D34 /* Debug-production */ = { + AA2BFA6385E1C102CEA67D13B69C85DE /* Release-development */ = { isa = XCBuildConfiguration; - baseConfigurationReference = B587A9A0D5365CAA9B8A2CC41EB17830 /* nanopb.release.xcconfig */; + baseConfigurationReference = C3A8E22467ADEB42B7D83259E1A6F078 /* Sentry.release.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; CODE_SIGNING_ALLOWED = NO; CODE_SIGNING_IDENTITY = "-"; CODE_SIGNING_REQUIRED = NO; - CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/nanopb"; + CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/Sentry"; EXPANDED_CODE_SIGN_IDENTITY = "-"; GCC_PREPROCESSOR_DEFINITIONS = ( "$(inherited)", "PERMISSION_CAMERA=1", "PERMISSION_PHOTOS=1", ); - IBSC_MODULE = nanopb; - INFOPLIST_FILE = "Target Support Files/nanopb/ResourceBundle-nanopb_Privacy-nanopb-Info.plist"; + IBSC_MODULE = Sentry; + INFOPLIST_FILE = "Target Support Files/Sentry/ResourceBundle-Sentry-Sentry-Info.plist"; IPHONEOS_DEPLOYMENT_TARGET = 13.0; - PRODUCT_NAME = nanopb_Privacy; + PRODUCT_NAME = Sentry; SDKROOT = iphoneos; SKIP_INSTALL = YES; TARGETED_DEVICE_FAMILY = "1,2"; VALIDATE_PRODUCT = YES; WRAPPER_EXTENSION = bundle; }; - name = "Debug-production"; + name = "Release-development"; }; - AB5268E3EFF65D532998918EBA9ABDD5 /* Profile */ = { + AA2EF0D4AE1F8A0B9751E81F54AEE585 /* Profile-staging */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 73DB9045D22A4FBE50F8FACF34C6F052 /* url_launcher_ios.release.xcconfig */; + baseConfigurationReference = D1CCD0C16DFF0194B0A936A205ED4ED0 /* shared_preferences_foundation.release.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; CODE_SIGNING_ALLOWED = NO; CODE_SIGNING_IDENTITY = "-"; CODE_SIGNING_REQUIRED = NO; - CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/url_launcher_ios"; + CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/shared_preferences_foundation"; EXPANDED_CODE_SIGN_IDENTITY = "-"; GCC_PREPROCESSOR_DEFINITIONS = ( "$(inherited)", "PERMISSION_CAMERA=1", "PERMISSION_PHOTOS=1", ); - IBSC_MODULE = url_launcher_ios; - INFOPLIST_FILE = "Target Support Files/url_launcher_ios/ResourceBundle-url_launcher_ios_privacy-url_launcher_ios-Info.plist"; + IBSC_MODULE = shared_preferences_foundation; + INFOPLIST_FILE = "Target Support Files/shared_preferences_foundation/ResourceBundle-shared_preferences_foundation_privacy-shared_preferences_foundation-Info.plist"; IPHONEOS_DEPLOYMENT_TARGET = 13.0; - PRODUCT_NAME = url_launcher_ios_privacy; + PRODUCT_NAME = shared_preferences_foundation_privacy; SDKROOT = iphoneos; SKIP_INSTALL = YES; TARGETED_DEVICE_FAMILY = "1,2"; VALIDATE_PRODUCT = YES; WRAPPER_EXTENSION = bundle; }; - name = Profile; + name = "Profile-staging"; }; - AB6CB41F0A03541AAB59065634B90DC0 /* Profile */ = { + AB1CD35D6FE93697060724017669B2B7 /* Stage-production */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 0E95E1622AE3A8ECD9572E38ECCC7DA7 /* GoogleToolboxForMac.release.xcconfig */; + baseConfigurationReference = C3A8E22467ADEB42B7D83259E1A6F078 /* Sentry.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"; - GCC_PREFIX_HEADER = "Target Support Files/GoogleToolboxForMac/GoogleToolboxForMac-prefix.pch"; + CLANG_ENABLE_OBJC_WEAK = NO; + CODE_SIGNING_ALLOWED = NO; + CODE_SIGNING_IDENTITY = "-"; + CODE_SIGNING_REQUIRED = NO; + CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/Sentry"; + EXPANDED_CODE_SIGN_IDENTITY = "-"; GCC_PREPROCESSOR_DEFINITIONS = ( "$(inherited)", "PERMISSION_CAMERA=1", "PERMISSION_PHOTOS=1", ); - INFOPLIST_FILE = "Target Support Files/GoogleToolboxForMac/GoogleToolboxForMac-Info.plist"; - INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; + IBSC_MODULE = Sentry; + INFOPLIST_FILE = "Target Support Files/Sentry/ResourceBundle-Sentry-Sentry-Info.plist"; IPHONEOS_DEPLOYMENT_TARGET = 13.0; - LD_RUNPATH_SEARCH_PATHS = ( + PRODUCT_NAME = Sentry; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; + WRAPPER_EXTENSION = bundle; + }; + name = "Stage-production"; + }; + AB7C2CE18AED0FF8F9A17FB68B8561A8 /* Release-staging */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = F9F252ACFB155ACF9BB56FB267880E01 /* url_launcher_ios.release.xcconfig */; + buildSettings = { + CLANG_ENABLE_OBJC_WEAK = NO; + CODE_SIGNING_ALLOWED = NO; + CODE_SIGNING_IDENTITY = "-"; + CODE_SIGNING_REQUIRED = NO; + CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/url_launcher_ios"; + EXPANDED_CODE_SIGN_IDENTITY = "-"; + GCC_PREPROCESSOR_DEFINITIONS = ( "$(inherited)", - "@executable_path/Frameworks", - "@loader_path/Frameworks", + "PERMISSION_CAMERA=1", + "PERMISSION_PHOTOS=1", ); - MODULEMAP_FILE = "Target Support Files/GoogleToolboxForMac/GoogleToolboxForMac.modulemap"; - PRODUCT_MODULE_NAME = GoogleToolboxForMac; - PRODUCT_NAME = GoogleToolboxForMac; + IBSC_MODULE = url_launcher_ios; + INFOPLIST_FILE = "Target Support Files/url_launcher_ios/ResourceBundle-url_launcher_ios_privacy-url_launcher_ios-Info.plist"; + IPHONEOS_DEPLOYMENT_TARGET = 13.0; + PRODUCT_NAME = url_launcher_ios_privacy; SDKROOT = iphoneos; SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_VERSION = 5.0; TARGETED_DEVICE_FAMILY = "1,2"; VALIDATE_PRODUCT = YES; - VERSIONING_SYSTEM = "apple-generic"; - VERSION_INFO_PREFIX = ""; + WRAPPER_EXTENSION = bundle; }; - name = Profile; + name = "Release-staging"; }; ABF8E57BAC92BDAE3B4B1F3E09CF8D82 /* Release-production */ = { isa = XCBuildConfiguration; @@ -32029,63 +32069,9 @@ }; name = "Release-production"; }; - AC0C84EF52689499C059BC58E93DAB47 /* Release-production */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = B60761FA10DAC783EF5D7E4C1574226A /* connectivity_plus.release.xcconfig */; - buildSettings = { - CLANG_ENABLE_OBJC_WEAK = NO; - CODE_SIGNING_ALLOWED = NO; - CODE_SIGNING_IDENTITY = "-"; - CODE_SIGNING_REQUIRED = NO; - CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/connectivity_plus"; - EXPANDED_CODE_SIGN_IDENTITY = "-"; - GCC_PREPROCESSOR_DEFINITIONS = ( - "$(inherited)", - "PERMISSION_CAMERA=1", - "PERMISSION_PHOTOS=1", - ); - IBSC_MODULE = connectivity_plus; - INFOPLIST_FILE = "Target Support Files/connectivity_plus/ResourceBundle-connectivity_plus_privacy-connectivity_plus-Info.plist"; - IPHONEOS_DEPLOYMENT_TARGET = 13.0; - PRODUCT_NAME = connectivity_plus_privacy; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; - WRAPPER_EXTENSION = bundle; - }; - name = "Release-production"; - }; - AC2C67413BBBA3C5183A7461C0231BF5 /* Debug-staging */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 86E540DA830E020FCC7DEA27000E1A98 /* shared_preferences_foundation.release.xcconfig */; - buildSettings = { - CLANG_ENABLE_OBJC_WEAK = NO; - CODE_SIGNING_ALLOWED = NO; - CODE_SIGNING_IDENTITY = "-"; - CODE_SIGNING_REQUIRED = NO; - CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/shared_preferences_foundation"; - EXPANDED_CODE_SIGN_IDENTITY = "-"; - GCC_PREPROCESSOR_DEFINITIONS = ( - "$(inherited)", - "PERMISSION_CAMERA=1", - "PERMISSION_PHOTOS=1", - ); - IBSC_MODULE = shared_preferences_foundation; - INFOPLIST_FILE = "Target Support Files/shared_preferences_foundation/ResourceBundle-shared_preferences_foundation_privacy-shared_preferences_foundation-Info.plist"; - IPHONEOS_DEPLOYMENT_TARGET = 13.0; - PRODUCT_NAME = shared_preferences_foundation_privacy; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; - WRAPPER_EXTENSION = bundle; - }; - name = "Debug-staging"; - }; AC31935E616E01E3CA870174BC246C9D /* Debug-development */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 9311BBA346794A168AC09B1625AB1683 /* path_provider_foundation.release.xcconfig */; + baseConfigurationReference = 2529F7B6D57D43838BFCB332D2EDFE47 /* path_provider_foundation.release.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO; @@ -32139,7 +32125,7 @@ }; AC40A83EE10E6DDD14D3A8FC63372AA3 /* Debug-staging */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 3C623764A02C0B6BA3A628060F65377B /* flutter_native_splash.release.xcconfig */; + baseConfigurationReference = 57D6AA21B16FC3FF93AD29A67F768BB2 /* flutter_native_splash.release.xcconfig */; buildSettings = { CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -32295,7 +32281,7 @@ }; ACD8A657F13C9043DCF0BE2606EA745E /* Release-staging */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 7B2F4BE2D901E9309159228CD856EBAF /* flutter_secure_storage.release.xcconfig */; + baseConfigurationReference = 13146A48D1544CF0CF218B3A514C848E /* flutter_secure_storage.release.xcconfig */; buildSettings = { CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -32350,67 +32336,89 @@ }; name = "Release-staging"; }; - ADABC29C07E74E8096E35B1CC32C2A11 /* Debug */ = { + ACED46665B604F6D148580AF8148D05D /* Profile-staging */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 9DC45C3C969EEFF5793F781E06C2A034 /* package_info_plus.debug.xcconfig */; + baseConfigurationReference = 57D6AA21B16FC3FF93AD29A67F768BB2 /* flutter_native_splash.release.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; - CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = 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_BITCODE = NO; - "EXCLUDED_ARCHS[sdk=iphoneos*]" = "$(inherited) armv7"; - "EXCLUDED_ARCHS[sdk=iphonesimulator*]" = "$(inherited) i386"; - "FRAMEWORK_SEARCH_PATHS[sdk=iphoneos*]" = ( - "\"/Users/user/flutter/bin/cache/artifacts/engine/ios/Flutter.xcframework/ios-arm64\"", - "$(inherited)", - ); - "FRAMEWORK_SEARCH_PATHS[sdk=iphonesimulator*]" = ( - "\"/Users/user/flutter/bin/cache/artifacts/engine/ios/Flutter.xcframework/ios-arm64_x86_64-simulator\"", - "$(inherited)", - ); - GCC_PREFIX_HEADER = "Target Support Files/package_info_plus/package_info_plus-prefix.pch"; + CODE_SIGNING_ALLOWED = NO; + CODE_SIGNING_IDENTITY = "-"; + CODE_SIGNING_REQUIRED = NO; + CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/flutter_native_splash"; + EXPANDED_CODE_SIGN_IDENTITY = "-"; GCC_PREPROCESSOR_DEFINITIONS = ( "$(inherited)", "PERMISSION_CAMERA=1", "PERMISSION_PHOTOS=1", ); - INFOPLIST_FILE = "Target Support Files/package_info_plus/package_info_plus-Info.plist"; - INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; + IBSC_MODULE = flutter_native_splash; + INFOPLIST_FILE = "Target Support Files/flutter_native_splash/ResourceBundle-flutter_native_splash_privacy-flutter_native_splash-Info.plist"; IPHONEOS_DEPLOYMENT_TARGET = 13.0; - LD_RUNPATH_SEARCH_PATHS = ( + PRODUCT_NAME = flutter_native_splash_privacy; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; + WRAPPER_EXTENSION = bundle; + }; + name = "Profile-staging"; + }; + AD0DAE677FC4D9F51E623E855F4CDEAC /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = D8944A35B58A4CCD31AF2857AEC05164 /* image_picker_ios.debug.xcconfig */; + buildSettings = { + CODE_SIGNING_ALLOWED = NO; + CODE_SIGNING_IDENTITY = "-"; + CODE_SIGNING_REQUIRED = NO; + CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/image_picker_ios"; + EXPANDED_CODE_SIGN_IDENTITY = "-"; + GCC_PREPROCESSOR_DEFINITIONS = ( "$(inherited)", - "@executable_path/Frameworks", - "@loader_path/Frameworks", + "PERMISSION_CAMERA=1", + "PERMISSION_PHOTOS=1", ); - MODULEMAP_FILE = "Target Support Files/package_info_plus/package_info_plus.modulemap"; + IBSC_MODULE = image_picker_ios; + INFOPLIST_FILE = "Target Support Files/image_picker_ios/ResourceBundle-image_picker_ios_privacy-image_picker_ios-Info.plist"; + IPHONEOS_DEPLOYMENT_TARGET = 13.0; ONLY_ACTIVE_ARCH = NO; - OTHER_LDFLAGS = ( + PRODUCT_NAME = image_picker_ios_privacy; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + TARGETED_DEVICE_FAMILY = "1,2"; + WRAPPER_EXTENSION = bundle; + }; + name = Debug; + }; + AD11580953822B2B83D566C19CDA532C /* Debug-staging */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = F9F252ACFB155ACF9BB56FB267880E01 /* url_launcher_ios.release.xcconfig */; + buildSettings = { + CLANG_ENABLE_OBJC_WEAK = NO; + CODE_SIGNING_ALLOWED = NO; + CODE_SIGNING_IDENTITY = "-"; + CODE_SIGNING_REQUIRED = NO; + CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/url_launcher_ios"; + EXPANDED_CODE_SIGN_IDENTITY = "-"; + GCC_PREPROCESSOR_DEFINITIONS = ( "$(inherited)", - "-framework", - Flutter, + "PERMISSION_CAMERA=1", + "PERMISSION_PHOTOS=1", ); - PRODUCT_MODULE_NAME = package_info_plus; - PRODUCT_NAME = package_info_plus; + IBSC_MODULE = url_launcher_ios; + INFOPLIST_FILE = "Target Support Files/url_launcher_ios/ResourceBundle-url_launcher_ios_privacy-url_launcher_ios-Info.plist"; + IPHONEOS_DEPLOYMENT_TARGET = 13.0; + PRODUCT_NAME = url_launcher_ios_privacy; SDKROOT = iphoneos; SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_VERSION = 5.0; TARGETED_DEVICE_FAMILY = "1,2"; - "VALID_ARCHS[sdk=iphonesimulator*]" = "$(ARCHS_STANDARD)"; - VERSIONING_SYSTEM = "apple-generic"; - VERSION_INFO_PREFIX = ""; + VALIDATE_PRODUCT = YES; + WRAPPER_EXTENSION = bundle; }; - name = Debug; + name = "Debug-staging"; }; - ADB056EEAD38EA1EB57DB451C3749752 /* Debug-development */ = { + ADABC29C07E74E8096E35B1CC32C2A11 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 9281357EC3038ADC39C884ED1A1D94E1 /* flutter_inappwebview.release.xcconfig */; + baseConfigurationReference = 381A0F04776BF1B790F21030CA3BB8B3 /* package_info_plus.debug.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO; @@ -32425,20 +32433,20 @@ "EXCLUDED_ARCHS[sdk=iphoneos*]" = "$(inherited) armv7"; "EXCLUDED_ARCHS[sdk=iphonesimulator*]" = "$(inherited) i386"; "FRAMEWORK_SEARCH_PATHS[sdk=iphoneos*]" = ( - "\"/Users/user/flutter/bin/cache/artifacts/engine/ios-release/Flutter.xcframework/ios-arm64\"", + "\"/Users/user/flutter/bin/cache/artifacts/engine/ios/Flutter.xcframework/ios-arm64\"", "$(inherited)", ); "FRAMEWORK_SEARCH_PATHS[sdk=iphonesimulator*]" = ( - "\"/Users/user/flutter/bin/cache/artifacts/engine/ios-release/Flutter.xcframework/ios-arm64_x86_64-simulator\"", + "\"/Users/user/flutter/bin/cache/artifacts/engine/ios/Flutter.xcframework/ios-arm64_x86_64-simulator\"", "$(inherited)", ); - GCC_PREFIX_HEADER = "Target Support Files/flutter_inappwebview/flutter_inappwebview-prefix.pch"; + GCC_PREFIX_HEADER = "Target Support Files/package_info_plus/package_info_plus-prefix.pch"; GCC_PREPROCESSOR_DEFINITIONS = ( "$(inherited)", "PERMISSION_CAMERA=1", "PERMISSION_PHOTOS=1", ); - INFOPLIST_FILE = "Target Support Files/flutter_inappwebview/flutter_inappwebview-Info.plist"; + INFOPLIST_FILE = "Target Support Files/package_info_plus/package_info_plus-Info.plist"; INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; IPHONEOS_DEPLOYMENT_TARGET = 13.0; LD_RUNPATH_SEARCH_PATHS = ( @@ -32446,56 +32454,29 @@ "@executable_path/Frameworks", "@loader_path/Frameworks", ); - MODULEMAP_FILE = "Target Support Files/flutter_inappwebview/flutter_inappwebview.modulemap"; + MODULEMAP_FILE = "Target Support Files/package_info_plus/package_info_plus.modulemap"; + ONLY_ACTIVE_ARCH = NO; OTHER_LDFLAGS = ( "$(inherited)", "-framework", Flutter, ); - PRODUCT_MODULE_NAME = flutter_inappwebview; - PRODUCT_NAME = flutter_inappwebview; + PRODUCT_MODULE_NAME = package_info_plus; + PRODUCT_NAME = package_info_plus; SDKROOT = iphoneos; SKIP_INSTALL = YES; SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; SWIFT_VERSION = 5.0; TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; "VALID_ARCHS[sdk=iphonesimulator*]" = "$(ARCHS_STANDARD)"; VERSIONING_SYSTEM = "apple-generic"; VERSION_INFO_PREFIX = ""; }; - name = "Debug-development"; - }; - AE0175870735C10E7BCB81F3707EFE0B /* Profile-staging */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 86E540DA830E020FCC7DEA27000E1A98 /* shared_preferences_foundation.release.xcconfig */; - buildSettings = { - CLANG_ENABLE_OBJC_WEAK = NO; - CODE_SIGNING_ALLOWED = NO; - CODE_SIGNING_IDENTITY = "-"; - CODE_SIGNING_REQUIRED = NO; - CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/shared_preferences_foundation"; - EXPANDED_CODE_SIGN_IDENTITY = "-"; - GCC_PREPROCESSOR_DEFINITIONS = ( - "$(inherited)", - "PERMISSION_CAMERA=1", - "PERMISSION_PHOTOS=1", - ); - IBSC_MODULE = shared_preferences_foundation; - INFOPLIST_FILE = "Target Support Files/shared_preferences_foundation/ResourceBundle-shared_preferences_foundation_privacy-shared_preferences_foundation-Info.plist"; - IPHONEOS_DEPLOYMENT_TARGET = 13.0; - PRODUCT_NAME = shared_preferences_foundation_privacy; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; - WRAPPER_EXTENSION = bundle; - }; - name = "Profile-staging"; + name = Debug; }; - AEACB836C58B38564381343529275410 /* Profile-development */ = { + ADB056EEAD38EA1EB57DB451C3749752 /* Debug-development */ = { isa = XCBuildConfiguration; - baseConfigurationReference = C630DC976CFC529906571DA851643B86 /* integration_test.release.xcconfig */; + baseConfigurationReference = F3BAFA0B70330F234C6B8BF559E7A252 /* flutter_inappwebview.release.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO; @@ -32517,13 +32498,13 @@ "\"/Users/user/flutter/bin/cache/artifacts/engine/ios-release/Flutter.xcframework/ios-arm64_x86_64-simulator\"", "$(inherited)", ); - GCC_PREFIX_HEADER = "Target Support Files/integration_test/integration_test-prefix.pch"; + GCC_PREFIX_HEADER = "Target Support Files/flutter_inappwebview/flutter_inappwebview-prefix.pch"; GCC_PREPROCESSOR_DEFINITIONS = ( "$(inherited)", "PERMISSION_CAMERA=1", "PERMISSION_PHOTOS=1", ); - INFOPLIST_FILE = "Target Support Files/integration_test/integration_test-Info.plist"; + INFOPLIST_FILE = "Target Support Files/flutter_inappwebview/flutter_inappwebview-Info.plist"; INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; IPHONEOS_DEPLOYMENT_TARGET = 13.0; LD_RUNPATH_SEARCH_PATHS = ( @@ -32531,14 +32512,14 @@ "@executable_path/Frameworks", "@loader_path/Frameworks", ); - MODULEMAP_FILE = "Target Support Files/integration_test/integration_test.modulemap"; + MODULEMAP_FILE = "Target Support Files/flutter_inappwebview/flutter_inappwebview.modulemap"; OTHER_LDFLAGS = ( "$(inherited)", "-framework", Flutter, ); - PRODUCT_MODULE_NAME = integration_test; - PRODUCT_NAME = integration_test; + PRODUCT_MODULE_NAME = flutter_inappwebview; + PRODUCT_NAME = flutter_inappwebview; SDKROOT = iphoneos; SKIP_INSTALL = YES; SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; @@ -32549,74 +32530,66 @@ VERSIONING_SYSTEM = "apple-generic"; VERSION_INFO_PREFIX = ""; }; - name = "Profile-development"; + name = "Debug-development"; }; - AEDC76B3F1B8E264F7EE6023C50C3AC6 /* Release-staging */ = { + AE394D6FFE7CEEC59255203D8191E767 /* Stage-production */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 5D2B88AD25CD5EBE586D760474336767 /* MLKitBarcodeScanning.release.xcconfig */; + baseConfigurationReference = F9F252ACFB155ACF9BB56FB267880E01 /* url_launcher_ios.release.xcconfig */; buildSettings = { - ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; - ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; CLANG_ENABLE_OBJC_WEAK = NO; - GCC_PREPROCESSOR_DEFINITIONS = ( - "$(inherited)", - "PERMISSION_CAMERA=1", - "PERMISSION_PHOTOS=1", - ); - IPHONEOS_DEPLOYMENT_TARGET = 13.0; - LD_RUNPATH_SEARCH_PATHS = ( - "$(inherited)", - "@executable_path/Frameworks", - ); - SDKROOT = iphoneos; - TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; - }; - name = "Release-staging"; - }; - AF85A81F8C5BAD317D8A4F8AEEA11315 /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 86E540DA830E020FCC7DEA27000E1A98 /* shared_preferences_foundation.release.xcconfig */; - buildSettings = { CODE_SIGNING_ALLOWED = NO; CODE_SIGNING_IDENTITY = "-"; CODE_SIGNING_REQUIRED = NO; - CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/shared_preferences_foundation"; + CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/url_launcher_ios"; EXPANDED_CODE_SIGN_IDENTITY = "-"; GCC_PREPROCESSOR_DEFINITIONS = ( "$(inherited)", "PERMISSION_CAMERA=1", "PERMISSION_PHOTOS=1", ); - IBSC_MODULE = shared_preferences_foundation; - INFOPLIST_FILE = "Target Support Files/shared_preferences_foundation/ResourceBundle-shared_preferences_foundation_privacy-shared_preferences_foundation-Info.plist"; + IBSC_MODULE = url_launcher_ios; + INFOPLIST_FILE = "Target Support Files/url_launcher_ios/ResourceBundle-url_launcher_ios_privacy-url_launcher_ios-Info.plist"; IPHONEOS_DEPLOYMENT_TARGET = 13.0; - PRODUCT_NAME = shared_preferences_foundation_privacy; + PRODUCT_NAME = url_launcher_ios_privacy; SDKROOT = iphoneos; SKIP_INSTALL = YES; TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; WRAPPER_EXTENSION = bundle; }; - name = Release; + name = "Stage-production"; }; - AFA00EE83D042CF378F6B3235A268074 /* Stage-production */ = { + AEACB836C58B38564381343529275410 /* Profile-development */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 8ABCAE069412CFA453F913E4A7E0184B /* GoogleUtilities.release.xcconfig */; + baseConfigurationReference = 5ACA34BFC6EAE3E5A15EE45A206A60FA /* integration_test.release.xcconfig */; buildSettings = { + CLANG_ENABLE_OBJC_WEAK = NO; + CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = 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_BITCODE = NO; + "EXCLUDED_ARCHS[sdk=iphoneos*]" = "$(inherited) armv7"; + "EXCLUDED_ARCHS[sdk=iphonesimulator*]" = "$(inherited) i386"; + "FRAMEWORK_SEARCH_PATHS[sdk=iphoneos*]" = ( + "\"/Users/user/flutter/bin/cache/artifacts/engine/ios-release/Flutter.xcframework/ios-arm64\"", + "$(inherited)", + ); + "FRAMEWORK_SEARCH_PATHS[sdk=iphonesimulator*]" = ( + "\"/Users/user/flutter/bin/cache/artifacts/engine/ios-release/Flutter.xcframework/ios-arm64_x86_64-simulator\"", + "$(inherited)", + ); + GCC_PREFIX_HEADER = "Target Support Files/integration_test/integration_test-prefix.pch"; GCC_PREPROCESSOR_DEFINITIONS = ( "$(inherited)", "PERMISSION_CAMERA=1", "PERMISSION_PHOTOS=1", ); - INFOPLIST_FILE = "Target Support Files/GoogleUtilities/GoogleUtilities-Info.plist"; + INFOPLIST_FILE = "Target Support Files/integration_test/integration_test-Info.plist"; INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; IPHONEOS_DEPLOYMENT_TARGET = 13.0; LD_RUNPATH_SEARCH_PATHS = ( @@ -32624,23 +32597,81 @@ "@executable_path/Frameworks", "@loader_path/Frameworks", ); - MODULEMAP_FILE = "Target Support Files/GoogleUtilities/GoogleUtilities.modulemap"; - PRODUCT_MODULE_NAME = GoogleUtilities; - PRODUCT_NAME = GoogleUtilities; + MODULEMAP_FILE = "Target Support Files/integration_test/integration_test.modulemap"; + OTHER_LDFLAGS = ( + "$(inherited)", + "-framework", + Flutter, + ); + PRODUCT_MODULE_NAME = integration_test; + PRODUCT_NAME = integration_test; SDKROOT = iphoneos; SKIP_INSTALL = YES; SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; SWIFT_VERSION = 5.0; TARGETED_DEVICE_FAMILY = "1,2"; VALIDATE_PRODUCT = YES; + "VALID_ARCHS[sdk=iphonesimulator*]" = "$(ARCHS_STANDARD)"; VERSIONING_SYSTEM = "apple-generic"; VERSION_INFO_PREFIX = ""; }; - name = "Stage-production"; + name = "Profile-development"; + }; + AED994EE37D7A75270AE0BC651C6072F /* Debug-staging */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 57D6AA21B16FC3FF93AD29A67F768BB2 /* flutter_native_splash.release.xcconfig */; + buildSettings = { + CLANG_ENABLE_OBJC_WEAK = NO; + CODE_SIGNING_ALLOWED = NO; + CODE_SIGNING_IDENTITY = "-"; + CODE_SIGNING_REQUIRED = NO; + CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/flutter_native_splash"; + EXPANDED_CODE_SIGN_IDENTITY = "-"; + GCC_PREPROCESSOR_DEFINITIONS = ( + "$(inherited)", + "PERMISSION_CAMERA=1", + "PERMISSION_PHOTOS=1", + ); + IBSC_MODULE = flutter_native_splash; + INFOPLIST_FILE = "Target Support Files/flutter_native_splash/ResourceBundle-flutter_native_splash_privacy-flutter_native_splash-Info.plist"; + IPHONEOS_DEPLOYMENT_TARGET = 13.0; + PRODUCT_NAME = flutter_native_splash_privacy; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; + WRAPPER_EXTENSION = bundle; + }; + name = "Debug-staging"; + }; + AFA71CFA8F162E5A3455630310AF1D7F /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 2529F7B6D57D43838BFCB332D2EDFE47 /* path_provider_foundation.release.xcconfig */; + buildSettings = { + CODE_SIGNING_ALLOWED = NO; + CODE_SIGNING_IDENTITY = "-"; + CODE_SIGNING_REQUIRED = NO; + CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/path_provider_foundation"; + EXPANDED_CODE_SIGN_IDENTITY = "-"; + GCC_PREPROCESSOR_DEFINITIONS = ( + "$(inherited)", + "PERMISSION_CAMERA=1", + "PERMISSION_PHOTOS=1", + ); + IBSC_MODULE = path_provider_foundation; + INFOPLIST_FILE = "Target Support Files/path_provider_foundation/ResourceBundle-path_provider_foundation_privacy-path_provider_foundation-Info.plist"; + IPHONEOS_DEPLOYMENT_TARGET = 13.0; + PRODUCT_NAME = path_provider_foundation_privacy; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + TARGETED_DEVICE_FAMILY = "1,2"; + WRAPPER_EXTENSION = bundle; + }; + name = Release; }; B006E81CBEA246544677561A8F546F60 /* Profile-production */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 9311BBA346794A168AC09B1625AB1683 /* path_provider_foundation.release.xcconfig */; + baseConfigurationReference = 2529F7B6D57D43838BFCB332D2EDFE47 /* path_provider_foundation.release.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO; @@ -32694,7 +32725,7 @@ }; B019B32FFD0D03D7A4B47D9355F0C040 /* Release-staging */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 06772A7CF38F34E24C0E8F60729C6339 /* local_auth_darwin.release.xcconfig */; + baseConfigurationReference = 9ECF4B2E725AF88A4D8BD77668F776C4 /* local_auth_darwin.release.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO; @@ -32750,32 +32781,9 @@ }; name = "Release-staging"; }; - B02C0173BCF6BF25841EED42A7267E4F /* Stage-production */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = FE5C3B02302BE4DBC83D2A553D5F5C1B /* MLKitVision.release.xcconfig */; - buildSettings = { - ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; - ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; - CLANG_ENABLE_OBJC_WEAK = NO; - GCC_PREPROCESSOR_DEFINITIONS = ( - "$(inherited)", - "PERMISSION_CAMERA=1", - "PERMISSION_PHOTOS=1", - ); - IPHONEOS_DEPLOYMENT_TARGET = 13.0; - LD_RUNPATH_SEARCH_PATHS = ( - "$(inherited)", - "@executable_path/Frameworks", - ); - SDKROOT = iphoneos; - TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; - }; - name = "Stage-production"; - }; B11BC2ACAA9330CF2BE20011417A25CD /* Stage-production */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 3C623764A02C0B6BA3A628060F65377B /* flutter_native_splash.release.xcconfig */; + baseConfigurationReference = 57D6AA21B16FC3FF93AD29A67F768BB2 /* flutter_native_splash.release.xcconfig */; buildSettings = { CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -32892,36 +32900,9 @@ }; name = "Profile-development"; }; - B17D3F88D950FB68B20FD63BE0287F3F /* Debug-development */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 86E540DA830E020FCC7DEA27000E1A98 /* shared_preferences_foundation.release.xcconfig */; - buildSettings = { - CLANG_ENABLE_OBJC_WEAK = NO; - CODE_SIGNING_ALLOWED = NO; - CODE_SIGNING_IDENTITY = "-"; - CODE_SIGNING_REQUIRED = NO; - CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/shared_preferences_foundation"; - EXPANDED_CODE_SIGN_IDENTITY = "-"; - GCC_PREPROCESSOR_DEFINITIONS = ( - "$(inherited)", - "PERMISSION_CAMERA=1", - "PERMISSION_PHOTOS=1", - ); - IBSC_MODULE = shared_preferences_foundation; - INFOPLIST_FILE = "Target Support Files/shared_preferences_foundation/ResourceBundle-shared_preferences_foundation_privacy-shared_preferences_foundation-Info.plist"; - IPHONEOS_DEPLOYMENT_TARGET = 13.0; - PRODUCT_NAME = shared_preferences_foundation_privacy; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; - WRAPPER_EXTENSION = bundle; - }; - name = "Debug-development"; - }; B1B8937AF20248E996FACC0DB538536F /* Debug-development */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 73DB9045D22A4FBE50F8FACF34C6F052 /* url_launcher_ios.release.xcconfig */; + baseConfigurationReference = F9F252ACFB155ACF9BB56FB267880E01 /* url_launcher_ios.release.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO; @@ -32972,14 +32953,16 @@ }; name = "Debug-development"; }; - B2B0D7C74FDDD7BFED271FBAC442A315 /* Debug-development */ = { + B38BA9496F0858BBF0D51E599A3264D7 /* Profile-production */ = { isa = XCBuildConfiguration; - baseConfigurationReference = FC4CA41561F8B1B855AED3763329DD2C /* PromisesObjC.release.xcconfig */; + baseConfigurationReference = D4F18F4F6B39AC1431EB143FE2915402 /* GoogleUtilitiesComponents.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"; @@ -32988,7 +32971,7 @@ "PERMISSION_CAMERA=1", "PERMISSION_PHOTOS=1", ); - INFOPLIST_FILE = "Target Support Files/PromisesObjC/PromisesObjC-Info.plist"; + INFOPLIST_FILE = "Target Support Files/GoogleUtilitiesComponents/GoogleUtilitiesComponents-Info.plist"; INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; IPHONEOS_DEPLOYMENT_TARGET = 13.0; LD_RUNPATH_SEARCH_PATHS = ( @@ -32996,9 +32979,10 @@ "@executable_path/Frameworks", "@loader_path/Frameworks", ); - MODULEMAP_FILE = "Target Support Files/PromisesObjC/PromisesObjC.modulemap"; - PRODUCT_MODULE_NAME = FBLPromises; - PRODUCT_NAME = FBLPromises; + MACH_O_TYPE = staticlib; + MODULEMAP_FILE = "Target Support Files/GoogleUtilitiesComponents/GoogleUtilitiesComponents.modulemap"; + PRODUCT_MODULE_NAME = GoogleUtilitiesComponents; + PRODUCT_NAME = GoogleUtilitiesComponents; SDKROOT = iphoneos; SKIP_INSTALL = YES; SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; @@ -33008,84 +32992,11 @@ VERSIONING_SYSTEM = "apple-generic"; VERSION_INFO_PREFIX = ""; }; - name = "Debug-development"; - }; - B2CC7BDE75695DBE3DC0A93F1F067EDB /* Profile-development */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 85EF9BEBA8B20A13BA96488C86CD663A /* MLKitCommon.release.xcconfig */; - buildSettings = { - ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; - ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; - CLANG_ENABLE_OBJC_WEAK = NO; - GCC_PREPROCESSOR_DEFINITIONS = ( - "$(inherited)", - "PERMISSION_CAMERA=1", - "PERMISSION_PHOTOS=1", - ); - IPHONEOS_DEPLOYMENT_TARGET = 13.0; - LD_RUNPATH_SEARCH_PATHS = ( - "$(inherited)", - "@executable_path/Frameworks", - ); - SDKROOT = iphoneos; - TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; - }; - name = "Profile-development"; - }; - B330677319030E19188EA8D804A1520F /* Profile-production */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 26DCE60E629963FB754A022AED7ACC73 /* MLImage.release.xcconfig */; - buildSettings = { - ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; - ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; - CLANG_ENABLE_OBJC_WEAK = NO; - GCC_PREPROCESSOR_DEFINITIONS = ( - "$(inherited)", - "PERMISSION_CAMERA=1", - "PERMISSION_PHOTOS=1", - ); - IPHONEOS_DEPLOYMENT_TARGET = 13.0; - LD_RUNPATH_SEARCH_PATHS = ( - "$(inherited)", - "@executable_path/Frameworks", - ); - SDKROOT = iphoneos; - TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; - }; name = "Profile-production"; }; - B346E839C5B1D563D845AF0C9E003AA9 /* Debug-development */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 3C623764A02C0B6BA3A628060F65377B /* flutter_native_splash.release.xcconfig */; - buildSettings = { - CLANG_ENABLE_OBJC_WEAK = NO; - CODE_SIGNING_ALLOWED = NO; - CODE_SIGNING_IDENTITY = "-"; - CODE_SIGNING_REQUIRED = NO; - CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/flutter_native_splash"; - EXPANDED_CODE_SIGN_IDENTITY = "-"; - GCC_PREPROCESSOR_DEFINITIONS = ( - "$(inherited)", - "PERMISSION_CAMERA=1", - "PERMISSION_PHOTOS=1", - ); - IBSC_MODULE = flutter_native_splash; - INFOPLIST_FILE = "Target Support Files/flutter_native_splash/ResourceBundle-flutter_native_splash_privacy-flutter_native_splash-Info.plist"; - IPHONEOS_DEPLOYMENT_TARGET = 13.0; - PRODUCT_NAME = flutter_native_splash_privacy; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; - WRAPPER_EXTENSION = bundle; - }; - name = "Debug-development"; - }; B4E00AF89F164123B3A6E0F244C274FA /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = A39F67D29C8FDC76E1F5C5300DE3CAD5 /* mobile_scanner.debug.xcconfig */; + baseConfigurationReference = 4D8D74E861EB0F6DC174DEE3768D4ECC /* mobile_scanner.debug.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO; @@ -33144,7 +33055,7 @@ }; B4E4FADB2D8205F4F30B05C91C372AE6 /* Debug-production */ = { isa = XCBuildConfiguration; - baseConfigurationReference = C630DC976CFC529906571DA851643B86 /* integration_test.release.xcconfig */; + baseConfigurationReference = 5ACA34BFC6EAE3E5A15EE45A206A60FA /* integration_test.release.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO; @@ -33202,7 +33113,7 @@ }; B53BD3743E974F2A35A78737CB7603B8 /* Profile-production */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 1E47B40DD78F33D7394C9CDADE9B41A7 /* share_plus.release.xcconfig */; + baseConfigurationReference = 196B9320A9BD7C09E7C5420F49D709B3 /* share_plus.release.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO; @@ -33258,6 +33169,31 @@ }; name = "Profile-production"; }; + B56CE4B180ADFC29BCEC44A50656D5B5 /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 57D6AA21B16FC3FF93AD29A67F768BB2 /* flutter_native_splash.release.xcconfig */; + buildSettings = { + CODE_SIGNING_ALLOWED = NO; + CODE_SIGNING_IDENTITY = "-"; + CODE_SIGNING_REQUIRED = NO; + CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/flutter_native_splash"; + EXPANDED_CODE_SIGN_IDENTITY = "-"; + GCC_PREPROCESSOR_DEFINITIONS = ( + "$(inherited)", + "PERMISSION_CAMERA=1", + "PERMISSION_PHOTOS=1", + ); + IBSC_MODULE = flutter_native_splash; + INFOPLIST_FILE = "Target Support Files/flutter_native_splash/ResourceBundle-flutter_native_splash_privacy-flutter_native_splash-Info.plist"; + IPHONEOS_DEPLOYMENT_TARGET = 13.0; + PRODUCT_NAME = flutter_native_splash_privacy; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + TARGETED_DEVICE_FAMILY = "1,2"; + WRAPPER_EXTENSION = bundle; + }; + name = Release; + }; B57CA2919361757DD4ECD3B7E9569203 /* Stage-production */ = { isa = XCBuildConfiguration; baseConfigurationReference = C3A8E22467ADEB42B7D83259E1A6F078 /* Sentry.release.xcconfig */; @@ -33301,7 +33237,7 @@ }; B588237C5F02088AC1ACDAB9CF5725BD /* Profile-staging */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 9281357EC3038ADC39C884ED1A1D94E1 /* flutter_inappwebview.release.xcconfig */; + baseConfigurationReference = F3BAFA0B70330F234C6B8BF559E7A252 /* flutter_inappwebview.release.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO; @@ -33359,7 +33295,7 @@ }; B59F7A523B793BD31C7C7436ECABB84F /* Release-development */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 9D69F5F0798882A34E95D912A7DDF7B1 /* sentry_flutter.release.xcconfig */; + baseConfigurationReference = 28C6A92040B7AE9155DE2648EB0D7296 /* sentry_flutter.release.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO; @@ -33417,7 +33353,7 @@ }; B5AC638BA0472086E3FAA53E645D28D1 /* Release-development */ = { isa = XCBuildConfiguration; - baseConfigurationReference = A7D0232BFA7DB2BABBC206DCBF4E211C /* flutter_email_sender.release.xcconfig */; + baseConfigurationReference = 59E64776226CA679807D58D84423DF5F /* flutter_email_sender.release.xcconfig */; buildSettings = { CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -33498,7 +33434,7 @@ }; B63DB5AC9220E7C07F495B12DB93AFFD /* Release-production */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 7B2F4BE2D901E9309159228CD856EBAF /* flutter_secure_storage.release.xcconfig */; + baseConfigurationReference = 13146A48D1544CF0CF218B3A514C848E /* flutter_secure_storage.release.xcconfig */; buildSettings = { CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -33553,6 +33489,33 @@ }; name = "Release-production"; }; + B671BFCEF0884BE70A6F63F4E238A9BD /* Debug-development */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 19CE9AC8B13646CC03FBC77F131FF183 /* GoogleDataTransport.release.xcconfig */; + buildSettings = { + CLANG_ENABLE_OBJC_WEAK = NO; + CODE_SIGNING_ALLOWED = NO; + CODE_SIGNING_IDENTITY = "-"; + CODE_SIGNING_REQUIRED = NO; + CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/GoogleDataTransport"; + EXPANDED_CODE_SIGN_IDENTITY = "-"; + GCC_PREPROCESSOR_DEFINITIONS = ( + "$(inherited)", + "PERMISSION_CAMERA=1", + "PERMISSION_PHOTOS=1", + ); + IBSC_MODULE = GoogleDataTransport; + INFOPLIST_FILE = "Target Support Files/GoogleDataTransport/ResourceBundle-GoogleDataTransport_Privacy-GoogleDataTransport-Info.plist"; + IPHONEOS_DEPLOYMENT_TARGET = 13.0; + PRODUCT_NAME = GoogleDataTransport_Privacy; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; + WRAPPER_EXTENSION = bundle; + }; + name = "Debug-development"; + }; B6A7BA6DE85D6E8BDABE1AF80717FBD8 /* Release */ = { isa = XCBuildConfiguration; baseConfigurationReference = 9DAA7B5E5871B37317E0633BE9DB4156 /* OrderedSet.release.xcconfig */; @@ -33595,7 +33558,7 @@ }; B6E620BA13D6563E7E13E934582CB6DE /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = B91357BF97DBAECE656386331F10CCFD /* sqflite.release.xcconfig */; + baseConfigurationReference = B3F81CBF23C2B71680A734B4B74EA6EF /* sqflite.release.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO; @@ -33651,32 +33614,63 @@ }; name = Release; }; - B7C9E068DCD3576C016F59FEF585E578 /* Profile-development */ = { + B6F0E92313CC24BDDC94F0A53AAA27BA /* Profile-production */ = { isa = XCBuildConfiguration; - baseConfigurationReference = FE5C3B02302BE4DBC83D2A553D5F5C1B /* MLKitVision.release.xcconfig */; + baseConfigurationReference = 0F62AA5AF0EE048AB478074EDD1A2CD4 /* connectivity_plus.release.xcconfig */; buildSettings = { - ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; - ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; CLANG_ENABLE_OBJC_WEAK = NO; + CODE_SIGNING_ALLOWED = NO; + CODE_SIGNING_IDENTITY = "-"; + CODE_SIGNING_REQUIRED = NO; + CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/connectivity_plus"; + EXPANDED_CODE_SIGN_IDENTITY = "-"; GCC_PREPROCESSOR_DEFINITIONS = ( "$(inherited)", "PERMISSION_CAMERA=1", "PERMISSION_PHOTOS=1", ); + IBSC_MODULE = connectivity_plus; + INFOPLIST_FILE = "Target Support Files/connectivity_plus/ResourceBundle-connectivity_plus_privacy-connectivity_plus-Info.plist"; IPHONEOS_DEPLOYMENT_TARGET = 13.0; - LD_RUNPATH_SEARCH_PATHS = ( + PRODUCT_NAME = connectivity_plus_privacy; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; + WRAPPER_EXTENSION = bundle; + }; + name = "Profile-production"; + }; + B79A29292296F9943A574B930234E879 /* Release-production */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 196B9320A9BD7C09E7C5420F49D709B3 /* share_plus.release.xcconfig */; + buildSettings = { + CLANG_ENABLE_OBJC_WEAK = NO; + CODE_SIGNING_ALLOWED = NO; + CODE_SIGNING_IDENTITY = "-"; + CODE_SIGNING_REQUIRED = NO; + CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/share_plus"; + EXPANDED_CODE_SIGN_IDENTITY = "-"; + GCC_PREPROCESSOR_DEFINITIONS = ( "$(inherited)", - "@executable_path/Frameworks", + "PERMISSION_CAMERA=1", + "PERMISSION_PHOTOS=1", ); + IBSC_MODULE = share_plus; + INFOPLIST_FILE = "Target Support Files/share_plus/ResourceBundle-share_plus_privacy-share_plus-Info.plist"; + IPHONEOS_DEPLOYMENT_TARGET = 13.0; + PRODUCT_NAME = share_plus_privacy; SDKROOT = iphoneos; + SKIP_INSTALL = YES; TARGETED_DEVICE_FAMILY = "1,2"; VALIDATE_PRODUCT = YES; + WRAPPER_EXTENSION = bundle; }; - name = "Profile-development"; + name = "Release-production"; }; - B82805A753733B6EEC69B5238A5D608F /* Debug-production */ = { + B7A30AD9F6ABF632D72734CCACB10BCD /* Release-staging */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 5D2B88AD25CD5EBE586D760474336767 /* MLKitBarcodeScanning.release.xcconfig */; + baseConfigurationReference = 26DCE60E629963FB754A022AED7ACC73 /* MLImage.release.xcconfig */; buildSettings = { ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; @@ -33695,38 +33689,37 @@ TARGETED_DEVICE_FAMILY = "1,2"; VALIDATE_PRODUCT = YES; }; - name = "Debug-production"; + name = "Release-staging"; }; - B86F34D5B0ABB740999641034BFBF1C7 /* Release-development */ = { + B8A089A0738271F25CE641F0426A30FA /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = A7D0232BFA7DB2BABBC206DCBF4E211C /* flutter_email_sender.release.xcconfig */; + baseConfigurationReference = 665D58522994802C9F46348C975A8E0A /* flutter_native_splash.debug.xcconfig */; buildSettings = { - CLANG_ENABLE_OBJC_WEAK = NO; CODE_SIGNING_ALLOWED = NO; CODE_SIGNING_IDENTITY = "-"; CODE_SIGNING_REQUIRED = NO; - CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/flutter_email_sender"; + CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/flutter_native_splash"; EXPANDED_CODE_SIGN_IDENTITY = "-"; GCC_PREPROCESSOR_DEFINITIONS = ( "$(inherited)", "PERMISSION_CAMERA=1", "PERMISSION_PHOTOS=1", ); - IBSC_MODULE = flutter_email_sender; - INFOPLIST_FILE = "Target Support Files/flutter_email_sender/ResourceBundle-flutter_email_sender-flutter_email_sender-Info.plist"; + IBSC_MODULE = flutter_native_splash; + INFOPLIST_FILE = "Target Support Files/flutter_native_splash/ResourceBundle-flutter_native_splash_privacy-flutter_native_splash-Info.plist"; IPHONEOS_DEPLOYMENT_TARGET = 13.0; - PRODUCT_NAME = flutter_email_sender; + ONLY_ACTIVE_ARCH = NO; + PRODUCT_NAME = flutter_native_splash_privacy; SDKROOT = iphoneos; SKIP_INSTALL = YES; TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; WRAPPER_EXTENSION = bundle; }; - name = "Release-development"; + name = Debug; }; B8BBA6B8C498FB380F0DC0DF0515900F /* Release-development */ = { isa = XCBuildConfiguration; - baseConfigurationReference = B91357BF97DBAECE656386331F10CCFD /* sqflite.release.xcconfig */; + baseConfigurationReference = B3F81CBF23C2B71680A734B4B74EA6EF /* sqflite.release.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO; @@ -33782,36 +33775,36 @@ }; name = "Release-development"; }; - B8E6120A24B49DDD81A8689051E59CCB /* Profile-development */ = { + B8F5B2FFD13C12A2B2DE31C5AF7B5233 /* Profile */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 9311BBA346794A168AC09B1625AB1683 /* path_provider_foundation.release.xcconfig */; + baseConfigurationReference = 0F62AA5AF0EE048AB478074EDD1A2CD4 /* connectivity_plus.release.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; CODE_SIGNING_ALLOWED = NO; CODE_SIGNING_IDENTITY = "-"; CODE_SIGNING_REQUIRED = NO; - CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/path_provider_foundation"; + CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/connectivity_plus"; EXPANDED_CODE_SIGN_IDENTITY = "-"; GCC_PREPROCESSOR_DEFINITIONS = ( "$(inherited)", "PERMISSION_CAMERA=1", "PERMISSION_PHOTOS=1", ); - IBSC_MODULE = path_provider_foundation; - INFOPLIST_FILE = "Target Support Files/path_provider_foundation/ResourceBundle-path_provider_foundation_privacy-path_provider_foundation-Info.plist"; + IBSC_MODULE = connectivity_plus; + INFOPLIST_FILE = "Target Support Files/connectivity_plus/ResourceBundle-connectivity_plus_privacy-connectivity_plus-Info.plist"; IPHONEOS_DEPLOYMENT_TARGET = 13.0; - PRODUCT_NAME = path_provider_foundation_privacy; + PRODUCT_NAME = connectivity_plus_privacy; SDKROOT = iphoneos; SKIP_INSTALL = YES; TARGETED_DEVICE_FAMILY = "1,2"; VALIDATE_PRODUCT = YES; WRAPPER_EXTENSION = bundle; }; - name = "Profile-development"; + name = Profile; }; B9174BF2A32FE46FBA089B83EEC8A315 /* Release-staging */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 9D69F5F0798882A34E95D912A7DDF7B1 /* sentry_flutter.release.xcconfig */; + baseConfigurationReference = 28C6A92040B7AE9155DE2648EB0D7296 /* sentry_flutter.release.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO; @@ -33867,36 +33860,35 @@ }; name = "Release-staging"; }; - B925C284828DA5DA74753E14D5C49F97 /* Release-development */ = { + B9346F84176874C189C5E061C9FD0DBA /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 86E540DA830E020FCC7DEA27000E1A98 /* shared_preferences_foundation.release.xcconfig */; + baseConfigurationReference = 8245B503917DB437609D1F307FE126A4 /* share_plus.debug.xcconfig */; buildSettings = { - CLANG_ENABLE_OBJC_WEAK = NO; CODE_SIGNING_ALLOWED = NO; CODE_SIGNING_IDENTITY = "-"; CODE_SIGNING_REQUIRED = NO; - CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/shared_preferences_foundation"; + CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/share_plus"; EXPANDED_CODE_SIGN_IDENTITY = "-"; GCC_PREPROCESSOR_DEFINITIONS = ( "$(inherited)", "PERMISSION_CAMERA=1", "PERMISSION_PHOTOS=1", ); - IBSC_MODULE = shared_preferences_foundation; - INFOPLIST_FILE = "Target Support Files/shared_preferences_foundation/ResourceBundle-shared_preferences_foundation_privacy-shared_preferences_foundation-Info.plist"; + IBSC_MODULE = share_plus; + INFOPLIST_FILE = "Target Support Files/share_plus/ResourceBundle-share_plus_privacy-share_plus-Info.plist"; IPHONEOS_DEPLOYMENT_TARGET = 13.0; - PRODUCT_NAME = shared_preferences_foundation_privacy; + ONLY_ACTIVE_ARCH = NO; + PRODUCT_NAME = share_plus_privacy; SDKROOT = iphoneos; SKIP_INSTALL = YES; TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; WRAPPER_EXTENSION = bundle; }; - name = "Release-development"; + name = Debug; }; B95723ABF757B6DC9D12DA78F4F947B3 /* Profile */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 6D3FC8F30A9759CEC467C9CBCFF1BDA6 /* mobile_scanner.release.xcconfig */; + baseConfigurationReference = 55CABBFDA741B6809730DEE1165E60C9 /* mobile_scanner.release.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO; @@ -33953,9 +33945,70 @@ }; name = Profile; }; + B96B7135160B89411E9D982E91543E2E /* Release-development */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 5D2B88AD25CD5EBE586D760474336767 /* MLKitBarcodeScanning.release.xcconfig */; + buildSettings = { + ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; + ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; + CLANG_ENABLE_OBJC_WEAK = NO; + GCC_PREPROCESSOR_DEFINITIONS = ( + "$(inherited)", + "PERMISSION_CAMERA=1", + "PERMISSION_PHOTOS=1", + ); + IPHONEOS_DEPLOYMENT_TARGET = 13.0; + LD_RUNPATH_SEARCH_PATHS = ( + "$(inherited)", + "@executable_path/Frameworks", + ); + SDKROOT = iphoneos; + TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; + }; + name = "Release-development"; + }; + BA1CB87AD65EE1A3DE14B38AA532A792 /* Release-staging */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = FC4CA41561F8B1B855AED3763329DD2C /* 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"; + GCC_PREPROCESSOR_DEFINITIONS = ( + "$(inherited)", + "PERMISSION_CAMERA=1", + "PERMISSION_PHOTOS=1", + ); + INFOPLIST_FILE = "Target Support Files/PromisesObjC/PromisesObjC-Info.plist"; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; + IPHONEOS_DEPLOYMENT_TARGET = 13.0; + LD_RUNPATH_SEARCH_PATHS = ( + "$(inherited)", + "@executable_path/Frameworks", + "@loader_path/Frameworks", + ); + 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_VERSION = 5.0; + TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; + VERSIONING_SYSTEM = "apple-generic"; + VERSION_INFO_PREFIX = ""; + }; + name = "Release-staging"; + }; BA4EB6864DED91055AC66AFC978A3196 /* Debug-staging */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 1E47B40DD78F33D7394C9CDADE9B41A7 /* share_plus.release.xcconfig */; + baseConfigurationReference = 196B9320A9BD7C09E7C5420F49D709B3 /* share_plus.release.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO; @@ -34013,7 +34066,7 @@ }; BA8560BB976B557791C144DF61E508F2 /* Release-development */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 869E5D3B5708F94FBC923E7B50C1DD07 /* flutter_nekoton_bridge.release.xcconfig */; + baseConfigurationReference = 5B385CBA22624866DCD19C0B8CCF9C42 /* flutter_nekoton_bridge.release.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -34052,6 +34105,87 @@ }; name = "Release-development"; }; + BABC86AD84039D11C924F3EA7251B369 /* Stage-production */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 59E64776226CA679807D58D84423DF5F /* flutter_email_sender.release.xcconfig */; + buildSettings = { + CLANG_ENABLE_OBJC_WEAK = NO; + CODE_SIGNING_ALLOWED = NO; + CODE_SIGNING_IDENTITY = "-"; + CODE_SIGNING_REQUIRED = NO; + CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/flutter_email_sender"; + EXPANDED_CODE_SIGN_IDENTITY = "-"; + GCC_PREPROCESSOR_DEFINITIONS = ( + "$(inherited)", + "PERMISSION_CAMERA=1", + "PERMISSION_PHOTOS=1", + ); + IBSC_MODULE = flutter_email_sender; + INFOPLIST_FILE = "Target Support Files/flutter_email_sender/ResourceBundle-flutter_email_sender-flutter_email_sender-Info.plist"; + IPHONEOS_DEPLOYMENT_TARGET = 13.0; + PRODUCT_NAME = flutter_email_sender; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; + WRAPPER_EXTENSION = bundle; + }; + name = "Stage-production"; + }; + BAEF0A40828EAE5C51A0AA00B1C77573 /* Debug-development */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 4BB6D83A83366DD3295B456FF36F5E3F /* permission_handler_apple.release.xcconfig */; + buildSettings = { + CLANG_ENABLE_OBJC_WEAK = NO; + CODE_SIGNING_ALLOWED = NO; + CODE_SIGNING_IDENTITY = "-"; + CODE_SIGNING_REQUIRED = NO; + CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/permission_handler_apple"; + EXPANDED_CODE_SIGN_IDENTITY = "-"; + GCC_PREPROCESSOR_DEFINITIONS = ( + "$(inherited)", + "PERMISSION_CAMERA=1", + "PERMISSION_PHOTOS=1", + ); + IBSC_MODULE = permission_handler_apple; + INFOPLIST_FILE = "Target Support Files/permission_handler_apple/ResourceBundle-permission_handler_apple_privacy-permission_handler_apple-Info.plist"; + IPHONEOS_DEPLOYMENT_TARGET = 13.0; + PRODUCT_NAME = permission_handler_apple_privacy; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; + WRAPPER_EXTENSION = bundle; + }; + name = "Debug-development"; + }; + BB193D0F57AA5578369F0048FA064580 /* Stage-production */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 98AE98BF8E201BFC344D7356F2883701 /* image_picker_ios.release.xcconfig */; + buildSettings = { + CLANG_ENABLE_OBJC_WEAK = NO; + CODE_SIGNING_ALLOWED = NO; + CODE_SIGNING_IDENTITY = "-"; + CODE_SIGNING_REQUIRED = NO; + CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/image_picker_ios"; + EXPANDED_CODE_SIGN_IDENTITY = "-"; + GCC_PREPROCESSOR_DEFINITIONS = ( + "$(inherited)", + "PERMISSION_CAMERA=1", + "PERMISSION_PHOTOS=1", + ); + IBSC_MODULE = image_picker_ios; + INFOPLIST_FILE = "Target Support Files/image_picker_ios/ResourceBundle-image_picker_ios_privacy-image_picker_ios-Info.plist"; + IPHONEOS_DEPLOYMENT_TARGET = 13.0; + PRODUCT_NAME = image_picker_ios_privacy; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; + WRAPPER_EXTENSION = bundle; + }; + name = "Stage-production"; + }; BB287B81D2655DCD3A7295FD79FAE052 /* Profile */ = { isa = XCBuildConfiguration; baseConfigurationReference = 5D2DA3CB411FF35D30470F3AEFA259CB /* Flutter.release.xcconfig */; @@ -34075,11 +34209,118 @@ }; name = Profile; }; - BB49BF2187BDDEE02FBC8017C89B299F /* Debug-production */ = { + BB4940E9B4FDDD94A5084953AF4960B6 /* Release-production */ = { isa = XCBuildConfiguration; - baseConfigurationReference = D4F18F4F6B39AC1431EB143FE2915402 /* GoogleUtilitiesComponents.release.xcconfig */; + baseConfigurationReference = 5D2B88AD25CD5EBE586D760474336767 /* MLKitBarcodeScanning.release.xcconfig */; buildSettings = { + ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; + ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; CLANG_ENABLE_OBJC_WEAK = NO; + GCC_PREPROCESSOR_DEFINITIONS = ( + "$(inherited)", + "PERMISSION_CAMERA=1", + "PERMISSION_PHOTOS=1", + ); + IPHONEOS_DEPLOYMENT_TARGET = 13.0; + LD_RUNPATH_SEARCH_PATHS = ( + "$(inherited)", + "@executable_path/Frameworks", + ); + SDKROOT = iphoneos; + TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; + }; + name = "Release-production"; + }; + BB9FA07F7052ABACFB9838CD45E70D47 /* Profile */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 6201BD6C84B86BD570988C7E3B8409CB /* package_info_plus.release.xcconfig */; + buildSettings = { + CLANG_ENABLE_OBJC_WEAK = NO; + CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = 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_BITCODE = NO; + "EXCLUDED_ARCHS[sdk=iphoneos*]" = "$(inherited) armv7"; + "EXCLUDED_ARCHS[sdk=iphonesimulator*]" = "$(inherited) i386"; + "FRAMEWORK_SEARCH_PATHS[sdk=iphoneos*]" = ( + "\"/Users/user/flutter/bin/cache/artifacts/engine/ios-release/Flutter.xcframework/ios-arm64\"", + "$(inherited)", + ); + "FRAMEWORK_SEARCH_PATHS[sdk=iphonesimulator*]" = ( + "\"/Users/user/flutter/bin/cache/artifacts/engine/ios-release/Flutter.xcframework/ios-arm64_x86_64-simulator\"", + "$(inherited)", + ); + GCC_PREFIX_HEADER = "Target Support Files/package_info_plus/package_info_plus-prefix.pch"; + GCC_PREPROCESSOR_DEFINITIONS = ( + "$(inherited)", + "PERMISSION_CAMERA=1", + "PERMISSION_PHOTOS=1", + ); + INFOPLIST_FILE = "Target Support Files/package_info_plus/package_info_plus-Info.plist"; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; + IPHONEOS_DEPLOYMENT_TARGET = 13.0; + LD_RUNPATH_SEARCH_PATHS = ( + "$(inherited)", + "@executable_path/Frameworks", + "@loader_path/Frameworks", + ); + MODULEMAP_FILE = "Target Support Files/package_info_plus/package_info_plus.modulemap"; + OTHER_LDFLAGS = ( + "$(inherited)", + "-framework", + Flutter, + ); + PRODUCT_MODULE_NAME = package_info_plus; + PRODUCT_NAME = package_info_plus; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; + SWIFT_VERSION = 5.0; + TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; + "VALID_ARCHS[sdk=iphonesimulator*]" = "$(ARCHS_STANDARD)"; + VERSIONING_SYSTEM = "apple-generic"; + VERSION_INFO_PREFIX = ""; + }; + name = Profile; + }; + BBCDACDEBC2F09D7BF63DCA7F3C1C68A /* Release-development */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = FC4CA41561F8B1B855AED3763329DD2C /* PromisesObjC.release.xcconfig */; + buildSettings = { + CLANG_ENABLE_OBJC_WEAK = NO; + CODE_SIGNING_ALLOWED = NO; + CODE_SIGNING_IDENTITY = "-"; + CODE_SIGNING_REQUIRED = NO; + CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/PromisesObjC"; + EXPANDED_CODE_SIGN_IDENTITY = "-"; + GCC_PREPROCESSOR_DEFINITIONS = ( + "$(inherited)", + "PERMISSION_CAMERA=1", + "PERMISSION_PHOTOS=1", + ); + IBSC_MODULE = FBLPromises; + INFOPLIST_FILE = "Target Support Files/PromisesObjC/ResourceBundle-FBLPromises_Privacy-PromisesObjC-Info.plist"; + IPHONEOS_DEPLOYMENT_TARGET = 13.0; + PRODUCT_NAME = FBLPromises_Privacy; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; + WRAPPER_EXTENSION = bundle; + }; + name = "Release-development"; + }; + BC6DDD3117D51129F519EBA1F143335A /* Debug-production */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 0E95E1622AE3A8ECD9572E38ECCC7DA7 /* GoogleToolboxForMac.release.xcconfig */; + buildSettings = { "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; @@ -34088,12 +34329,13 @@ DYLIB_COMPATIBILITY_VERSION = 1; DYLIB_CURRENT_VERSION = 1; DYLIB_INSTALL_NAME_BASE = "@rpath"; + GCC_PREFIX_HEADER = "Target Support Files/GoogleToolboxForMac/GoogleToolboxForMac-prefix.pch"; GCC_PREPROCESSOR_DEFINITIONS = ( "$(inherited)", "PERMISSION_CAMERA=1", "PERMISSION_PHOTOS=1", ); - INFOPLIST_FILE = "Target Support Files/GoogleUtilitiesComponents/GoogleUtilitiesComponents-Info.plist"; + INFOPLIST_FILE = "Target Support Files/GoogleToolboxForMac/GoogleToolboxForMac-Info.plist"; INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; IPHONEOS_DEPLOYMENT_TARGET = 13.0; LD_RUNPATH_SEARCH_PATHS = ( @@ -34101,10 +34343,9 @@ "@executable_path/Frameworks", "@loader_path/Frameworks", ); - MACH_O_TYPE = staticlib; - MODULEMAP_FILE = "Target Support Files/GoogleUtilitiesComponents/GoogleUtilitiesComponents.modulemap"; - PRODUCT_MODULE_NAME = GoogleUtilitiesComponents; - PRODUCT_NAME = GoogleUtilitiesComponents; + MODULEMAP_FILE = "Target Support Files/GoogleToolboxForMac/GoogleToolboxForMac.modulemap"; + PRODUCT_MODULE_NAME = GoogleToolboxForMac; + PRODUCT_NAME = GoogleToolboxForMac; SDKROOT = iphoneos; SKIP_INSTALL = YES; SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; @@ -34116,9 +34357,9 @@ }; name = "Debug-production"; }; - BB9FA07F7052ABACFB9838CD45E70D47 /* Profile */ = { + BCE564D524CDE4F579C8FF8FEC46C9D5 /* Stage-production */ = { isa = XCBuildConfiguration; - baseConfigurationReference = F4C3D5A980B27BD2C418D61228F67F01 /* package_info_plus.release.xcconfig */; + baseConfigurationReference = 196B9320A9BD7C09E7C5420F49D709B3 /* share_plus.release.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO; @@ -34140,13 +34381,13 @@ "\"/Users/user/flutter/bin/cache/artifacts/engine/ios-release/Flutter.xcframework/ios-arm64_x86_64-simulator\"", "$(inherited)", ); - GCC_PREFIX_HEADER = "Target Support Files/package_info_plus/package_info_plus-prefix.pch"; + GCC_PREFIX_HEADER = "Target Support Files/share_plus/share_plus-prefix.pch"; GCC_PREPROCESSOR_DEFINITIONS = ( "$(inherited)", "PERMISSION_CAMERA=1", "PERMISSION_PHOTOS=1", ); - INFOPLIST_FILE = "Target Support Files/package_info_plus/package_info_plus-Info.plist"; + INFOPLIST_FILE = "Target Support Files/share_plus/share_plus-Info.plist"; INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; IPHONEOS_DEPLOYMENT_TARGET = 13.0; LD_RUNPATH_SEARCH_PATHS = ( @@ -34154,14 +34395,14 @@ "@executable_path/Frameworks", "@loader_path/Frameworks", ); - MODULEMAP_FILE = "Target Support Files/package_info_plus/package_info_plus.modulemap"; + MODULEMAP_FILE = "Target Support Files/share_plus/share_plus.modulemap"; OTHER_LDFLAGS = ( "$(inherited)", "-framework", Flutter, ); - PRODUCT_MODULE_NAME = package_info_plus; - PRODUCT_NAME = package_info_plus; + PRODUCT_MODULE_NAME = share_plus; + PRODUCT_NAME = share_plus; SDKROOT = iphoneos; SKIP_INSTALL = YES; SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; @@ -34172,64 +34413,40 @@ VERSIONING_SYSTEM = "apple-generic"; VERSION_INFO_PREFIX = ""; }; - name = Profile; + name = "Stage-production"; }; - BBC48DCBA6AD77201BD3147AD990848E /* Stage-production */ = { + BD0564253B0E53986E77618B42711864 /* Profile-staging */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 9311BBA346794A168AC09B1625AB1683 /* path_provider_foundation.release.xcconfig */; + baseConfigurationReference = B3F81CBF23C2B71680A734B4B74EA6EF /* sqflite.release.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; CODE_SIGNING_ALLOWED = NO; CODE_SIGNING_IDENTITY = "-"; CODE_SIGNING_REQUIRED = NO; - CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/path_provider_foundation"; + CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/sqflite"; EXPANDED_CODE_SIGN_IDENTITY = "-"; GCC_PREPROCESSOR_DEFINITIONS = ( "$(inherited)", "PERMISSION_CAMERA=1", "PERMISSION_PHOTOS=1", ); - IBSC_MODULE = path_provider_foundation; - INFOPLIST_FILE = "Target Support Files/path_provider_foundation/ResourceBundle-path_provider_foundation_privacy-path_provider_foundation-Info.plist"; + IBSC_MODULE = sqflite; + INFOPLIST_FILE = "Target Support Files/sqflite/ResourceBundle-sqflite_darwin_privacy-sqflite-Info.plist"; IPHONEOS_DEPLOYMENT_TARGET = 13.0; - PRODUCT_NAME = path_provider_foundation_privacy; + PRODUCT_NAME = sqflite_darwin_privacy; SDKROOT = iphoneos; SKIP_INSTALL = YES; TARGETED_DEVICE_FAMILY = "1,2"; VALIDATE_PRODUCT = YES; WRAPPER_EXTENSION = bundle; }; - name = "Stage-production"; - }; - BC3731ED60C5066D2E78E8ABC74FEF41 /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = A7D0232BFA7DB2BABBC206DCBF4E211C /* flutter_email_sender.release.xcconfig */; - buildSettings = { - CODE_SIGNING_ALLOWED = NO; - CODE_SIGNING_IDENTITY = "-"; - CODE_SIGNING_REQUIRED = NO; - CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/flutter_email_sender"; - EXPANDED_CODE_SIGN_IDENTITY = "-"; - GCC_PREPROCESSOR_DEFINITIONS = ( - "$(inherited)", - "PERMISSION_CAMERA=1", - "PERMISSION_PHOTOS=1", - ); - IBSC_MODULE = flutter_email_sender; - INFOPLIST_FILE = "Target Support Files/flutter_email_sender/ResourceBundle-flutter_email_sender-flutter_email_sender-Info.plist"; - IPHONEOS_DEPLOYMENT_TARGET = 13.0; - PRODUCT_NAME = flutter_email_sender; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - TARGETED_DEVICE_FAMILY = "1,2"; - WRAPPER_EXTENSION = bundle; - }; - name = Release; + name = "Profile-staging"; }; - BCCB313671C4A1769FB2A9F48CF039E7 /* Release-staging */ = { + BD721FE1B17DC0E5DE8C643175F9ADD2 /* Profile-development */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 8ABCAE069412CFA453F913E4A7E0184B /* GoogleUtilities.release.xcconfig */; + baseConfigurationReference = D4F18F4F6B39AC1431EB143FE2915402 /* GoogleUtilitiesComponents.release.xcconfig */; buildSettings = { + CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; @@ -34243,7 +34460,7 @@ "PERMISSION_CAMERA=1", "PERMISSION_PHOTOS=1", ); - INFOPLIST_FILE = "Target Support Files/GoogleUtilities/GoogleUtilities-Info.plist"; + INFOPLIST_FILE = "Target Support Files/GoogleUtilitiesComponents/GoogleUtilitiesComponents-Info.plist"; INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; IPHONEOS_DEPLOYMENT_TARGET = 13.0; LD_RUNPATH_SEARCH_PATHS = ( @@ -34251,9 +34468,10 @@ "@executable_path/Frameworks", "@loader_path/Frameworks", ); - MODULEMAP_FILE = "Target Support Files/GoogleUtilities/GoogleUtilities.modulemap"; - PRODUCT_MODULE_NAME = GoogleUtilities; - PRODUCT_NAME = GoogleUtilities; + MACH_O_TYPE = staticlib; + MODULEMAP_FILE = "Target Support Files/GoogleUtilitiesComponents/GoogleUtilitiesComponents.modulemap"; + PRODUCT_MODULE_NAME = GoogleUtilitiesComponents; + PRODUCT_NAME = GoogleUtilitiesComponents; SDKROOT = iphoneos; SKIP_INSTALL = YES; SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; @@ -34263,70 +34481,13 @@ VERSIONING_SYSTEM = "apple-generic"; VERSION_INFO_PREFIX = ""; }; - name = "Release-staging"; + name = "Profile-development"; }; - BCE564D524CDE4F579C8FF8FEC46C9D5 /* Stage-production */ = { + BD8E2C834BAEBFBFB41E1E6FD6B30694 /* Profile */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 1E47B40DD78F33D7394C9CDADE9B41A7 /* share_plus.release.xcconfig */; + baseConfigurationReference = 5B385CBA22624866DCD19C0B8CCF9C42 /* flutter_nekoton_bridge.release.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; - CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = 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_BITCODE = NO; - "EXCLUDED_ARCHS[sdk=iphoneos*]" = "$(inherited) armv7"; - "EXCLUDED_ARCHS[sdk=iphonesimulator*]" = "$(inherited) i386"; - "FRAMEWORK_SEARCH_PATHS[sdk=iphoneos*]" = ( - "\"/Users/user/flutter/bin/cache/artifacts/engine/ios-release/Flutter.xcframework/ios-arm64\"", - "$(inherited)", - ); - "FRAMEWORK_SEARCH_PATHS[sdk=iphonesimulator*]" = ( - "\"/Users/user/flutter/bin/cache/artifacts/engine/ios-release/Flutter.xcframework/ios-arm64_x86_64-simulator\"", - "$(inherited)", - ); - GCC_PREFIX_HEADER = "Target Support Files/share_plus/share_plus-prefix.pch"; - GCC_PREPROCESSOR_DEFINITIONS = ( - "$(inherited)", - "PERMISSION_CAMERA=1", - "PERMISSION_PHOTOS=1", - ); - INFOPLIST_FILE = "Target Support Files/share_plus/share_plus-Info.plist"; - INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; - IPHONEOS_DEPLOYMENT_TARGET = 13.0; - LD_RUNPATH_SEARCH_PATHS = ( - "$(inherited)", - "@executable_path/Frameworks", - "@loader_path/Frameworks", - ); - MODULEMAP_FILE = "Target Support Files/share_plus/share_plus.modulemap"; - OTHER_LDFLAGS = ( - "$(inherited)", - "-framework", - Flutter, - ); - PRODUCT_MODULE_NAME = share_plus; - PRODUCT_NAME = share_plus; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_VERSION = 5.0; - TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; - "VALID_ARCHS[sdk=iphonesimulator*]" = "$(ARCHS_STANDARD)"; - VERSIONING_SYSTEM = "apple-generic"; - VERSION_INFO_PREFIX = ""; - }; - name = "Stage-production"; - }; - BD4ACC4C2473655A07F1DF78F9CF454F /* Release-production */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = B587A9A0D5365CAA9B8A2CC41EB17830 /* nanopb.release.xcconfig */; - buildSettings = { "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; @@ -34335,13 +34496,13 @@ DYLIB_COMPATIBILITY_VERSION = 1; DYLIB_CURRENT_VERSION = 1; DYLIB_INSTALL_NAME_BASE = "@rpath"; - GCC_PREFIX_HEADER = "Target Support Files/nanopb/nanopb-prefix.pch"; + GCC_PREFIX_HEADER = "Target Support Files/flutter_nekoton_bridge/flutter_nekoton_bridge-prefix.pch"; GCC_PREPROCESSOR_DEFINITIONS = ( "$(inherited)", "PERMISSION_CAMERA=1", "PERMISSION_PHOTOS=1", ); - INFOPLIST_FILE = "Target Support Files/nanopb/nanopb-Info.plist"; + INFOPLIST_FILE = "Target Support Files/flutter_nekoton_bridge/flutter_nekoton_bridge-Info.plist"; INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; IPHONEOS_DEPLOYMENT_TARGET = 13.0; LD_RUNPATH_SEARCH_PATHS = ( @@ -34349,9 +34510,9 @@ "@executable_path/Frameworks", "@loader_path/Frameworks", ); - MODULEMAP_FILE = "Target Support Files/nanopb/nanopb.modulemap"; - PRODUCT_MODULE_NAME = nanopb; - PRODUCT_NAME = nanopb; + MODULEMAP_FILE = "Target Support Files/flutter_nekoton_bridge/flutter_nekoton_bridge.modulemap"; + PRODUCT_MODULE_NAME = flutter_nekoton_bridge; + PRODUCT_NAME = flutter_nekoton_bridge; SDKROOT = iphoneos; SKIP_INSTALL = YES; SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; @@ -34361,75 +34522,38 @@ VERSIONING_SYSTEM = "apple-generic"; VERSION_INFO_PREFIX = ""; }; - name = "Release-production"; - }; - BD682E18F3E39E87C8BD892B66B8B98F /* Release-production */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 5D2B88AD25CD5EBE586D760474336767 /* MLKitBarcodeScanning.release.xcconfig */; - buildSettings = { - ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; - ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; - CLANG_ENABLE_OBJC_WEAK = NO; - GCC_PREPROCESSOR_DEFINITIONS = ( - "$(inherited)", - "PERMISSION_CAMERA=1", - "PERMISSION_PHOTOS=1", - ); - IPHONEOS_DEPLOYMENT_TARGET = 13.0; - LD_RUNPATH_SEARCH_PATHS = ( - "$(inherited)", - "@executable_path/Frameworks", - ); - SDKROOT = iphoneos; - TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; - }; - name = "Release-production"; + name = Profile; }; - BD8E2C834BAEBFBFB41E1E6FD6B30694 /* Profile */ = { + BDAC06393A3D550A51070033D55EA7D2 /* Release-development */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 869E5D3B5708F94FBC923E7B50C1DD07 /* flutter_nekoton_bridge.release.xcconfig */; + baseConfigurationReference = 13146A48D1544CF0CF218B3A514C848E /* flutter_secure_storage.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"; - GCC_PREFIX_HEADER = "Target Support Files/flutter_nekoton_bridge/flutter_nekoton_bridge-prefix.pch"; + CODE_SIGNING_ALLOWED = NO; + CODE_SIGNING_IDENTITY = "-"; + CODE_SIGNING_REQUIRED = NO; + CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/flutter_secure_storage"; + EXPANDED_CODE_SIGN_IDENTITY = "-"; GCC_PREPROCESSOR_DEFINITIONS = ( "$(inherited)", "PERMISSION_CAMERA=1", "PERMISSION_PHOTOS=1", ); - INFOPLIST_FILE = "Target Support Files/flutter_nekoton_bridge/flutter_nekoton_bridge-Info.plist"; - INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; + IBSC_MODULE = flutter_secure_storage; + INFOPLIST_FILE = "Target Support Files/flutter_secure_storage/ResourceBundle-flutter_secure_storage-flutter_secure_storage-Info.plist"; IPHONEOS_DEPLOYMENT_TARGET = 13.0; - LD_RUNPATH_SEARCH_PATHS = ( - "$(inherited)", - "@executable_path/Frameworks", - "@loader_path/Frameworks", - ); - MODULEMAP_FILE = "Target Support Files/flutter_nekoton_bridge/flutter_nekoton_bridge.modulemap"; - PRODUCT_MODULE_NAME = flutter_nekoton_bridge; - PRODUCT_NAME = flutter_nekoton_bridge; + PRODUCT_NAME = flutter_secure_storage; SDKROOT = iphoneos; SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_VERSION = 5.0; TARGETED_DEVICE_FAMILY = "1,2"; VALIDATE_PRODUCT = YES; - VERSIONING_SYSTEM = "apple-generic"; - VERSION_INFO_PREFIX = ""; + WRAPPER_EXTENSION = bundle; }; - name = Profile; + name = "Release-development"; }; BDF857F31EA59A8028126F590FBD3174 /* Profile */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 7B2F4BE2D901E9309159228CD856EBAF /* flutter_secure_storage.release.xcconfig */; + baseConfigurationReference = 13146A48D1544CF0CF218B3A514C848E /* flutter_secure_storage.release.xcconfig */; buildSettings = { CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -34484,9 +34608,59 @@ }; name = Profile; }; + BEB93406A613CD43A8489738E5422CC8 /* Debug-development */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = B587A9A0D5365CAA9B8A2CC41EB17830 /* nanopb.release.xcconfig */; + buildSettings = { + CLANG_ENABLE_OBJC_WEAK = NO; + CODE_SIGNING_ALLOWED = NO; + CODE_SIGNING_IDENTITY = "-"; + CODE_SIGNING_REQUIRED = NO; + CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/nanopb"; + EXPANDED_CODE_SIGN_IDENTITY = "-"; + GCC_PREPROCESSOR_DEFINITIONS = ( + "$(inherited)", + "PERMISSION_CAMERA=1", + "PERMISSION_PHOTOS=1", + ); + IBSC_MODULE = nanopb; + INFOPLIST_FILE = "Target Support Files/nanopb/ResourceBundle-nanopb_Privacy-nanopb-Info.plist"; + IPHONEOS_DEPLOYMENT_TARGET = 13.0; + PRODUCT_NAME = nanopb_Privacy; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; + WRAPPER_EXTENSION = bundle; + }; + name = "Debug-development"; + }; + BED14A2E1D8335CD7C814C06AEB8B80D /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 5D2B88AD25CD5EBE586D760474336767 /* MLKitBarcodeScanning.release.xcconfig */; + buildSettings = { + ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; + ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; + CLANG_ENABLE_OBJC_WEAK = NO; + GCC_PREPROCESSOR_DEFINITIONS = ( + "$(inherited)", + "PERMISSION_CAMERA=1", + "PERMISSION_PHOTOS=1", + ); + IPHONEOS_DEPLOYMENT_TARGET = 13.0; + LD_RUNPATH_SEARCH_PATHS = ( + "$(inherited)", + "@executable_path/Frameworks", + ); + SDKROOT = iphoneos; + TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; + }; + name = Release; + }; BEF004C2B246B6A96FC85EDBC4FC5840 /* Debug-development */ = { isa = XCBuildConfiguration; - baseConfigurationReference = F4C3D5A980B27BD2C418D61228F67F01 /* package_info_plus.release.xcconfig */; + baseConfigurationReference = 6201BD6C84B86BD570988C7E3B8409CB /* package_info_plus.release.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO; @@ -34585,7 +34759,7 @@ }; BF09840F97168CB639EFCB903A3BF8AB /* Profile-staging */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 6D3FC8F30A9759CEC467C9CBCFF1BDA6 /* mobile_scanner.release.xcconfig */; + baseConfigurationReference = 55CABBFDA741B6809730DEE1165E60C9 /* mobile_scanner.release.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO; @@ -34644,7 +34818,7 @@ }; BF138A9081A14AA21FBC5D63A4614407 /* Profile */ = { isa = XCBuildConfiguration; - baseConfigurationReference = B60761FA10DAC783EF5D7E4C1574226A /* connectivity_plus.release.xcconfig */; + baseConfigurationReference = 0F62AA5AF0EE048AB478074EDD1A2CD4 /* connectivity_plus.release.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO; @@ -34700,9 +34874,35 @@ }; name = Profile; }; + BF27A5EB9FEE795132D849F81F1D978E /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 381A0F04776BF1B790F21030CA3BB8B3 /* package_info_plus.debug.xcconfig */; + buildSettings = { + CODE_SIGNING_ALLOWED = NO; + CODE_SIGNING_IDENTITY = "-"; + CODE_SIGNING_REQUIRED = NO; + CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/package_info_plus"; + EXPANDED_CODE_SIGN_IDENTITY = "-"; + GCC_PREPROCESSOR_DEFINITIONS = ( + "$(inherited)", + "PERMISSION_CAMERA=1", + "PERMISSION_PHOTOS=1", + ); + IBSC_MODULE = package_info_plus; + INFOPLIST_FILE = "Target Support Files/package_info_plus/ResourceBundle-package_info_plus_privacy-package_info_plus-Info.plist"; + IPHONEOS_DEPLOYMENT_TARGET = 13.0; + ONLY_ACTIVE_ARCH = NO; + PRODUCT_NAME = package_info_plus_privacy; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + TARGETED_DEVICE_FAMILY = "1,2"; + WRAPPER_EXTENSION = bundle; + }; + name = Debug; + }; BFE8EEF288ADF2C6649DE515D69EC828 /* Stage-production */ = { isa = XCBuildConfiguration; - baseConfigurationReference = B60761FA10DAC783EF5D7E4C1574226A /* connectivity_plus.release.xcconfig */; + baseConfigurationReference = 0F62AA5AF0EE048AB478074EDD1A2CD4 /* connectivity_plus.release.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO; @@ -34760,7 +34960,7 @@ }; C097CBD263F4BDF19AB850AD5277136C /* Debug-staging */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 79066AF4601F7FFEE6681FB7DA45FA72 /* flutter_keyboard_visibility.release.xcconfig */; + baseConfigurationReference = A0E07105D46C98227F9CF101D83E460C /* flutter_keyboard_visibility.release.xcconfig */; buildSettings = { CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -34815,63 +35015,50 @@ }; name = "Debug-staging"; }; - C0E180EE02F3D13ACC654027EC35E089 /* Debug-development */ = { + C139035E5FBF3386669C3F79EEA15C4A /* Debug-development */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 8ABCAE069412CFA453F913E4A7E0184B /* GoogleUtilities.release.xcconfig */; + baseConfigurationReference = D4F18F4F6B39AC1431EB143FE2915402 /* GoogleUtilitiesComponents.release.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; - CODE_SIGNING_ALLOWED = NO; - CODE_SIGNING_IDENTITY = "-"; - CODE_SIGNING_REQUIRED = NO; - CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/GoogleUtilities"; - EXPANDED_CODE_SIGN_IDENTITY = "-"; + "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"; GCC_PREPROCESSOR_DEFINITIONS = ( "$(inherited)", "PERMISSION_CAMERA=1", "PERMISSION_PHOTOS=1", ); - IBSC_MODULE = GoogleUtilities; - INFOPLIST_FILE = "Target Support Files/GoogleUtilities/ResourceBundle-GoogleUtilities_Privacy-GoogleUtilities-Info.plist"; + INFOPLIST_FILE = "Target Support Files/GoogleUtilitiesComponents/GoogleUtilitiesComponents-Info.plist"; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; IPHONEOS_DEPLOYMENT_TARGET = 13.0; - PRODUCT_NAME = GoogleUtilities_Privacy; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; - WRAPPER_EXTENSION = bundle; - }; - name = "Debug-development"; - }; - C13B9CB1429F70E929474185FD2BE257 /* Release-production */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = F4C3D5A980B27BD2C418D61228F67F01 /* package_info_plus.release.xcconfig */; - buildSettings = { - CLANG_ENABLE_OBJC_WEAK = NO; - CODE_SIGNING_ALLOWED = NO; - CODE_SIGNING_IDENTITY = "-"; - CODE_SIGNING_REQUIRED = NO; - CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/package_info_plus"; - EXPANDED_CODE_SIGN_IDENTITY = "-"; - GCC_PREPROCESSOR_DEFINITIONS = ( + LD_RUNPATH_SEARCH_PATHS = ( "$(inherited)", - "PERMISSION_CAMERA=1", - "PERMISSION_PHOTOS=1", + "@executable_path/Frameworks", + "@loader_path/Frameworks", ); - IBSC_MODULE = package_info_plus; - INFOPLIST_FILE = "Target Support Files/package_info_plus/ResourceBundle-package_info_plus_privacy-package_info_plus-Info.plist"; - IPHONEOS_DEPLOYMENT_TARGET = 13.0; - PRODUCT_NAME = package_info_plus_privacy; + MACH_O_TYPE = staticlib; + MODULEMAP_FILE = "Target Support Files/GoogleUtilitiesComponents/GoogleUtilitiesComponents.modulemap"; + PRODUCT_MODULE_NAME = GoogleUtilitiesComponents; + PRODUCT_NAME = GoogleUtilitiesComponents; SDKROOT = iphoneos; SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; + SWIFT_VERSION = 5.0; TARGETED_DEVICE_FAMILY = "1,2"; VALIDATE_PRODUCT = YES; - WRAPPER_EXTENSION = bundle; + VERSIONING_SYSTEM = "apple-generic"; + VERSION_INFO_PREFIX = ""; }; - name = "Release-production"; + name = "Debug-development"; }; C18CE6C89EB8977237533975A4FDAA9A /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 5776D1A94BB0D848208043448BFE7DA0 /* local_auth_darwin.debug.xcconfig */; + baseConfigurationReference = ECD77C4498C8B5690FAD6D3E053D7AEA /* local_auth_darwin.debug.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO; @@ -34927,59 +35114,69 @@ }; name = Debug; }; - C22EE19D471864B11AD0970A70645265 /* Stage-production */ = { + C192635B3D90109C5FB47BE09635C780 /* Release-production */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 06772A7CF38F34E24C0E8F60729C6339 /* local_auth_darwin.release.xcconfig */; + baseConfigurationReference = 85EF9BEBA8B20A13BA96488C86CD663A /* MLKitCommon.release.xcconfig */; buildSettings = { + ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; + ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; CLANG_ENABLE_OBJC_WEAK = NO; - CODE_SIGNING_ALLOWED = NO; - CODE_SIGNING_IDENTITY = "-"; - CODE_SIGNING_REQUIRED = NO; - CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/local_auth_darwin"; - EXPANDED_CODE_SIGN_IDENTITY = "-"; GCC_PREPROCESSOR_DEFINITIONS = ( "$(inherited)", "PERMISSION_CAMERA=1", "PERMISSION_PHOTOS=1", ); - IBSC_MODULE = local_auth_darwin; - INFOPLIST_FILE = "Target Support Files/local_auth_darwin/ResourceBundle-local_auth_darwin_privacy-local_auth_darwin-Info.plist"; IPHONEOS_DEPLOYMENT_TARGET = 13.0; - PRODUCT_NAME = local_auth_darwin_privacy; + LD_RUNPATH_SEARCH_PATHS = ( + "$(inherited)", + "@executable_path/Frameworks", + ); SDKROOT = iphoneos; - SKIP_INSTALL = YES; TARGETED_DEVICE_FAMILY = "1,2"; VALIDATE_PRODUCT = YES; - WRAPPER_EXTENSION = bundle; }; - name = "Stage-production"; + name = "Release-production"; }; - C29F32244CF0C619E2B7911D6145AD36 /* Release-development */ = { + C20A0AEBC6FEFB32D98AB4FFBE36D0B2 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 19CE9AC8B13646CC03FBC77F131FF183 /* GoogleDataTransport.release.xcconfig */; + baseConfigurationReference = D4F18F4F6B39AC1431EB143FE2915402 /* GoogleUtilitiesComponents.release.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; - CODE_SIGNING_ALLOWED = NO; - CODE_SIGNING_IDENTITY = "-"; - CODE_SIGNING_REQUIRED = NO; - CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/GoogleDataTransport"; - EXPANDED_CODE_SIGN_IDENTITY = "-"; + "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"; GCC_PREPROCESSOR_DEFINITIONS = ( "$(inherited)", "PERMISSION_CAMERA=1", "PERMISSION_PHOTOS=1", ); - IBSC_MODULE = GoogleDataTransport; - INFOPLIST_FILE = "Target Support Files/GoogleDataTransport/ResourceBundle-GoogleDataTransport_Privacy-GoogleDataTransport-Info.plist"; + INFOPLIST_FILE = "Target Support Files/GoogleUtilitiesComponents/GoogleUtilitiesComponents-Info.plist"; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; IPHONEOS_DEPLOYMENT_TARGET = 13.0; - PRODUCT_NAME = GoogleDataTransport_Privacy; + LD_RUNPATH_SEARCH_PATHS = ( + "$(inherited)", + "@executable_path/Frameworks", + "@loader_path/Frameworks", + ); + MACH_O_TYPE = staticlib; + MODULEMAP_FILE = "Target Support Files/GoogleUtilitiesComponents/GoogleUtilitiesComponents.modulemap"; + PRODUCT_MODULE_NAME = GoogleUtilitiesComponents; + PRODUCT_NAME = GoogleUtilitiesComponents; SDKROOT = iphoneos; SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; + SWIFT_VERSION = 5.0; TARGETED_DEVICE_FAMILY = "1,2"; VALIDATE_PRODUCT = YES; - WRAPPER_EXTENSION = bundle; + VERSIONING_SYSTEM = "apple-generic"; + VERSION_INFO_PREFIX = ""; }; - name = "Release-development"; + name = Release; }; C2AE8D30D2F41838EA92A899B8E398B7 /* Release-production */ = { isa = XCBuildConfiguration; @@ -35043,32 +35240,36 @@ }; name = "Release-production"; }; - C32BC63B71599273D814CA2A5E5FE5A1 /* Release-development */ = { + C32BDC12AEC4BEFCFBF1207E9982ECC0 /* Debug-production */ = { isa = XCBuildConfiguration; - baseConfigurationReference = FE5C3B02302BE4DBC83D2A553D5F5C1B /* MLKitVision.release.xcconfig */; + baseConfigurationReference = 8ABCAE069412CFA453F913E4A7E0184B /* GoogleUtilities.release.xcconfig */; buildSettings = { - ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; - ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; CLANG_ENABLE_OBJC_WEAK = NO; + CODE_SIGNING_ALLOWED = NO; + CODE_SIGNING_IDENTITY = "-"; + CODE_SIGNING_REQUIRED = NO; + CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/GoogleUtilities"; + EXPANDED_CODE_SIGN_IDENTITY = "-"; GCC_PREPROCESSOR_DEFINITIONS = ( "$(inherited)", "PERMISSION_CAMERA=1", "PERMISSION_PHOTOS=1", ); + IBSC_MODULE = GoogleUtilities; + INFOPLIST_FILE = "Target Support Files/GoogleUtilities/ResourceBundle-GoogleUtilities_Privacy-GoogleUtilities-Info.plist"; IPHONEOS_DEPLOYMENT_TARGET = 13.0; - LD_RUNPATH_SEARCH_PATHS = ( - "$(inherited)", - "@executable_path/Frameworks", - ); + PRODUCT_NAME = GoogleUtilities_Privacy; SDKROOT = iphoneos; + SKIP_INSTALL = YES; TARGETED_DEVICE_FAMILY = "1,2"; VALIDATE_PRODUCT = YES; + WRAPPER_EXTENSION = bundle; }; - name = "Release-development"; + name = "Debug-production"; }; C33C91F0C52F347791E309B1D5EC40CA /* Profile-production */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 4A911B9FACB388B308D1ABB5669DD583 /* permission_handler_apple.release.xcconfig */; + baseConfigurationReference = 4BB6D83A83366DD3295B456FF36F5E3F /* permission_handler_apple.release.xcconfig */; buildSettings = { CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -35125,32 +35326,9 @@ }; name = "Profile-production"; }; - C35A7E80DE58E9B1AFE4CBA6ECA1B256 /* Profile */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 26DCE60E629963FB754A022AED7ACC73 /* MLImage.release.xcconfig */; - buildSettings = { - ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; - ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; - CLANG_ENABLE_OBJC_WEAK = NO; - GCC_PREPROCESSOR_DEFINITIONS = ( - "$(inherited)", - "PERMISSION_CAMERA=1", - "PERMISSION_PHOTOS=1", - ); - IPHONEOS_DEPLOYMENT_TARGET = 13.0; - LD_RUNPATH_SEARCH_PATHS = ( - "$(inherited)", - "@executable_path/Frameworks", - ); - SDKROOT = iphoneos; - TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; - }; - name = Profile; - }; C364A87D4DFE0F19C8333922A40CC6ED /* Release-staging */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 6D3FC8F30A9759CEC467C9CBCFF1BDA6 /* mobile_scanner.release.xcconfig */; + baseConfigurationReference = 55CABBFDA741B6809730DEE1165E60C9 /* mobile_scanner.release.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO; @@ -35207,9 +35385,36 @@ }; name = "Release-staging"; }; + C36624E01B8D301316B80B6929502786 /* Debug-staging */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = B3F81CBF23C2B71680A734B4B74EA6EF /* sqflite.release.xcconfig */; + buildSettings = { + CLANG_ENABLE_OBJC_WEAK = NO; + CODE_SIGNING_ALLOWED = NO; + CODE_SIGNING_IDENTITY = "-"; + CODE_SIGNING_REQUIRED = NO; + CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/sqflite"; + EXPANDED_CODE_SIGN_IDENTITY = "-"; + GCC_PREPROCESSOR_DEFINITIONS = ( + "$(inherited)", + "PERMISSION_CAMERA=1", + "PERMISSION_PHOTOS=1", + ); + IBSC_MODULE = sqflite; + INFOPLIST_FILE = "Target Support Files/sqflite/ResourceBundle-sqflite_darwin_privacy-sqflite-Info.plist"; + IPHONEOS_DEPLOYMENT_TARGET = 13.0; + PRODUCT_NAME = sqflite_darwin_privacy; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; + WRAPPER_EXTENSION = bundle; + }; + name = "Debug-staging"; + }; C3692D6FFA28DBA5CF639DC613B1F96A /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = C630DC976CFC529906571DA851643B86 /* integration_test.release.xcconfig */; + baseConfigurationReference = 5ACA34BFC6EAE3E5A15EE45A206A60FA /* integration_test.release.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO; @@ -35265,29 +35470,6 @@ }; name = Release; }; - C39C68CA6343624E1B6537F22AC832F5 /* Release-staging */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 26DCE60E629963FB754A022AED7ACC73 /* MLImage.release.xcconfig */; - buildSettings = { - ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; - ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; - CLANG_ENABLE_OBJC_WEAK = NO; - GCC_PREPROCESSOR_DEFINITIONS = ( - "$(inherited)", - "PERMISSION_CAMERA=1", - "PERMISSION_PHOTOS=1", - ); - IPHONEOS_DEPLOYMENT_TARGET = 13.0; - LD_RUNPATH_SEARCH_PATHS = ( - "$(inherited)", - "@executable_path/Frameworks", - ); - SDKROOT = iphoneos; - TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; - }; - name = "Release-staging"; - }; C3F3516AA5543B7597F4C736B999E40E /* Profile */ = { isa = XCBuildConfiguration; baseConfigurationReference = 19CE9AC8B13646CC03FBC77F131FF183 /* GoogleDataTransport.release.xcconfig */; @@ -35329,7 +35511,7 @@ }; C3F881E79E5A7C82814EA76F17ADFD62 /* Profile-staging */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 86E540DA830E020FCC7DEA27000E1A98 /* shared_preferences_foundation.release.xcconfig */; + baseConfigurationReference = D1CCD0C16DFF0194B0A936A205ED4ED0 /* shared_preferences_foundation.release.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO; @@ -35380,58 +35562,9 @@ }; name = "Profile-staging"; }; - C3F957505F4EC723FEE21A2CCD9EBBAE /* Profile-production */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 85EF9BEBA8B20A13BA96488C86CD663A /* MLKitCommon.release.xcconfig */; - buildSettings = { - ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; - ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; - CLANG_ENABLE_OBJC_WEAK = NO; - GCC_PREPROCESSOR_DEFINITIONS = ( - "$(inherited)", - "PERMISSION_CAMERA=1", - "PERMISSION_PHOTOS=1", - ); - IPHONEOS_DEPLOYMENT_TARGET = 13.0; - LD_RUNPATH_SEARCH_PATHS = ( - "$(inherited)", - "@executable_path/Frameworks", - ); - SDKROOT = iphoneos; - TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; - }; - name = "Profile-production"; - }; - C40EC15CB8C77D549CBEB97982A665E1 /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = B8DE548CAFA838CA823CC7535D08316C /* permission_handler_apple.debug.xcconfig */; - buildSettings = { - CODE_SIGNING_ALLOWED = NO; - CODE_SIGNING_IDENTITY = "-"; - CODE_SIGNING_REQUIRED = NO; - CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/permission_handler_apple"; - EXPANDED_CODE_SIGN_IDENTITY = "-"; - GCC_PREPROCESSOR_DEFINITIONS = ( - "$(inherited)", - "PERMISSION_CAMERA=1", - "PERMISSION_PHOTOS=1", - ); - IBSC_MODULE = permission_handler_apple; - INFOPLIST_FILE = "Target Support Files/permission_handler_apple/ResourceBundle-permission_handler_apple_privacy-permission_handler_apple-Info.plist"; - IPHONEOS_DEPLOYMENT_TARGET = 13.0; - ONLY_ACTIVE_ARCH = NO; - PRODUCT_NAME = permission_handler_apple_privacy; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - TARGETED_DEVICE_FAMILY = "1,2"; - WRAPPER_EXTENSION = bundle; - }; - name = Debug; - }; C4892DCF0D33BFC3240719F647ACFC92 /* Release-production */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 9281357EC3038ADC39C884ED1A1D94E1 /* flutter_inappwebview.release.xcconfig */; + baseConfigurationReference = F3BAFA0B70330F234C6B8BF559E7A252 /* flutter_inappwebview.release.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO; @@ -35489,7 +35622,7 @@ }; C48A3223C808CA6C0EC2AD1977B235A6 /* Debug-development */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 869E5D3B5708F94FBC923E7B50C1DD07 /* flutter_nekoton_bridge.release.xcconfig */; + baseConfigurationReference = 5B385CBA22624866DCD19C0B8CCF9C42 /* flutter_nekoton_bridge.release.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -35551,35 +35684,32 @@ }; name = "Profile-development"; }; - C557EFCA312D2D701FF703090CC57B91 /* Debug */ = { + C532247B27683DE004D14501D229BFC9 /* Stage-production */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 429B8F30C0075AC28A8387DE578B0028 /* flutter_secure_storage.debug.xcconfig */; + baseConfigurationReference = 85EF9BEBA8B20A13BA96488C86CD663A /* MLKitCommon.release.xcconfig */; buildSettings = { - CODE_SIGNING_ALLOWED = NO; - CODE_SIGNING_IDENTITY = "-"; - CODE_SIGNING_REQUIRED = NO; - CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/flutter_secure_storage"; - EXPANDED_CODE_SIGN_IDENTITY = "-"; + ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; + ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; + CLANG_ENABLE_OBJC_WEAK = NO; GCC_PREPROCESSOR_DEFINITIONS = ( "$(inherited)", "PERMISSION_CAMERA=1", "PERMISSION_PHOTOS=1", ); - IBSC_MODULE = flutter_secure_storage; - INFOPLIST_FILE = "Target Support Files/flutter_secure_storage/ResourceBundle-flutter_secure_storage-flutter_secure_storage-Info.plist"; IPHONEOS_DEPLOYMENT_TARGET = 13.0; - ONLY_ACTIVE_ARCH = NO; - PRODUCT_NAME = flutter_secure_storage; + 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 = Debug; + name = "Stage-production"; }; C5CBD634FB23D65369C635D235665268 /* Profile-production */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 9281357EC3038ADC39C884ED1A1D94E1 /* flutter_inappwebview.release.xcconfig */; + baseConfigurationReference = F3BAFA0B70330F234C6B8BF559E7A252 /* flutter_inappwebview.release.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO; @@ -35637,7 +35767,7 @@ }; C64DE22CB6A5FF6E40CBCB0C76ED0640 /* Profile-staging */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 73DB9045D22A4FBE50F8FACF34C6F052 /* url_launcher_ios.release.xcconfig */; + baseConfigurationReference = F9F252ACFB155ACF9BB56FB267880E01 /* url_launcher_ios.release.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO; @@ -35728,35 +35858,74 @@ }; name = "Release-production"; }; - C6DB10205DCC8EF7D17ABA2B9BA14671 /* Debug */ = { + C682CEBADE475550B57335D25712BC4F /* Profile */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 55E516637C2F7465762B5C2428BF50E8 /* flutter_email_sender.debug.xcconfig */; + baseConfigurationReference = B587A9A0D5365CAA9B8A2CC41EB17830 /* nanopb.release.xcconfig */; buildSettings = { + CLANG_ENABLE_OBJC_WEAK = NO; CODE_SIGNING_ALLOWED = NO; CODE_SIGNING_IDENTITY = "-"; CODE_SIGNING_REQUIRED = NO; - CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/flutter_email_sender"; + CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/nanopb"; EXPANDED_CODE_SIGN_IDENTITY = "-"; GCC_PREPROCESSOR_DEFINITIONS = ( "$(inherited)", "PERMISSION_CAMERA=1", "PERMISSION_PHOTOS=1", ); - IBSC_MODULE = flutter_email_sender; - INFOPLIST_FILE = "Target Support Files/flutter_email_sender/ResourceBundle-flutter_email_sender-flutter_email_sender-Info.plist"; + IBSC_MODULE = nanopb; + INFOPLIST_FILE = "Target Support Files/nanopb/ResourceBundle-nanopb_Privacy-nanopb-Info.plist"; IPHONEOS_DEPLOYMENT_TARGET = 13.0; - ONLY_ACTIVE_ARCH = NO; - PRODUCT_NAME = flutter_email_sender; + PRODUCT_NAME = nanopb_Privacy; SDKROOT = iphoneos; SKIP_INSTALL = YES; TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; WRAPPER_EXTENSION = bundle; }; + name = Profile; + }; + C79DEC2DE0642ECA96C7B7DF5E593199 /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 96032D57D2E112ABF8EF589DE1640244 /* PromisesObjC.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"; + GCC_PREPROCESSOR_DEFINITIONS = ( + "$(inherited)", + "PERMISSION_CAMERA=1", + "PERMISSION_PHOTOS=1", + ); + INFOPLIST_FILE = "Target Support Files/PromisesObjC/PromisesObjC-Info.plist"; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; + IPHONEOS_DEPLOYMENT_TARGET = 13.0; + LD_RUNPATH_SEARCH_PATHS = ( + "$(inherited)", + "@executable_path/Frameworks", + "@loader_path/Frameworks", + ); + MODULEMAP_FILE = "Target Support Files/PromisesObjC/PromisesObjC.modulemap"; + ONLY_ACTIVE_ARCH = NO; + PRODUCT_MODULE_NAME = FBLPromises; + PRODUCT_NAME = FBLPromises; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; + SWIFT_VERSION = 5.0; + TARGETED_DEVICE_FAMILY = "1,2"; + VERSIONING_SYSTEM = "apple-generic"; + VERSION_INFO_PREFIX = ""; + }; name = Debug; }; C7B2F9EA9833DA101B133D096A5A8421 /* Profile-staging */ = { isa = XCBuildConfiguration; - baseConfigurationReference = F4C3D5A980B27BD2C418D61228F67F01 /* package_info_plus.release.xcconfig */; + baseConfigurationReference = 6201BD6C84B86BD570988C7E3B8409CB /* package_info_plus.release.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO; @@ -35812,63 +35981,9 @@ }; name = "Profile-staging"; }; - C80ED3C24B1E90B77ACF895A9750D33E /* Debug-staging */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 1E47B40DD78F33D7394C9CDADE9B41A7 /* share_plus.release.xcconfig */; - buildSettings = { - CLANG_ENABLE_OBJC_WEAK = NO; - CODE_SIGNING_ALLOWED = NO; - CODE_SIGNING_IDENTITY = "-"; - CODE_SIGNING_REQUIRED = NO; - CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/share_plus"; - EXPANDED_CODE_SIGN_IDENTITY = "-"; - GCC_PREPROCESSOR_DEFINITIONS = ( - "$(inherited)", - "PERMISSION_CAMERA=1", - "PERMISSION_PHOTOS=1", - ); - IBSC_MODULE = share_plus; - INFOPLIST_FILE = "Target Support Files/share_plus/ResourceBundle-share_plus_privacy-share_plus-Info.plist"; - IPHONEOS_DEPLOYMENT_TARGET = 13.0; - PRODUCT_NAME = share_plus_privacy; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; - WRAPPER_EXTENSION = bundle; - }; - name = "Debug-staging"; - }; - C8319078D429684275915EFC890DC68C /* Debug-development */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = A7D0232BFA7DB2BABBC206DCBF4E211C /* flutter_email_sender.release.xcconfig */; - buildSettings = { - CLANG_ENABLE_OBJC_WEAK = NO; - CODE_SIGNING_ALLOWED = NO; - CODE_SIGNING_IDENTITY = "-"; - CODE_SIGNING_REQUIRED = NO; - CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/flutter_email_sender"; - EXPANDED_CODE_SIGN_IDENTITY = "-"; - GCC_PREPROCESSOR_DEFINITIONS = ( - "$(inherited)", - "PERMISSION_CAMERA=1", - "PERMISSION_PHOTOS=1", - ); - IBSC_MODULE = flutter_email_sender; - INFOPLIST_FILE = "Target Support Files/flutter_email_sender/ResourceBundle-flutter_email_sender-flutter_email_sender-Info.plist"; - IPHONEOS_DEPLOYMENT_TARGET = 13.0; - PRODUCT_NAME = flutter_email_sender; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; - WRAPPER_EXTENSION = bundle; - }; - name = "Debug-development"; - }; C831C1E7B1B693B96163C789FE6FB45B /* Stage-production */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 86E540DA830E020FCC7DEA27000E1A98 /* shared_preferences_foundation.release.xcconfig */; + baseConfigurationReference = D1CCD0C16DFF0194B0A936A205ED4ED0 /* shared_preferences_foundation.release.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO; @@ -35919,6 +36034,33 @@ }; name = "Stage-production"; }; + C8393D86E4740272AA5038DE1B1BBC96 /* Profile */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = C3A8E22467ADEB42B7D83259E1A6F078 /* Sentry.release.xcconfig */; + buildSettings = { + CLANG_ENABLE_OBJC_WEAK = NO; + CODE_SIGNING_ALLOWED = NO; + CODE_SIGNING_IDENTITY = "-"; + CODE_SIGNING_REQUIRED = NO; + CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/Sentry"; + EXPANDED_CODE_SIGN_IDENTITY = "-"; + GCC_PREPROCESSOR_DEFINITIONS = ( + "$(inherited)", + "PERMISSION_CAMERA=1", + "PERMISSION_PHOTOS=1", + ); + IBSC_MODULE = Sentry; + INFOPLIST_FILE = "Target Support Files/Sentry/ResourceBundle-Sentry-Sentry-Info.plist"; + IPHONEOS_DEPLOYMENT_TARGET = 13.0; + PRODUCT_NAME = Sentry; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; + WRAPPER_EXTENSION = bundle; + }; + name = Profile; + }; C83C78E527D502A1D603D5300E8E88B5 /* Release-staging */ = { isa = XCBuildConfiguration; baseConfigurationReference = C3A8E22467ADEB42B7D83259E1A6F078 /* Sentry.release.xcconfig */; @@ -35983,7 +36125,7 @@ }; name = "Release-staging"; }; - C8751EC3D623E6F36D671C705537ABD6 /* Release */ = { + C8E82BED95B4DEFCD4ACC55ABF1ED206 /* Release-development */ = { isa = XCBuildConfiguration; baseConfigurationReference = 26DCE60E629963FB754A022AED7ACC73 /* MLImage.release.xcconfig */; buildSettings = { @@ -36004,38 +36146,11 @@ TARGETED_DEVICE_FAMILY = "1,2"; VALIDATE_PRODUCT = YES; }; - name = Release; - }; - C9793231A3C406D7FC43586541714139 /* Profile-staging */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 8ABCAE069412CFA453F913E4A7E0184B /* GoogleUtilities.release.xcconfig */; - buildSettings = { - CLANG_ENABLE_OBJC_WEAK = NO; - CODE_SIGNING_ALLOWED = NO; - CODE_SIGNING_IDENTITY = "-"; - CODE_SIGNING_REQUIRED = NO; - CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/GoogleUtilities"; - EXPANDED_CODE_SIGN_IDENTITY = "-"; - GCC_PREPROCESSOR_DEFINITIONS = ( - "$(inherited)", - "PERMISSION_CAMERA=1", - "PERMISSION_PHOTOS=1", - ); - IBSC_MODULE = GoogleUtilities; - INFOPLIST_FILE = "Target Support Files/GoogleUtilities/ResourceBundle-GoogleUtilities_Privacy-GoogleUtilities-Info.plist"; - IPHONEOS_DEPLOYMENT_TARGET = 13.0; - PRODUCT_NAME = GoogleUtilities_Privacy; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; - WRAPPER_EXTENSION = bundle; - }; - name = "Profile-staging"; + name = "Release-development"; }; - CA0B14157B0D4031944B65D0321E98FB /* Debug-staging */ = { + CA9A875C711094F7D017AD3454A70799 /* Profile-staging */ = { isa = XCBuildConfiguration; - baseConfigurationReference = B587A9A0D5365CAA9B8A2CC41EB17830 /* nanopb.release.xcconfig */; + baseConfigurationReference = 0E95E1622AE3A8ECD9572E38ECCC7DA7 /* GoogleToolboxForMac.release.xcconfig */; buildSettings = { "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; @@ -36045,13 +36160,13 @@ DYLIB_COMPATIBILITY_VERSION = 1; DYLIB_CURRENT_VERSION = 1; DYLIB_INSTALL_NAME_BASE = "@rpath"; - GCC_PREFIX_HEADER = "Target Support Files/nanopb/nanopb-prefix.pch"; + GCC_PREFIX_HEADER = "Target Support Files/GoogleToolboxForMac/GoogleToolboxForMac-prefix.pch"; GCC_PREPROCESSOR_DEFINITIONS = ( "$(inherited)", "PERMISSION_CAMERA=1", "PERMISSION_PHOTOS=1", ); - INFOPLIST_FILE = "Target Support Files/nanopb/nanopb-Info.plist"; + INFOPLIST_FILE = "Target Support Files/GoogleToolboxForMac/GoogleToolboxForMac-Info.plist"; INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; IPHONEOS_DEPLOYMENT_TARGET = 13.0; LD_RUNPATH_SEARCH_PATHS = ( @@ -36059,9 +36174,9 @@ "@executable_path/Frameworks", "@loader_path/Frameworks", ); - MODULEMAP_FILE = "Target Support Files/nanopb/nanopb.modulemap"; - PRODUCT_MODULE_NAME = nanopb; - PRODUCT_NAME = nanopb; + MODULEMAP_FILE = "Target Support Files/GoogleToolboxForMac/GoogleToolboxForMac.modulemap"; + PRODUCT_MODULE_NAME = GoogleToolboxForMac; + PRODUCT_NAME = GoogleToolboxForMac; SDKROOT = iphoneos; SKIP_INSTALL = YES; SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; @@ -36071,11 +36186,38 @@ VERSIONING_SYSTEM = "apple-generic"; VERSION_INFO_PREFIX = ""; }; - name = "Debug-staging"; + name = "Profile-staging"; + }; + CB37E450070A3AD176620F0F8EAFDAB6 /* Debug-production */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = F9F252ACFB155ACF9BB56FB267880E01 /* url_launcher_ios.release.xcconfig */; + buildSettings = { + CLANG_ENABLE_OBJC_WEAK = NO; + CODE_SIGNING_ALLOWED = NO; + CODE_SIGNING_IDENTITY = "-"; + CODE_SIGNING_REQUIRED = NO; + CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/url_launcher_ios"; + EXPANDED_CODE_SIGN_IDENTITY = "-"; + GCC_PREPROCESSOR_DEFINITIONS = ( + "$(inherited)", + "PERMISSION_CAMERA=1", + "PERMISSION_PHOTOS=1", + ); + IBSC_MODULE = url_launcher_ios; + INFOPLIST_FILE = "Target Support Files/url_launcher_ios/ResourceBundle-url_launcher_ios_privacy-url_launcher_ios-Info.plist"; + IPHONEOS_DEPLOYMENT_TARGET = 13.0; + PRODUCT_NAME = url_launcher_ios_privacy; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; + WRAPPER_EXTENSION = bundle; + }; + name = "Debug-production"; }; CB3DD12122FA6084712ACB4E57A7F8A5 /* Profile */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 86E540DA830E020FCC7DEA27000E1A98 /* shared_preferences_foundation.release.xcconfig */; + baseConfigurationReference = D1CCD0C16DFF0194B0A936A205ED4ED0 /* shared_preferences_foundation.release.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO; @@ -36126,36 +36268,9 @@ }; name = Profile; }; - CC0E335F9B6B89676D3AA979C1F83114 /* Release-staging */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = C782F3D64A5DB279B07DD4535BD2F969 /* image_picker_ios.release.xcconfig */; - buildSettings = { - CLANG_ENABLE_OBJC_WEAK = NO; - CODE_SIGNING_ALLOWED = NO; - CODE_SIGNING_IDENTITY = "-"; - CODE_SIGNING_REQUIRED = NO; - CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/image_picker_ios"; - EXPANDED_CODE_SIGN_IDENTITY = "-"; - GCC_PREPROCESSOR_DEFINITIONS = ( - "$(inherited)", - "PERMISSION_CAMERA=1", - "PERMISSION_PHOTOS=1", - ); - IBSC_MODULE = image_picker_ios; - INFOPLIST_FILE = "Target Support Files/image_picker_ios/ResourceBundle-image_picker_ios_privacy-image_picker_ios-Info.plist"; - IPHONEOS_DEPLOYMENT_TARGET = 13.0; - PRODUCT_NAME = image_picker_ios_privacy; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; - WRAPPER_EXTENSION = bundle; - }; - name = "Release-staging"; - }; CC0FE48A7F2B0BC185B70DD89A3A71FC /* Release-production */ = { isa = XCBuildConfiguration; - baseConfigurationReference = B60761FA10DAC783EF5D7E4C1574226A /* connectivity_plus.release.xcconfig */; + baseConfigurationReference = 0F62AA5AF0EE048AB478074EDD1A2CD4 /* connectivity_plus.release.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO; @@ -36211,131 +36326,157 @@ }; name = "Release-production"; }; - CC1DDCA35C4EC76C326E51DACC399540 /* Profile-development */ = { + CC35BE3FBFB4541780E3C976FD3DD692 /* Release-staging */ = { isa = XCBuildConfiguration; - baseConfigurationReference = B60761FA10DAC783EF5D7E4C1574226A /* connectivity_plus.release.xcconfig */; + baseConfigurationReference = 57D6AA21B16FC3FF93AD29A67F768BB2 /* flutter_native_splash.release.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; CODE_SIGNING_ALLOWED = NO; CODE_SIGNING_IDENTITY = "-"; CODE_SIGNING_REQUIRED = NO; - CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/connectivity_plus"; + CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/flutter_native_splash"; EXPANDED_CODE_SIGN_IDENTITY = "-"; GCC_PREPROCESSOR_DEFINITIONS = ( "$(inherited)", "PERMISSION_CAMERA=1", "PERMISSION_PHOTOS=1", ); - IBSC_MODULE = connectivity_plus; - INFOPLIST_FILE = "Target Support Files/connectivity_plus/ResourceBundle-connectivity_plus_privacy-connectivity_plus-Info.plist"; + IBSC_MODULE = flutter_native_splash; + INFOPLIST_FILE = "Target Support Files/flutter_native_splash/ResourceBundle-flutter_native_splash_privacy-flutter_native_splash-Info.plist"; IPHONEOS_DEPLOYMENT_TARGET = 13.0; - PRODUCT_NAME = connectivity_plus_privacy; + PRODUCT_NAME = flutter_native_splash_privacy; SDKROOT = iphoneos; SKIP_INSTALL = YES; TARGETED_DEVICE_FAMILY = "1,2"; VALIDATE_PRODUCT = YES; WRAPPER_EXTENSION = bundle; }; - name = "Profile-development"; + name = "Release-staging"; }; - CC294C0EB080810BA85C79F6678818E2 /* Debug */ = { + CCC8C77E9E20E9B155E4C0DCB4047A2C /* Profile-development */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 5776D1A94BB0D848208043448BFE7DA0 /* local_auth_darwin.debug.xcconfig */; + baseConfigurationReference = 7BBC54695C99C2B14E25AEFD9F48CF32 /* GTMSessionFetcher.release.xcconfig */; buildSettings = { - CODE_SIGNING_ALLOWED = NO; - CODE_SIGNING_IDENTITY = "-"; - CODE_SIGNING_REQUIRED = NO; - CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/local_auth_darwin"; - EXPANDED_CODE_SIGN_IDENTITY = "-"; + "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"; GCC_PREPROCESSOR_DEFINITIONS = ( "$(inherited)", "PERMISSION_CAMERA=1", "PERMISSION_PHOTOS=1", ); - IBSC_MODULE = local_auth_darwin; - INFOPLIST_FILE = "Target Support Files/local_auth_darwin/ResourceBundle-local_auth_darwin_privacy-local_auth_darwin-Info.plist"; + INFOPLIST_FILE = "Target Support Files/GTMSessionFetcher/GTMSessionFetcher-Info.plist"; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; IPHONEOS_DEPLOYMENT_TARGET = 13.0; - ONLY_ACTIVE_ARCH = NO; - PRODUCT_NAME = local_auth_darwin_privacy; + LD_RUNPATH_SEARCH_PATHS = ( + "$(inherited)", + "@executable_path/Frameworks", + "@loader_path/Frameworks", + ); + MODULEMAP_FILE = "Target Support Files/GTMSessionFetcher/GTMSessionFetcher.modulemap"; + PRODUCT_MODULE_NAME = GTMSessionFetcher; + PRODUCT_NAME = GTMSessionFetcher; SDKROOT = iphoneos; SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; + SWIFT_VERSION = 5.0; TARGETED_DEVICE_FAMILY = "1,2"; - WRAPPER_EXTENSION = bundle; + VALIDATE_PRODUCT = YES; + VERSIONING_SYSTEM = "apple-generic"; + VERSION_INFO_PREFIX = ""; }; - name = Debug; + name = "Profile-development"; }; - CC3497768605889EC591B64E89A91E84 /* Release-development */ = { + CD7C047998C3DC60EB79348148E03E24 /* Stage-production */ = { isa = XCBuildConfiguration; - baseConfigurationReference = FC4CA41561F8B1B855AED3763329DD2C /* PromisesObjC.release.xcconfig */; + baseConfigurationReference = 4BB6D83A83366DD3295B456FF36F5E3F /* permission_handler_apple.release.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; CODE_SIGNING_ALLOWED = NO; CODE_SIGNING_IDENTITY = "-"; CODE_SIGNING_REQUIRED = NO; - CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/PromisesObjC"; + CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/permission_handler_apple"; EXPANDED_CODE_SIGN_IDENTITY = "-"; GCC_PREPROCESSOR_DEFINITIONS = ( "$(inherited)", "PERMISSION_CAMERA=1", "PERMISSION_PHOTOS=1", ); - IBSC_MODULE = FBLPromises; - INFOPLIST_FILE = "Target Support Files/PromisesObjC/ResourceBundle-FBLPromises_Privacy-PromisesObjC-Info.plist"; + IBSC_MODULE = permission_handler_apple; + INFOPLIST_FILE = "Target Support Files/permission_handler_apple/ResourceBundle-permission_handler_apple_privacy-permission_handler_apple-Info.plist"; IPHONEOS_DEPLOYMENT_TARGET = 13.0; - PRODUCT_NAME = FBLPromises_Privacy; + PRODUCT_NAME = permission_handler_apple_privacy; SDKROOT = iphoneos; SKIP_INSTALL = YES; TARGETED_DEVICE_FAMILY = "1,2"; VALIDATE_PRODUCT = YES; WRAPPER_EXTENSION = bundle; }; - name = "Release-development"; + name = "Stage-production"; }; - CC88D9D386AC5584F0894FA3F4793C0E /* Profile-production */ = { + CD9F5BC6131A7434161E01CCD89A22C8 /* Debug-production */ = { isa = XCBuildConfiguration; - baseConfigurationReference = B587A9A0D5365CAA9B8A2CC41EB17830 /* nanopb.release.xcconfig */; + baseConfigurationReference = 19CE9AC8B13646CC03FBC77F131FF183 /* GoogleDataTransport.release.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; CODE_SIGNING_ALLOWED = NO; CODE_SIGNING_IDENTITY = "-"; CODE_SIGNING_REQUIRED = NO; - CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/nanopb"; + CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/GoogleDataTransport"; EXPANDED_CODE_SIGN_IDENTITY = "-"; GCC_PREPROCESSOR_DEFINITIONS = ( "$(inherited)", "PERMISSION_CAMERA=1", "PERMISSION_PHOTOS=1", ); - IBSC_MODULE = nanopb; - INFOPLIST_FILE = "Target Support Files/nanopb/ResourceBundle-nanopb_Privacy-nanopb-Info.plist"; + IBSC_MODULE = GoogleDataTransport; + INFOPLIST_FILE = "Target Support Files/GoogleDataTransport/ResourceBundle-GoogleDataTransport_Privacy-GoogleDataTransport-Info.plist"; IPHONEOS_DEPLOYMENT_TARGET = 13.0; - PRODUCT_NAME = nanopb_Privacy; + PRODUCT_NAME = GoogleDataTransport_Privacy; SDKROOT = iphoneos; SKIP_INSTALL = YES; TARGETED_DEVICE_FAMILY = "1,2"; VALIDATE_PRODUCT = YES; WRAPPER_EXTENSION = bundle; }; - name = "Profile-production"; + name = "Debug-production"; }; - CCC8C77E9E20E9B155E4C0DCB4047A2C /* Profile-development */ = { + CDBDB1DDC51947B9A14336B59AFAC38A /* Debug-production */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 7BBC54695C99C2B14E25AEFD9F48CF32 /* GTMSessionFetcher.release.xcconfig */; + baseConfigurationReference = 98AE98BF8E201BFC344D7356F2883701 /* image_picker_ios.release.xcconfig */; buildSettings = { + CLANG_ENABLE_OBJC_WEAK = NO; + CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = 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_BITCODE = NO; + "EXCLUDED_ARCHS[sdk=iphoneos*]" = "$(inherited) armv7"; + "EXCLUDED_ARCHS[sdk=iphonesimulator*]" = "$(inherited) i386"; + "FRAMEWORK_SEARCH_PATHS[sdk=iphoneos*]" = ( + "\"/Users/user/flutter/bin/cache/artifacts/engine/ios-release/Flutter.xcframework/ios-arm64\"", + "$(inherited)", + ); + "FRAMEWORK_SEARCH_PATHS[sdk=iphonesimulator*]" = ( + "\"/Users/user/flutter/bin/cache/artifacts/engine/ios-release/Flutter.xcframework/ios-arm64_x86_64-simulator\"", + "$(inherited)", + ); + GCC_PREFIX_HEADER = "Target Support Files/image_picker_ios/image_picker_ios-prefix.pch"; GCC_PREPROCESSOR_DEFINITIONS = ( "$(inherited)", "PERMISSION_CAMERA=1", "PERMISSION_PHOTOS=1", ); - INFOPLIST_FILE = "Target Support Files/GTMSessionFetcher/GTMSessionFetcher-Info.plist"; + INFOPLIST_FILE = "Target Support Files/image_picker_ios/image_picker_ios-Info.plist"; INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; IPHONEOS_DEPLOYMENT_TARGET = 13.0; LD_RUNPATH_SEARCH_PATHS = ( @@ -36343,51 +36484,44 @@ "@executable_path/Frameworks", "@loader_path/Frameworks", ); - MODULEMAP_FILE = "Target Support Files/GTMSessionFetcher/GTMSessionFetcher.modulemap"; - PRODUCT_MODULE_NAME = GTMSessionFetcher; - PRODUCT_NAME = GTMSessionFetcher; + MODULEMAP_FILE = "Target Support Files/image_picker_ios/image_picker_ios.modulemap"; + OTHER_LDFLAGS = ( + "$(inherited)", + "-framework", + Flutter, + ); + PRODUCT_MODULE_NAME = image_picker_ios; + PRODUCT_NAME = image_picker_ios; SDKROOT = iphoneos; SKIP_INSTALL = YES; SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; SWIFT_VERSION = 5.0; TARGETED_DEVICE_FAMILY = "1,2"; VALIDATE_PRODUCT = YES; + "VALID_ARCHS[sdk=iphonesimulator*]" = "$(ARCHS_STANDARD)"; VERSIONING_SYSTEM = "apple-generic"; VERSION_INFO_PREFIX = ""; }; - name = "Profile-development"; + name = "Debug-production"; }; - CDBDB1DDC51947B9A14336B59AFAC38A /* Debug-production */ = { + CDD1B25436069146989E94FCE7114B9B /* Debug-development */ = { isa = XCBuildConfiguration; - baseConfigurationReference = C782F3D64A5DB279B07DD4535BD2F969 /* image_picker_ios.release.xcconfig */; + baseConfigurationReference = 8ABCAE069412CFA453F913E4A7E0184B /* GoogleUtilities.release.xcconfig */; buildSettings = { - CLANG_ENABLE_OBJC_WEAK = NO; - CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = 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_BITCODE = NO; - "EXCLUDED_ARCHS[sdk=iphoneos*]" = "$(inherited) armv7"; - "EXCLUDED_ARCHS[sdk=iphonesimulator*]" = "$(inherited) i386"; - "FRAMEWORK_SEARCH_PATHS[sdk=iphoneos*]" = ( - "\"/Users/user/flutter/bin/cache/artifacts/engine/ios-release/Flutter.xcframework/ios-arm64\"", - "$(inherited)", - ); - "FRAMEWORK_SEARCH_PATHS[sdk=iphonesimulator*]" = ( - "\"/Users/user/flutter/bin/cache/artifacts/engine/ios-release/Flutter.xcframework/ios-arm64_x86_64-simulator\"", - "$(inherited)", - ); - GCC_PREFIX_HEADER = "Target Support Files/image_picker_ios/image_picker_ios-prefix.pch"; GCC_PREPROCESSOR_DEFINITIONS = ( "$(inherited)", "PERMISSION_CAMERA=1", "PERMISSION_PHOTOS=1", ); - INFOPLIST_FILE = "Target Support Files/image_picker_ios/image_picker_ios-Info.plist"; + INFOPLIST_FILE = "Target Support Files/GoogleUtilities/GoogleUtilities-Info.plist"; INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; IPHONEOS_DEPLOYMENT_TARGET = 13.0; LD_RUNPATH_SEARCH_PATHS = ( @@ -36395,25 +36529,19 @@ "@executable_path/Frameworks", "@loader_path/Frameworks", ); - MODULEMAP_FILE = "Target Support Files/image_picker_ios/image_picker_ios.modulemap"; - OTHER_LDFLAGS = ( - "$(inherited)", - "-framework", - Flutter, - ); - PRODUCT_MODULE_NAME = image_picker_ios; - PRODUCT_NAME = image_picker_ios; + 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_VERSION = 5.0; TARGETED_DEVICE_FAMILY = "1,2"; VALIDATE_PRODUCT = YES; - "VALID_ARCHS[sdk=iphonesimulator*]" = "$(ARCHS_STANDARD)"; VERSIONING_SYSTEM = "apple-generic"; VERSION_INFO_PREFIX = ""; }; - name = "Debug-production"; + name = "Debug-development"; }; CDF70BA1AB8D7D875B47E137D78584E9 /* Profile */ = { isa = XCBuildConfiguration; @@ -36446,14 +36574,64 @@ PRODUCT_NAME = OrderedSet; SDKROOT = iphoneos; SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_VERSION = 5.0; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; + SWIFT_VERSION = 5.0; + TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; + VERSIONING_SYSTEM = "apple-generic"; + VERSION_INFO_PREFIX = ""; + }; + name = Profile; + }; + CE27104D65B81E1BE572B5244837AA98 /* Release-staging */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = FE5C3B02302BE4DBC83D2A553D5F5C1B /* MLKitVision.release.xcconfig */; + buildSettings = { + ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; + ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; + CLANG_ENABLE_OBJC_WEAK = NO; + GCC_PREPROCESSOR_DEFINITIONS = ( + "$(inherited)", + "PERMISSION_CAMERA=1", + "PERMISSION_PHOTOS=1", + ); + IPHONEOS_DEPLOYMENT_TARGET = 13.0; + LD_RUNPATH_SEARCH_PATHS = ( + "$(inherited)", + "@executable_path/Frameworks", + ); + SDKROOT = iphoneos; + TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; + }; + name = "Release-staging"; + }; + CF61AE701CC160F4C90096D83908377D /* Profile-development */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = F9F252ACFB155ACF9BB56FB267880E01 /* url_launcher_ios.release.xcconfig */; + buildSettings = { + CLANG_ENABLE_OBJC_WEAK = NO; + CODE_SIGNING_ALLOWED = NO; + CODE_SIGNING_IDENTITY = "-"; + CODE_SIGNING_REQUIRED = NO; + CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/url_launcher_ios"; + EXPANDED_CODE_SIGN_IDENTITY = "-"; + GCC_PREPROCESSOR_DEFINITIONS = ( + "$(inherited)", + "PERMISSION_CAMERA=1", + "PERMISSION_PHOTOS=1", + ); + IBSC_MODULE = url_launcher_ios; + INFOPLIST_FILE = "Target Support Files/url_launcher_ios/ResourceBundle-url_launcher_ios_privacy-url_launcher_ios-Info.plist"; + IPHONEOS_DEPLOYMENT_TARGET = 13.0; + PRODUCT_NAME = url_launcher_ios_privacy; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; TARGETED_DEVICE_FAMILY = "1,2"; VALIDATE_PRODUCT = YES; - VERSIONING_SYSTEM = "apple-generic"; - VERSION_INFO_PREFIX = ""; + WRAPPER_EXTENSION = bundle; }; - name = Profile; + name = "Profile-development"; }; CF638F11544A88CBA16B91336DA110A2 /* Profile-production */ = { isa = XCBuildConfiguration; @@ -36538,9 +36716,9 @@ }; name = "Stage-production"; }; - CF83EB32898FC45121E1B3BE6058B46D /* Profile */ = { + CFBBDD000FE0F98558A5FA672182702F /* Stage-production */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 5D2B88AD25CD5EBE586D760474336767 /* MLKitBarcodeScanning.release.xcconfig */; + baseConfigurationReference = 26DCE60E629963FB754A022AED7ACC73 /* MLImage.release.xcconfig */; buildSettings = { ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; @@ -36559,11 +36737,11 @@ TARGETED_DEVICE_FAMILY = "1,2"; VALIDATE_PRODUCT = YES; }; - name = Profile; + name = "Stage-production"; }; CFE96E2559D49E74E154566FC9B9ECC0 /* Debug-production */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 9281357EC3038ADC39C884ED1A1D94E1 /* flutter_inappwebview.release.xcconfig */; + baseConfigurationReference = F3BAFA0B70330F234C6B8BF559E7A252 /* flutter_inappwebview.release.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO; @@ -36619,36 +36797,9 @@ }; name = "Debug-production"; }; - CFEE2892CFA04A9152B22FF589AC513C /* Stage-production */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 3C623764A02C0B6BA3A628060F65377B /* flutter_native_splash.release.xcconfig */; - buildSettings = { - CLANG_ENABLE_OBJC_WEAK = NO; - CODE_SIGNING_ALLOWED = NO; - CODE_SIGNING_IDENTITY = "-"; - CODE_SIGNING_REQUIRED = NO; - CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/flutter_native_splash"; - EXPANDED_CODE_SIGN_IDENTITY = "-"; - GCC_PREPROCESSOR_DEFINITIONS = ( - "$(inherited)", - "PERMISSION_CAMERA=1", - "PERMISSION_PHOTOS=1", - ); - IBSC_MODULE = flutter_native_splash; - INFOPLIST_FILE = "Target Support Files/flutter_native_splash/ResourceBundle-flutter_native_splash_privacy-flutter_native_splash-Info.plist"; - IPHONEOS_DEPLOYMENT_TARGET = 13.0; - PRODUCT_NAME = flutter_native_splash_privacy; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; - WRAPPER_EXTENSION = bundle; - }; - name = "Stage-production"; - }; - D03348CEA58B50B0AC901B7A59FCA9A6 /* Release-production */ = { + D0072D167CE2013C52962CBC62442CE6 /* Debug-production */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 869E5D3B5708F94FBC923E7B50C1DD07 /* flutter_nekoton_bridge.release.xcconfig */; + baseConfigurationReference = D4F18F4F6B39AC1431EB143FE2915402 /* GoogleUtilitiesComponents.release.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -36659,13 +36810,12 @@ DYLIB_COMPATIBILITY_VERSION = 1; DYLIB_CURRENT_VERSION = 1; DYLIB_INSTALL_NAME_BASE = "@rpath"; - GCC_PREFIX_HEADER = "Target Support Files/flutter_nekoton_bridge/flutter_nekoton_bridge-prefix.pch"; GCC_PREPROCESSOR_DEFINITIONS = ( "$(inherited)", "PERMISSION_CAMERA=1", "PERMISSION_PHOTOS=1", ); - INFOPLIST_FILE = "Target Support Files/flutter_nekoton_bridge/flutter_nekoton_bridge-Info.plist"; + INFOPLIST_FILE = "Target Support Files/GoogleUtilitiesComponents/GoogleUtilitiesComponents-Info.plist"; INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; IPHONEOS_DEPLOYMENT_TARGET = 13.0; LD_RUNPATH_SEARCH_PATHS = ( @@ -36673,9 +36823,10 @@ "@executable_path/Frameworks", "@loader_path/Frameworks", ); - MODULEMAP_FILE = "Target Support Files/flutter_nekoton_bridge/flutter_nekoton_bridge.modulemap"; - PRODUCT_MODULE_NAME = flutter_nekoton_bridge; - PRODUCT_NAME = flutter_nekoton_bridge; + MACH_O_TYPE = staticlib; + MODULEMAP_FILE = "Target Support Files/GoogleUtilitiesComponents/GoogleUtilitiesComponents.modulemap"; + PRODUCT_MODULE_NAME = GoogleUtilitiesComponents; + PRODUCT_NAME = GoogleUtilitiesComponents; SDKROOT = iphoneos; SKIP_INSTALL = YES; SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; @@ -36685,12 +36836,13 @@ VERSIONING_SYSTEM = "apple-generic"; VERSION_INFO_PREFIX = ""; }; - name = "Release-production"; + name = "Debug-production"; }; - D05822BBD5DF3916B4763754B3749D42 /* Profile */ = { + D03348CEA58B50B0AC901B7A59FCA9A6 /* Release-production */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 8ABCAE069412CFA453F913E4A7E0184B /* GoogleUtilities.release.xcconfig */; + baseConfigurationReference = 5B385CBA22624866DCD19C0B8CCF9C42 /* flutter_nekoton_bridge.release.xcconfig */; buildSettings = { + CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; @@ -36699,12 +36851,13 @@ DYLIB_COMPATIBILITY_VERSION = 1; DYLIB_CURRENT_VERSION = 1; DYLIB_INSTALL_NAME_BASE = "@rpath"; + GCC_PREFIX_HEADER = "Target Support Files/flutter_nekoton_bridge/flutter_nekoton_bridge-prefix.pch"; GCC_PREPROCESSOR_DEFINITIONS = ( "$(inherited)", "PERMISSION_CAMERA=1", "PERMISSION_PHOTOS=1", ); - INFOPLIST_FILE = "Target Support Files/GoogleUtilities/GoogleUtilities-Info.plist"; + INFOPLIST_FILE = "Target Support Files/flutter_nekoton_bridge/flutter_nekoton_bridge-Info.plist"; INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; IPHONEOS_DEPLOYMENT_TARGET = 13.0; LD_RUNPATH_SEARCH_PATHS = ( @@ -36712,9 +36865,9 @@ "@executable_path/Frameworks", "@loader_path/Frameworks", ); - MODULEMAP_FILE = "Target Support Files/GoogleUtilities/GoogleUtilities.modulemap"; - PRODUCT_MODULE_NAME = GoogleUtilities; - PRODUCT_NAME = GoogleUtilities; + MODULEMAP_FILE = "Target Support Files/flutter_nekoton_bridge/flutter_nekoton_bridge.modulemap"; + PRODUCT_MODULE_NAME = flutter_nekoton_bridge; + PRODUCT_NAME = flutter_nekoton_bridge; SDKROOT = iphoneos; SKIP_INSTALL = YES; SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; @@ -36724,61 +36877,60 @@ VERSIONING_SYSTEM = "apple-generic"; VERSION_INFO_PREFIX = ""; }; - name = Profile; + name = "Release-production"; }; - D16EAF45470DEA9914BBF3FF788F2EE1 /* Debug-development */ = { + D03E3CA0B399C80FA52712EBBEB0F0CD /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 5D2DA3CB411FF35D30470F3AEFA259CB /* Flutter.release.xcconfig */; + baseConfigurationReference = 7A292022678D9261E12B712A676024E9 /* Sentry.debug.xcconfig */; buildSettings = { - ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; - ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; - CLANG_ENABLE_OBJC_WEAK = NO; + CODE_SIGNING_ALLOWED = NO; + CODE_SIGNING_IDENTITY = "-"; + CODE_SIGNING_REQUIRED = NO; + CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/Sentry"; + EXPANDED_CODE_SIGN_IDENTITY = "-"; GCC_PREPROCESSOR_DEFINITIONS = ( "$(inherited)", "PERMISSION_CAMERA=1", "PERMISSION_PHOTOS=1", ); + IBSC_MODULE = Sentry; + INFOPLIST_FILE = "Target Support Files/Sentry/ResourceBundle-Sentry-Sentry-Info.plist"; IPHONEOS_DEPLOYMENT_TARGET = 13.0; - LD_RUNPATH_SEARCH_PATHS = ( - "$(inherited)", - "@executable_path/Frameworks", - ); + ONLY_ACTIVE_ARCH = NO; + PRODUCT_NAME = Sentry; SDKROOT = iphoneos; + SKIP_INSTALL = YES; TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; + WRAPPER_EXTENSION = bundle; }; - name = "Debug-development"; + name = Debug; }; - D19FD939E4A8D2283403383090B6BA3C /* Stage-production */ = { + D16EAF45470DEA9914BBF3FF788F2EE1 /* Debug-development */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 1E47B40DD78F33D7394C9CDADE9B41A7 /* share_plus.release.xcconfig */; + baseConfigurationReference = 5D2DA3CB411FF35D30470F3AEFA259CB /* Flutter.release.xcconfig */; buildSettings = { + ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; + ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; CLANG_ENABLE_OBJC_WEAK = NO; - CODE_SIGNING_ALLOWED = NO; - CODE_SIGNING_IDENTITY = "-"; - CODE_SIGNING_REQUIRED = NO; - CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/share_plus"; - EXPANDED_CODE_SIGN_IDENTITY = "-"; GCC_PREPROCESSOR_DEFINITIONS = ( "$(inherited)", "PERMISSION_CAMERA=1", "PERMISSION_PHOTOS=1", ); - IBSC_MODULE = share_plus; - INFOPLIST_FILE = "Target Support Files/share_plus/ResourceBundle-share_plus_privacy-share_plus-Info.plist"; IPHONEOS_DEPLOYMENT_TARGET = 13.0; - PRODUCT_NAME = share_plus_privacy; + LD_RUNPATH_SEARCH_PATHS = ( + "$(inherited)", + "@executable_path/Frameworks", + ); SDKROOT = iphoneos; - SKIP_INSTALL = YES; TARGETED_DEVICE_FAMILY = "1,2"; VALIDATE_PRODUCT = YES; - WRAPPER_EXTENSION = bundle; }; - name = "Stage-production"; + name = "Debug-development"; }; D1AD35E57566595137DF5799880A28FB /* Profile-production */ = { isa = XCBuildConfiguration; - baseConfigurationReference = B91357BF97DBAECE656386331F10CCFD /* sqflite.release.xcconfig */; + baseConfigurationReference = B3F81CBF23C2B71680A734B4B74EA6EF /* sqflite.release.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO; @@ -36834,23 +36986,26 @@ }; name = "Profile-production"; }; - D1F73465217EEF217374C031A9C0203C /* Stage-production */ = { + D223FFEC2E98FFDFA1C91492F8DBDDEF /* Debug-production */ = { isa = XCBuildConfiguration; - baseConfigurationReference = FC4CA41561F8B1B855AED3763329DD2C /* PromisesObjC.release.xcconfig */; + baseConfigurationReference = 5B385CBA22624866DCD19C0B8CCF9C42 /* flutter_nekoton_bridge.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"; + GCC_PREFIX_HEADER = "Target Support Files/flutter_nekoton_bridge/flutter_nekoton_bridge-prefix.pch"; GCC_PREPROCESSOR_DEFINITIONS = ( "$(inherited)", "PERMISSION_CAMERA=1", "PERMISSION_PHOTOS=1", ); - INFOPLIST_FILE = "Target Support Files/PromisesObjC/PromisesObjC-Info.plist"; + INFOPLIST_FILE = "Target Support Files/flutter_nekoton_bridge/flutter_nekoton_bridge-Info.plist"; INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; IPHONEOS_DEPLOYMENT_TARGET = 13.0; LD_RUNPATH_SEARCH_PATHS = ( @@ -36858,9 +37013,9 @@ "@executable_path/Frameworks", "@loader_path/Frameworks", ); - MODULEMAP_FILE = "Target Support Files/PromisesObjC/PromisesObjC.modulemap"; - PRODUCT_MODULE_NAME = FBLPromises; - PRODUCT_NAME = FBLPromises; + MODULEMAP_FILE = "Target Support Files/flutter_nekoton_bridge/flutter_nekoton_bridge.modulemap"; + PRODUCT_MODULE_NAME = flutter_nekoton_bridge; + PRODUCT_NAME = flutter_nekoton_bridge; SDKROOT = iphoneos; SKIP_INSTALL = YES; SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; @@ -36870,38 +37025,11 @@ VERSIONING_SYSTEM = "apple-generic"; VERSION_INFO_PREFIX = ""; }; - name = "Stage-production"; - }; - D2072201921FFC31AE8A5437AE5B1110 /* Release-production */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 9311BBA346794A168AC09B1625AB1683 /* path_provider_foundation.release.xcconfig */; - buildSettings = { - CLANG_ENABLE_OBJC_WEAK = NO; - CODE_SIGNING_ALLOWED = NO; - CODE_SIGNING_IDENTITY = "-"; - CODE_SIGNING_REQUIRED = NO; - CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/path_provider_foundation"; - EXPANDED_CODE_SIGN_IDENTITY = "-"; - GCC_PREPROCESSOR_DEFINITIONS = ( - "$(inherited)", - "PERMISSION_CAMERA=1", - "PERMISSION_PHOTOS=1", - ); - IBSC_MODULE = path_provider_foundation; - INFOPLIST_FILE = "Target Support Files/path_provider_foundation/ResourceBundle-path_provider_foundation_privacy-path_provider_foundation-Info.plist"; - IPHONEOS_DEPLOYMENT_TARGET = 13.0; - PRODUCT_NAME = path_provider_foundation_privacy; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; - WRAPPER_EXTENSION = bundle; - }; - name = "Release-production"; + name = "Debug-production"; }; - D223FFEC2E98FFDFA1C91492F8DBDDEF /* Debug-production */ = { + D2CA6F2197F9FF4DE9E21C80B82B6188 /* Profile */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 869E5D3B5708F94FBC923E7B50C1DD07 /* flutter_nekoton_bridge.release.xcconfig */; + baseConfigurationReference = D4F18F4F6B39AC1431EB143FE2915402 /* GoogleUtilitiesComponents.release.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -36912,13 +37040,12 @@ DYLIB_COMPATIBILITY_VERSION = 1; DYLIB_CURRENT_VERSION = 1; DYLIB_INSTALL_NAME_BASE = "@rpath"; - GCC_PREFIX_HEADER = "Target Support Files/flutter_nekoton_bridge/flutter_nekoton_bridge-prefix.pch"; GCC_PREPROCESSOR_DEFINITIONS = ( "$(inherited)", "PERMISSION_CAMERA=1", "PERMISSION_PHOTOS=1", ); - INFOPLIST_FILE = "Target Support Files/flutter_nekoton_bridge/flutter_nekoton_bridge-Info.plist"; + INFOPLIST_FILE = "Target Support Files/GoogleUtilitiesComponents/GoogleUtilitiesComponents-Info.plist"; INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; IPHONEOS_DEPLOYMENT_TARGET = 13.0; LD_RUNPATH_SEARCH_PATHS = ( @@ -36926,9 +37053,10 @@ "@executable_path/Frameworks", "@loader_path/Frameworks", ); - MODULEMAP_FILE = "Target Support Files/flutter_nekoton_bridge/flutter_nekoton_bridge.modulemap"; - PRODUCT_MODULE_NAME = flutter_nekoton_bridge; - PRODUCT_NAME = flutter_nekoton_bridge; + MACH_O_TYPE = staticlib; + MODULEMAP_FILE = "Target Support Files/GoogleUtilitiesComponents/GoogleUtilitiesComponents.modulemap"; + PRODUCT_MODULE_NAME = GoogleUtilitiesComponents; + PRODUCT_NAME = GoogleUtilitiesComponents; SDKROOT = iphoneos; SKIP_INSTALL = YES; SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; @@ -36938,54 +37066,54 @@ VERSIONING_SYSTEM = "apple-generic"; VERSION_INFO_PREFIX = ""; }; - name = "Debug-production"; + name = Profile; }; - D26A586816105CD3A85B6E5A5A851D95 /* Debug-development */ = { + D38C1A40237015F31E36A0A5F339147B /* Profile-development */ = { isa = XCBuildConfiguration; - baseConfigurationReference = C3A8E22467ADEB42B7D83259E1A6F078 /* Sentry.release.xcconfig */; + baseConfigurationReference = 6201BD6C84B86BD570988C7E3B8409CB /* package_info_plus.release.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; CODE_SIGNING_ALLOWED = NO; CODE_SIGNING_IDENTITY = "-"; CODE_SIGNING_REQUIRED = NO; - CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/Sentry"; + CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/package_info_plus"; EXPANDED_CODE_SIGN_IDENTITY = "-"; GCC_PREPROCESSOR_DEFINITIONS = ( "$(inherited)", "PERMISSION_CAMERA=1", "PERMISSION_PHOTOS=1", ); - IBSC_MODULE = Sentry; - INFOPLIST_FILE = "Target Support Files/Sentry/ResourceBundle-Sentry-Sentry-Info.plist"; + IBSC_MODULE = package_info_plus; + INFOPLIST_FILE = "Target Support Files/package_info_plus/ResourceBundle-package_info_plus_privacy-package_info_plus-Info.plist"; IPHONEOS_DEPLOYMENT_TARGET = 13.0; - PRODUCT_NAME = Sentry; + PRODUCT_NAME = package_info_plus_privacy; SDKROOT = iphoneos; SKIP_INSTALL = YES; TARGETED_DEVICE_FAMILY = "1,2"; VALIDATE_PRODUCT = YES; WRAPPER_EXTENSION = bundle; }; - name = "Debug-development"; + name = "Profile-development"; }; - D2AA9E097A0CC187FEA2EEFC33B31842 /* Release-staging */ = { + D4D50AEC398941368186AF2A8F57D69D /* Release-staging */ = { isa = XCBuildConfiguration; - baseConfigurationReference = FC4CA41561F8B1B855AED3763329DD2C /* PromisesObjC.release.xcconfig */; + baseConfigurationReference = 98AE98BF8E201BFC344D7356F2883701 /* image_picker_ios.release.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; CODE_SIGNING_ALLOWED = NO; CODE_SIGNING_IDENTITY = "-"; CODE_SIGNING_REQUIRED = NO; - CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/PromisesObjC"; + CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/image_picker_ios"; EXPANDED_CODE_SIGN_IDENTITY = "-"; GCC_PREPROCESSOR_DEFINITIONS = ( "$(inherited)", "PERMISSION_CAMERA=1", "PERMISSION_PHOTOS=1", ); - IBSC_MODULE = FBLPromises; - INFOPLIST_FILE = "Target Support Files/PromisesObjC/ResourceBundle-FBLPromises_Privacy-PromisesObjC-Info.plist"; + IBSC_MODULE = image_picker_ios; + INFOPLIST_FILE = "Target Support Files/image_picker_ios/ResourceBundle-image_picker_ios_privacy-image_picker_ios-Info.plist"; IPHONEOS_DEPLOYMENT_TARGET = 13.0; - PRODUCT_NAME = FBLPromises_Privacy; + PRODUCT_NAME = image_picker_ios_privacy; SDKROOT = iphoneos; SKIP_INSTALL = YES; TARGETED_DEVICE_FAMILY = "1,2"; @@ -36994,61 +37122,7 @@ }; name = "Release-staging"; }; - D31E201300600F4065877E5D533289A0 /* Release-production */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 8ABCAE069412CFA453F913E4A7E0184B /* GoogleUtilities.release.xcconfig */; - buildSettings = { - CLANG_ENABLE_OBJC_WEAK = NO; - CODE_SIGNING_ALLOWED = NO; - CODE_SIGNING_IDENTITY = "-"; - CODE_SIGNING_REQUIRED = NO; - CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/GoogleUtilities"; - EXPANDED_CODE_SIGN_IDENTITY = "-"; - GCC_PREPROCESSOR_DEFINITIONS = ( - "$(inherited)", - "PERMISSION_CAMERA=1", - "PERMISSION_PHOTOS=1", - ); - IBSC_MODULE = GoogleUtilities; - INFOPLIST_FILE = "Target Support Files/GoogleUtilities/ResourceBundle-GoogleUtilities_Privacy-GoogleUtilities-Info.plist"; - IPHONEOS_DEPLOYMENT_TARGET = 13.0; - PRODUCT_NAME = GoogleUtilities_Privacy; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; - WRAPPER_EXTENSION = bundle; - }; - name = "Release-production"; - }; - D3F9FD4A6AE992CE30FDE734BC00F0BB /* Profile-production */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = C3A8E22467ADEB42B7D83259E1A6F078 /* Sentry.release.xcconfig */; - buildSettings = { - CLANG_ENABLE_OBJC_WEAK = NO; - CODE_SIGNING_ALLOWED = NO; - CODE_SIGNING_IDENTITY = "-"; - CODE_SIGNING_REQUIRED = NO; - CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/Sentry"; - EXPANDED_CODE_SIGN_IDENTITY = "-"; - GCC_PREPROCESSOR_DEFINITIONS = ( - "$(inherited)", - "PERMISSION_CAMERA=1", - "PERMISSION_PHOTOS=1", - ); - IBSC_MODULE = Sentry; - INFOPLIST_FILE = "Target Support Files/Sentry/ResourceBundle-Sentry-Sentry-Info.plist"; - IPHONEOS_DEPLOYMENT_TARGET = 13.0; - PRODUCT_NAME = Sentry; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; - WRAPPER_EXTENSION = bundle; - }; - name = "Profile-production"; - }; - D4D95F09FD767BC6FFA90E428B350921 /* Profile-development */ = { + D559A8A6909E8C9A324665996FDFE4F6 /* Release */ = { isa = XCBuildConfiguration; baseConfigurationReference = B587A9A0D5365CAA9B8A2CC41EB17830 /* nanopb.release.xcconfig */; buildSettings = { @@ -37086,50 +37160,36 @@ VERSIONING_SYSTEM = "apple-generic"; VERSION_INFO_PREFIX = ""; }; - name = "Profile-development"; + name = Release; }; - D4E12ECFFC218D3071A1357C0A1DB1E0 /* Profile-staging */ = { + D7667FD8432B9615C7DDD21198FAE9A7 /* Release-production */ = { isa = XCBuildConfiguration; - baseConfigurationReference = FC4CA41561F8B1B855AED3763329DD2C /* PromisesObjC.release.xcconfig */; + baseConfigurationReference = 26DCE60E629963FB754A022AED7ACC73 /* MLImage.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"; + ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; + ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; + CLANG_ENABLE_OBJC_WEAK = NO; GCC_PREPROCESSOR_DEFINITIONS = ( "$(inherited)", "PERMISSION_CAMERA=1", "PERMISSION_PHOTOS=1", ); - INFOPLIST_FILE = "Target Support Files/PromisesObjC/PromisesObjC-Info.plist"; - INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; IPHONEOS_DEPLOYMENT_TARGET = 13.0; LD_RUNPATH_SEARCH_PATHS = ( "$(inherited)", "@executable_path/Frameworks", - "@loader_path/Frameworks", ); - 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_VERSION = 5.0; TARGETED_DEVICE_FAMILY = "1,2"; VALIDATE_PRODUCT = YES; - VERSIONING_SYSTEM = "apple-generic"; - VERSION_INFO_PREFIX = ""; }; - name = "Profile-staging"; + name = "Release-production"; }; - D54964A19BE3B0F4768C760FD4F35342 /* Release */ = { + D76EAD89A1212C143FD14138244B14EA /* Release-production */ = { isa = XCBuildConfiguration; - baseConfigurationReference = C782F3D64A5DB279B07DD4535BD2F969 /* image_picker_ios.release.xcconfig */; + baseConfigurationReference = 98AE98BF8E201BFC344D7356F2883701 /* image_picker_ios.release.xcconfig */; buildSettings = { + CLANG_ENABLE_OBJC_WEAK = NO; CODE_SIGNING_ALLOWED = NO; CODE_SIGNING_IDENTITY = "-"; CODE_SIGNING_REQUIRED = NO; @@ -37147,90 +37207,55 @@ SDKROOT = iphoneos; SKIP_INSTALL = YES; TARGETED_DEVICE_FAMILY = "1,2"; - WRAPPER_EXTENSION = bundle; - }; - name = Release; - }; - D6A1848C5B2C2BF58A5A7CD5769AA540 /* Profile-staging */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = B91357BF97DBAECE656386331F10CCFD /* sqflite.release.xcconfig */; - buildSettings = { - CLANG_ENABLE_OBJC_WEAK = NO; - CODE_SIGNING_ALLOWED = NO; - CODE_SIGNING_IDENTITY = "-"; - CODE_SIGNING_REQUIRED = NO; - CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/sqflite"; - EXPANDED_CODE_SIGN_IDENTITY = "-"; - GCC_PREPROCESSOR_DEFINITIONS = ( - "$(inherited)", - "PERMISSION_CAMERA=1", - "PERMISSION_PHOTOS=1", - ); - IBSC_MODULE = sqflite; - INFOPLIST_FILE = "Target Support Files/sqflite/ResourceBundle-sqflite_darwin_privacy-sqflite-Info.plist"; - IPHONEOS_DEPLOYMENT_TARGET = 13.0; - PRODUCT_NAME = sqflite_darwin_privacy; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; - WRAPPER_EXTENSION = bundle; - }; - name = "Profile-staging"; - }; - D715044DF9A5F17E5C9FBDD3675B97D2 /* Stage-production */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 7B2F4BE2D901E9309159228CD856EBAF /* flutter_secure_storage.release.xcconfig */; - buildSettings = { - CLANG_ENABLE_OBJC_WEAK = NO; - CODE_SIGNING_ALLOWED = NO; - CODE_SIGNING_IDENTITY = "-"; - CODE_SIGNING_REQUIRED = NO; - CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/flutter_secure_storage"; - EXPANDED_CODE_SIGN_IDENTITY = "-"; - GCC_PREPROCESSOR_DEFINITIONS = ( - "$(inherited)", - "PERMISSION_CAMERA=1", - "PERMISSION_PHOTOS=1", - ); - IBSC_MODULE = flutter_secure_storage; - INFOPLIST_FILE = "Target Support Files/flutter_secure_storage/ResourceBundle-flutter_secure_storage-flutter_secure_storage-Info.plist"; - IPHONEOS_DEPLOYMENT_TARGET = 13.0; - PRODUCT_NAME = flutter_secure_storage; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - TARGETED_DEVICE_FAMILY = "1,2"; VALIDATE_PRODUCT = YES; WRAPPER_EXTENSION = bundle; }; - name = "Stage-production"; + name = "Release-production"; }; - D8A62423DD0A8576E1B4008FE6D1362C /* Release */ = { + D84DB92DBD6B0D8581307EB8CACF1822 /* Release-production */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 5D2B88AD25CD5EBE586D760474336767 /* MLKitBarcodeScanning.release.xcconfig */; + baseConfigurationReference = D4F18F4F6B39AC1431EB143FE2915402 /* GoogleUtilitiesComponents.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"; GCC_PREPROCESSOR_DEFINITIONS = ( "$(inherited)", "PERMISSION_CAMERA=1", "PERMISSION_PHOTOS=1", ); + INFOPLIST_FILE = "Target Support Files/GoogleUtilitiesComponents/GoogleUtilitiesComponents-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/GoogleUtilitiesComponents/GoogleUtilitiesComponents.modulemap"; + PRODUCT_MODULE_NAME = GoogleUtilitiesComponents; + PRODUCT_NAME = GoogleUtilitiesComponents; SDKROOT = iphoneos; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; + SWIFT_VERSION = 5.0; TARGETED_DEVICE_FAMILY = "1,2"; VALIDATE_PRODUCT = YES; + VERSIONING_SYSTEM = "apple-generic"; + VERSION_INFO_PREFIX = ""; }; - name = Release; + name = "Release-production"; }; D90851C2168A03E4125DE825B87B6F94 /* Stage-production */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 06772A7CF38F34E24C0E8F60729C6339 /* local_auth_darwin.release.xcconfig */; + baseConfigurationReference = 9ECF4B2E725AF88A4D8BD77668F776C4 /* local_auth_darwin.release.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO; @@ -37288,7 +37313,7 @@ }; D9A8AF3ABF8EC3F9B3988CF7541DEE23 /* Profile */ = { isa = XCBuildConfiguration; - baseConfigurationReference = C782F3D64A5DB279B07DD4535BD2F969 /* image_picker_ios.release.xcconfig */; + baseConfigurationReference = 98AE98BF8E201BFC344D7356F2883701 /* image_picker_ios.release.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO; @@ -37344,36 +37369,9 @@ }; name = Profile; }; - DA5DB9D00E2D771E13098B8FD9E43923 /* Profile-production */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 7B2F4BE2D901E9309159228CD856EBAF /* flutter_secure_storage.release.xcconfig */; - buildSettings = { - CLANG_ENABLE_OBJC_WEAK = NO; - CODE_SIGNING_ALLOWED = NO; - CODE_SIGNING_IDENTITY = "-"; - CODE_SIGNING_REQUIRED = NO; - CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/flutter_secure_storage"; - EXPANDED_CODE_SIGN_IDENTITY = "-"; - GCC_PREPROCESSOR_DEFINITIONS = ( - "$(inherited)", - "PERMISSION_CAMERA=1", - "PERMISSION_PHOTOS=1", - ); - IBSC_MODULE = flutter_secure_storage; - INFOPLIST_FILE = "Target Support Files/flutter_secure_storage/ResourceBundle-flutter_secure_storage-flutter_secure_storage-Info.plist"; - IPHONEOS_DEPLOYMENT_TARGET = 13.0; - PRODUCT_NAME = flutter_secure_storage; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; - WRAPPER_EXTENSION = bundle; - }; - name = "Profile-production"; - }; - DB74CC7984D6EB163F4146B0AA278979 /* Profile-staging */ = { + DAD8DE2E88A6C3E3A0930547815D282B /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 26DCE60E629963FB754A022AED7ACC73 /* MLImage.release.xcconfig */; + baseConfigurationReference = 2C5957FCE912B5945FE204322A7DE0C5 /* MLKitVision.debug.xcconfig */; buildSettings = { ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; @@ -37388,43 +37386,18 @@ "$(inherited)", "@executable_path/Frameworks", ); + ONLY_ACTIVE_ARCH = NO; SDKROOT = iphoneos; TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; }; - name = "Profile-staging"; + name = Debug; }; - DB773FB7A5A7397EEEC5FA9C46398BE4 /* Debug-development */ = { + DC0E23D768A90666F21EB84CF3BA423D /* Release-production */ = { isa = XCBuildConfiguration; - baseConfigurationReference = FC4CA41561F8B1B855AED3763329DD2C /* PromisesObjC.release.xcconfig */; + baseConfigurationReference = F9F252ACFB155ACF9BB56FB267880E01 /* url_launcher_ios.release.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; - CODE_SIGNING_ALLOWED = NO; - CODE_SIGNING_IDENTITY = "-"; - CODE_SIGNING_REQUIRED = NO; - CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/PromisesObjC"; - EXPANDED_CODE_SIGN_IDENTITY = "-"; - GCC_PREPROCESSOR_DEFINITIONS = ( - "$(inherited)", - "PERMISSION_CAMERA=1", - "PERMISSION_PHOTOS=1", - ); - IBSC_MODULE = FBLPromises; - INFOPLIST_FILE = "Target Support Files/PromisesObjC/ResourceBundle-FBLPromises_Privacy-PromisesObjC-Info.plist"; - IPHONEOS_DEPLOYMENT_TARGET = 13.0; - PRODUCT_NAME = FBLPromises_Privacy; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; - WRAPPER_EXTENSION = bundle; - }; - name = "Debug-development"; - }; - DB7F8C6AF072C0DBD48D1EC7C0AD9362 /* Release-development */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = FC4CA41561F8B1B855AED3763329DD2C /* PromisesObjC.release.xcconfig */; - buildSettings = { + CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; @@ -37432,81 +37405,81 @@ DYLIB_COMPATIBILITY_VERSION = 1; DYLIB_CURRENT_VERSION = 1; DYLIB_INSTALL_NAME_BASE = "@rpath"; + ENABLE_BITCODE = NO; + "EXCLUDED_ARCHS[sdk=iphoneos*]" = "$(inherited) armv7"; + "EXCLUDED_ARCHS[sdk=iphonesimulator*]" = "$(inherited) i386"; + "FRAMEWORK_SEARCH_PATHS[sdk=iphoneos*]" = ( + "\"/Users/user/flutter/bin/cache/artifacts/engine/ios-release/Flutter.xcframework/ios-arm64\"", + "$(inherited)", + ); + "FRAMEWORK_SEARCH_PATHS[sdk=iphonesimulator*]" = ( + "\"/Users/user/flutter/bin/cache/artifacts/engine/ios-release/Flutter.xcframework/ios-arm64_x86_64-simulator\"", + "$(inherited)", + ); + GCC_PREFIX_HEADER = "Target Support Files/url_launcher_ios/url_launcher_ios-prefix.pch"; GCC_PREPROCESSOR_DEFINITIONS = ( "$(inherited)", "PERMISSION_CAMERA=1", "PERMISSION_PHOTOS=1", ); - INFOPLIST_FILE = "Target Support Files/PromisesObjC/PromisesObjC-Info.plist"; + INFOPLIST_FILE = "Target Support Files/url_launcher_ios/url_launcher_ios-Info.plist"; INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; IPHONEOS_DEPLOYMENT_TARGET = 13.0; - LD_RUNPATH_SEARCH_PATHS = ( + MODULEMAP_FILE = "Target Support Files/url_launcher_ios/url_launcher_ios.modulemap"; + OTHER_LDFLAGS = ( "$(inherited)", - "@executable_path/Frameworks", - "@loader_path/Frameworks", + "-framework", + Flutter, ); - MODULEMAP_FILE = "Target Support Files/PromisesObjC/PromisesObjC.modulemap"; - PRODUCT_MODULE_NAME = FBLPromises; - PRODUCT_NAME = FBLPromises; + PRODUCT_MODULE_NAME = url_launcher_ios; + PRODUCT_NAME = url_launcher_ios; SDKROOT = iphoneos; SKIP_INSTALL = YES; SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; SWIFT_VERSION = 5.0; TARGETED_DEVICE_FAMILY = "1,2"; VALIDATE_PRODUCT = YES; + "VALID_ARCHS[sdk=iphonesimulator*]" = "$(ARCHS_STANDARD)"; VERSIONING_SYSTEM = "apple-generic"; VERSION_INFO_PREFIX = ""; }; - name = "Release-development"; + name = "Release-production"; }; - DC0E23D768A90666F21EB84CF3BA423D /* Release-production */ = { + DC45DC8F2AEF0FA3FE5A591E9078BF0E /* Release-production */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 73DB9045D22A4FBE50F8FACF34C6F052 /* url_launcher_ios.release.xcconfig */; + baseConfigurationReference = B587A9A0D5365CAA9B8A2CC41EB17830 /* nanopb.release.xcconfig */; buildSettings = { - CLANG_ENABLE_OBJC_WEAK = NO; - CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = 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_BITCODE = NO; - "EXCLUDED_ARCHS[sdk=iphoneos*]" = "$(inherited) armv7"; - "EXCLUDED_ARCHS[sdk=iphonesimulator*]" = "$(inherited) i386"; - "FRAMEWORK_SEARCH_PATHS[sdk=iphoneos*]" = ( - "\"/Users/user/flutter/bin/cache/artifacts/engine/ios-release/Flutter.xcframework/ios-arm64\"", - "$(inherited)", - ); - "FRAMEWORK_SEARCH_PATHS[sdk=iphonesimulator*]" = ( - "\"/Users/user/flutter/bin/cache/artifacts/engine/ios-release/Flutter.xcframework/ios-arm64_x86_64-simulator\"", - "$(inherited)", - ); - GCC_PREFIX_HEADER = "Target Support Files/url_launcher_ios/url_launcher_ios-prefix.pch"; + GCC_PREFIX_HEADER = "Target Support Files/nanopb/nanopb-prefix.pch"; GCC_PREPROCESSOR_DEFINITIONS = ( "$(inherited)", "PERMISSION_CAMERA=1", "PERMISSION_PHOTOS=1", ); - INFOPLIST_FILE = "Target Support Files/url_launcher_ios/url_launcher_ios-Info.plist"; + INFOPLIST_FILE = "Target Support Files/nanopb/nanopb-Info.plist"; INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; IPHONEOS_DEPLOYMENT_TARGET = 13.0; - MODULEMAP_FILE = "Target Support Files/url_launcher_ios/url_launcher_ios.modulemap"; - OTHER_LDFLAGS = ( + LD_RUNPATH_SEARCH_PATHS = ( "$(inherited)", - "-framework", - Flutter, + "@executable_path/Frameworks", + "@loader_path/Frameworks", ); - PRODUCT_MODULE_NAME = url_launcher_ios; - PRODUCT_NAME = url_launcher_ios; + 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_VERSION = 5.0; TARGETED_DEVICE_FAMILY = "1,2"; VALIDATE_PRODUCT = YES; - "VALID_ARCHS[sdk=iphonesimulator*]" = "$(ARCHS_STANDARD)"; VERSIONING_SYSTEM = "apple-generic"; VERSION_INFO_PREFIX = ""; }; @@ -37514,7 +37487,7 @@ }; DC468C15E57BA761BB6862B03CA86ADC /* Profile-staging */ = { isa = XCBuildConfiguration; - baseConfigurationReference = B60761FA10DAC783EF5D7E4C1574226A /* connectivity_plus.release.xcconfig */; + baseConfigurationReference = 0F62AA5AF0EE048AB478074EDD1A2CD4 /* connectivity_plus.release.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO; @@ -37572,7 +37545,7 @@ }; DCB2ACD1624757ACF09CC3A67F282EB2 /* Release-development */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 79066AF4601F7FFEE6681FB7DA45FA72 /* flutter_keyboard_visibility.release.xcconfig */; + baseConfigurationReference = A0E07105D46C98227F9CF101D83E460C /* flutter_keyboard_visibility.release.xcconfig */; buildSettings = { CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -37627,58 +37600,6 @@ }; name = "Release-development"; }; - DCD0E8FB9229F94542BC6F9C2E721EC3 /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 4A911B9FACB388B308D1ABB5669DD583 /* permission_handler_apple.release.xcconfig */; - buildSettings = { - CODE_SIGNING_ALLOWED = NO; - CODE_SIGNING_IDENTITY = "-"; - CODE_SIGNING_REQUIRED = NO; - CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/permission_handler_apple"; - EXPANDED_CODE_SIGN_IDENTITY = "-"; - GCC_PREPROCESSOR_DEFINITIONS = ( - "$(inherited)", - "PERMISSION_CAMERA=1", - "PERMISSION_PHOTOS=1", - ); - IBSC_MODULE = permission_handler_apple; - INFOPLIST_FILE = "Target Support Files/permission_handler_apple/ResourceBundle-permission_handler_apple_privacy-permission_handler_apple-Info.plist"; - IPHONEOS_DEPLOYMENT_TARGET = 13.0; - PRODUCT_NAME = permission_handler_apple_privacy; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - TARGETED_DEVICE_FAMILY = "1,2"; - WRAPPER_EXTENSION = bundle; - }; - name = Release; - }; - DCD5A4C8DF37FD19712F42647989BCD4 /* Release-development */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = B587A9A0D5365CAA9B8A2CC41EB17830 /* nanopb.release.xcconfig */; - buildSettings = { - CLANG_ENABLE_OBJC_WEAK = NO; - CODE_SIGNING_ALLOWED = NO; - CODE_SIGNING_IDENTITY = "-"; - CODE_SIGNING_REQUIRED = NO; - CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/nanopb"; - EXPANDED_CODE_SIGN_IDENTITY = "-"; - GCC_PREPROCESSOR_DEFINITIONS = ( - "$(inherited)", - "PERMISSION_CAMERA=1", - "PERMISSION_PHOTOS=1", - ); - IBSC_MODULE = nanopb; - INFOPLIST_FILE = "Target Support Files/nanopb/ResourceBundle-nanopb_Privacy-nanopb-Info.plist"; - IPHONEOS_DEPLOYMENT_TARGET = 13.0; - PRODUCT_NAME = nanopb_Privacy; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; - WRAPPER_EXTENSION = bundle; - }; - name = "Release-development"; - }; DD315436FDFF4D4AAB18F02EF6A31BA6 /* Release-development */ = { isa = XCBuildConfiguration; baseConfigurationReference = 52D3A45B276300DECC1173BE9A70A0A1 /* GoogleMLKit.release.xcconfig */; @@ -37704,7 +37625,7 @@ }; DD62E6A81940CB0A5C433425956BB6C2 /* Stage-production */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 9281357EC3038ADC39C884ED1A1D94E1 /* flutter_inappwebview.release.xcconfig */; + baseConfigurationReference = F3BAFA0B70330F234C6B8BF559E7A252 /* flutter_inappwebview.release.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO; @@ -37802,7 +37723,7 @@ }; DE57D4D09EC3E947CEB81D760BF8025E /* Release-staging */ = { isa = XCBuildConfiguration; - baseConfigurationReference = B60761FA10DAC783EF5D7E4C1574226A /* connectivity_plus.release.xcconfig */; + baseConfigurationReference = 0F62AA5AF0EE048AB478074EDD1A2CD4 /* connectivity_plus.release.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO; @@ -37899,7 +37820,7 @@ }; DE8A531DD77595F526A9A62C81ED1D18 /* Debug-development */ = { isa = XCBuildConfiguration; - baseConfigurationReference = C630DC976CFC529906571DA851643B86 /* integration_test.release.xcconfig */; + baseConfigurationReference = 5ACA34BFC6EAE3E5A15EE45A206A60FA /* integration_test.release.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO; @@ -37955,63 +37876,36 @@ }; name = "Debug-development"; }; - DEB19DEF6E0FB20705D510AAA207C398 /* Release-staging */ = { + DF56675B2216B9ED8E67DAC4CD060960 /* Profile-development */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 3C623764A02C0B6BA3A628060F65377B /* flutter_native_splash.release.xcconfig */; + baseConfigurationReference = 98AE98BF8E201BFC344D7356F2883701 /* image_picker_ios.release.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; CODE_SIGNING_ALLOWED = NO; CODE_SIGNING_IDENTITY = "-"; CODE_SIGNING_REQUIRED = NO; - CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/flutter_native_splash"; - EXPANDED_CODE_SIGN_IDENTITY = "-"; - GCC_PREPROCESSOR_DEFINITIONS = ( - "$(inherited)", - "PERMISSION_CAMERA=1", - "PERMISSION_PHOTOS=1", - ); - IBSC_MODULE = flutter_native_splash; - INFOPLIST_FILE = "Target Support Files/flutter_native_splash/ResourceBundle-flutter_native_splash_privacy-flutter_native_splash-Info.plist"; - IPHONEOS_DEPLOYMENT_TARGET = 13.0; - PRODUCT_NAME = flutter_native_splash_privacy; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; - WRAPPER_EXTENSION = bundle; - }; - name = "Release-staging"; - }; - DEBCA0F7D334D1F00992EDFBDD11D968 /* Profile */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 19CE9AC8B13646CC03FBC77F131FF183 /* GoogleDataTransport.release.xcconfig */; - buildSettings = { - CLANG_ENABLE_OBJC_WEAK = NO; - CODE_SIGNING_ALLOWED = NO; - CODE_SIGNING_IDENTITY = "-"; - CODE_SIGNING_REQUIRED = NO; - CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/GoogleDataTransport"; + CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/image_picker_ios"; EXPANDED_CODE_SIGN_IDENTITY = "-"; GCC_PREPROCESSOR_DEFINITIONS = ( "$(inherited)", "PERMISSION_CAMERA=1", "PERMISSION_PHOTOS=1", ); - IBSC_MODULE = GoogleDataTransport; - INFOPLIST_FILE = "Target Support Files/GoogleDataTransport/ResourceBundle-GoogleDataTransport_Privacy-GoogleDataTransport-Info.plist"; + IBSC_MODULE = image_picker_ios; + INFOPLIST_FILE = "Target Support Files/image_picker_ios/ResourceBundle-image_picker_ios_privacy-image_picker_ios-Info.plist"; IPHONEOS_DEPLOYMENT_TARGET = 13.0; - PRODUCT_NAME = GoogleDataTransport_Privacy; + PRODUCT_NAME = image_picker_ios_privacy; SDKROOT = iphoneos; SKIP_INSTALL = YES; TARGETED_DEVICE_FAMILY = "1,2"; VALIDATE_PRODUCT = YES; WRAPPER_EXTENSION = bundle; }; - name = Profile; + name = "Profile-development"; }; DF66437B0A26FA68B01B6D6E7EA225D5 /* Release-staging */ = { isa = XCBuildConfiguration; - baseConfigurationReference = C782F3D64A5DB279B07DD4535BD2F969 /* image_picker_ios.release.xcconfig */; + baseConfigurationReference = 98AE98BF8E201BFC344D7356F2883701 /* image_picker_ios.release.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO; @@ -38067,251 +37961,131 @@ }; name = "Release-staging"; }; - DFCA5DAED721A2A3669FAEAEC27784A8 /* Release-development */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = B587A9A0D5365CAA9B8A2CC41EB17830 /* nanopb.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"; - GCC_PREFIX_HEADER = "Target Support Files/nanopb/nanopb-prefix.pch"; - GCC_PREPROCESSOR_DEFINITIONS = ( - "$(inherited)", - "PERMISSION_CAMERA=1", - "PERMISSION_PHOTOS=1", - ); - INFOPLIST_FILE = "Target Support Files/nanopb/nanopb-Info.plist"; - INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; - IPHONEOS_DEPLOYMENT_TARGET = 13.0; - LD_RUNPATH_SEARCH_PATHS = ( - "$(inherited)", - "@executable_path/Frameworks", - "@loader_path/Frameworks", - ); - 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_VERSION = 5.0; - TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; - VERSIONING_SYSTEM = "apple-generic"; - VERSION_INFO_PREFIX = ""; - }; - name = "Release-development"; - }; - E067863F9C372A93E6182A66A1515F9C /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = E5DA456B6326B3BAA4DADD6E920EC7FD /* MLKitBarcodeScanning.debug.xcconfig */; - buildSettings = { - ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; - ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; - CLANG_ENABLE_OBJC_WEAK = NO; - GCC_PREPROCESSOR_DEFINITIONS = ( - "$(inherited)", - "PERMISSION_CAMERA=1", - "PERMISSION_PHOTOS=1", - ); - IPHONEOS_DEPLOYMENT_TARGET = 13.0; - LD_RUNPATH_SEARCH_PATHS = ( - "$(inherited)", - "@executable_path/Frameworks", - ); - ONLY_ACTIVE_ARCH = NO; - SDKROOT = iphoneos; - TARGETED_DEVICE_FAMILY = "1,2"; - }; - name = Debug; - }; - E0B3BFC22178857C519C70B045A09B55 /* Profile */ = { + E01D7EA7CE4CBB52540C910F558A8267 /* Debug-staging */ = { isa = XCBuildConfiguration; - baseConfigurationReference = B60761FA10DAC783EF5D7E4C1574226A /* connectivity_plus.release.xcconfig */; + baseConfigurationReference = 59E64776226CA679807D58D84423DF5F /* flutter_email_sender.release.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; CODE_SIGNING_ALLOWED = NO; CODE_SIGNING_IDENTITY = "-"; CODE_SIGNING_REQUIRED = NO; - CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/connectivity_plus"; + CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/flutter_email_sender"; EXPANDED_CODE_SIGN_IDENTITY = "-"; GCC_PREPROCESSOR_DEFINITIONS = ( "$(inherited)", "PERMISSION_CAMERA=1", "PERMISSION_PHOTOS=1", ); - IBSC_MODULE = connectivity_plus; - INFOPLIST_FILE = "Target Support Files/connectivity_plus/ResourceBundle-connectivity_plus_privacy-connectivity_plus-Info.plist"; + IBSC_MODULE = flutter_email_sender; + INFOPLIST_FILE = "Target Support Files/flutter_email_sender/ResourceBundle-flutter_email_sender-flutter_email_sender-Info.plist"; IPHONEOS_DEPLOYMENT_TARGET = 13.0; - PRODUCT_NAME = connectivity_plus_privacy; + PRODUCT_NAME = flutter_email_sender; SDKROOT = iphoneos; SKIP_INSTALL = YES; TARGETED_DEVICE_FAMILY = "1,2"; VALIDATE_PRODUCT = YES; WRAPPER_EXTENSION = bundle; }; - name = Profile; + name = "Debug-staging"; }; - E12B22317290F3834733320E6B3E42CE /* Release-production */ = { + E050424C3778688CC8E2A04C91710467 /* Debug-staging */ = { isa = XCBuildConfiguration; - baseConfigurationReference = D4F18F4F6B39AC1431EB143FE2915402 /* GoogleUtilitiesComponents.release.xcconfig */; + baseConfigurationReference = 4BB6D83A83366DD3295B456FF36F5E3F /* permission_handler_apple.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"; - GCC_PREPROCESSOR_DEFINITIONS = ( - "$(inherited)", - "PERMISSION_CAMERA=1", - "PERMISSION_PHOTOS=1", - ); - INFOPLIST_FILE = "Target Support Files/GoogleUtilitiesComponents/GoogleUtilitiesComponents-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/GoogleUtilitiesComponents/GoogleUtilitiesComponents.modulemap"; - PRODUCT_MODULE_NAME = GoogleUtilitiesComponents; - PRODUCT_NAME = GoogleUtilitiesComponents; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_VERSION = 5.0; - TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; - VERSIONING_SYSTEM = "apple-generic"; - VERSION_INFO_PREFIX = ""; - }; - name = "Release-production"; - }; - E1B084AE68FF9E17A398CEA3F35DAF35 /* Profile-development */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 0E95E1622AE3A8ECD9572E38ECCC7DA7 /* GoogleToolboxForMac.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"; - GCC_PREFIX_HEADER = "Target Support Files/GoogleToolboxForMac/GoogleToolboxForMac-prefix.pch"; + CODE_SIGNING_ALLOWED = NO; + CODE_SIGNING_IDENTITY = "-"; + CODE_SIGNING_REQUIRED = NO; + CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/permission_handler_apple"; + EXPANDED_CODE_SIGN_IDENTITY = "-"; GCC_PREPROCESSOR_DEFINITIONS = ( "$(inherited)", "PERMISSION_CAMERA=1", "PERMISSION_PHOTOS=1", ); - INFOPLIST_FILE = "Target Support Files/GoogleToolboxForMac/GoogleToolboxForMac-Info.plist"; - INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; + IBSC_MODULE = permission_handler_apple; + INFOPLIST_FILE = "Target Support Files/permission_handler_apple/ResourceBundle-permission_handler_apple_privacy-permission_handler_apple-Info.plist"; IPHONEOS_DEPLOYMENT_TARGET = 13.0; - LD_RUNPATH_SEARCH_PATHS = ( - "$(inherited)", - "@executable_path/Frameworks", - "@loader_path/Frameworks", - ); - MODULEMAP_FILE = "Target Support Files/GoogleToolboxForMac/GoogleToolboxForMac.modulemap"; - PRODUCT_MODULE_NAME = GoogleToolboxForMac; - PRODUCT_NAME = GoogleToolboxForMac; + PRODUCT_NAME = permission_handler_apple_privacy; SDKROOT = iphoneos; SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_VERSION = 5.0; TARGETED_DEVICE_FAMILY = "1,2"; VALIDATE_PRODUCT = YES; - VERSIONING_SYSTEM = "apple-generic"; - VERSION_INFO_PREFIX = ""; + WRAPPER_EXTENSION = bundle; }; - name = "Profile-development"; + name = "Debug-staging"; }; - E337621D1352526D3AEC03A05AF9C49E /* Release-development */ = { + E180B8BFA1D68DEF59362E70EEE6802D /* Release-staging */ = { isa = XCBuildConfiguration; - baseConfigurationReference = C3A8E22467ADEB42B7D83259E1A6F078 /* Sentry.release.xcconfig */; + baseConfigurationReference = 6201BD6C84B86BD570988C7E3B8409CB /* package_info_plus.release.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; CODE_SIGNING_ALLOWED = NO; CODE_SIGNING_IDENTITY = "-"; CODE_SIGNING_REQUIRED = NO; - CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/Sentry"; + CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/package_info_plus"; EXPANDED_CODE_SIGN_IDENTITY = "-"; GCC_PREPROCESSOR_DEFINITIONS = ( "$(inherited)", "PERMISSION_CAMERA=1", "PERMISSION_PHOTOS=1", ); - IBSC_MODULE = Sentry; - INFOPLIST_FILE = "Target Support Files/Sentry/ResourceBundle-Sentry-Sentry-Info.plist"; + IBSC_MODULE = package_info_plus; + INFOPLIST_FILE = "Target Support Files/package_info_plus/ResourceBundle-package_info_plus_privacy-package_info_plus-Info.plist"; IPHONEOS_DEPLOYMENT_TARGET = 13.0; - PRODUCT_NAME = Sentry; + PRODUCT_NAME = package_info_plus_privacy; SDKROOT = iphoneos; SKIP_INSTALL = YES; TARGETED_DEVICE_FAMILY = "1,2"; VALIDATE_PRODUCT = YES; WRAPPER_EXTENSION = bundle; }; - name = "Release-development"; + name = "Release-staging"; }; - E3859CAEE5388EE79B258BF47A11A254 /* Release-development */ = { + E1DC33F229C9105EF284DFB3713A7582 /* Profile-production */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 73DB9045D22A4FBE50F8FACF34C6F052 /* url_launcher_ios.release.xcconfig */; + baseConfigurationReference = C3A8E22467ADEB42B7D83259E1A6F078 /* Sentry.release.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; CODE_SIGNING_ALLOWED = NO; CODE_SIGNING_IDENTITY = "-"; CODE_SIGNING_REQUIRED = NO; - CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/url_launcher_ios"; + CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/Sentry"; EXPANDED_CODE_SIGN_IDENTITY = "-"; GCC_PREPROCESSOR_DEFINITIONS = ( "$(inherited)", "PERMISSION_CAMERA=1", "PERMISSION_PHOTOS=1", ); - IBSC_MODULE = url_launcher_ios; - INFOPLIST_FILE = "Target Support Files/url_launcher_ios/ResourceBundle-url_launcher_ios_privacy-url_launcher_ios-Info.plist"; + IBSC_MODULE = Sentry; + INFOPLIST_FILE = "Target Support Files/Sentry/ResourceBundle-Sentry-Sentry-Info.plist"; IPHONEOS_DEPLOYMENT_TARGET = 13.0; - PRODUCT_NAME = url_launcher_ios_privacy; + PRODUCT_NAME = Sentry; SDKROOT = iphoneos; SKIP_INSTALL = YES; TARGETED_DEVICE_FAMILY = "1,2"; VALIDATE_PRODUCT = YES; WRAPPER_EXTENSION = bundle; }; - name = "Release-development"; + name = "Profile-production"; }; - E38F858231419F3D1B840C8C72EAA598 /* Release-development */ = { + E2CE2EE6D219CC732C312E339CC1FB6A /* Debug-production */ = { isa = XCBuildConfiguration; - baseConfigurationReference = C3A8E22467ADEB42B7D83259E1A6F078 /* Sentry.release.xcconfig */; + baseConfigurationReference = FC4CA41561F8B1B855AED3763329DD2C /* PromisesObjC.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"; - GCC_PREFIX_HEADER = "Target Support Files/Sentry/Sentry-prefix.pch"; GCC_PREPROCESSOR_DEFINITIONS = ( "$(inherited)", "PERMISSION_CAMERA=1", "PERMISSION_PHOTOS=1", ); - INFOPLIST_FILE = "Target Support Files/Sentry/Sentry-Info.plist"; + INFOPLIST_FILE = "Target Support Files/PromisesObjC/PromisesObjC-Info.plist"; INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; IPHONEOS_DEPLOYMENT_TARGET = 13.0; LD_RUNPATH_SEARCH_PATHS = ( @@ -38319,23 +38093,23 @@ "@executable_path/Frameworks", "@loader_path/Frameworks", ); - MODULEMAP_FILE = "Target Support Files/Sentry/Sentry.modulemap"; - PRODUCT_MODULE_NAME = Sentry; - PRODUCT_NAME = Sentry; + 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_VERSION = 5.5; + SWIFT_VERSION = 5.0; TARGETED_DEVICE_FAMILY = "1,2"; VALIDATE_PRODUCT = YES; VERSIONING_SYSTEM = "apple-generic"; VERSION_INFO_PREFIX = ""; }; - name = "Release-development"; + name = "Debug-production"; }; - E3A6AD30113A9B66215E114FAAEA0E7D /* Stage-production */ = { + E38F858231419F3D1B840C8C72EAA598 /* Release-development */ = { isa = XCBuildConfiguration; - baseConfigurationReference = D4F18F4F6B39AC1431EB143FE2915402 /* GoogleUtilitiesComponents.release.xcconfig */; + baseConfigurationReference = C3A8E22467ADEB42B7D83259E1A6F078 /* Sentry.release.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -38346,12 +38120,13 @@ DYLIB_COMPATIBILITY_VERSION = 1; DYLIB_CURRENT_VERSION = 1; DYLIB_INSTALL_NAME_BASE = "@rpath"; + GCC_PREFIX_HEADER = "Target Support Files/Sentry/Sentry-prefix.pch"; GCC_PREPROCESSOR_DEFINITIONS = ( "$(inherited)", "PERMISSION_CAMERA=1", "PERMISSION_PHOTOS=1", ); - INFOPLIST_FILE = "Target Support Files/GoogleUtilitiesComponents/GoogleUtilitiesComponents-Info.plist"; + INFOPLIST_FILE = "Target Support Files/Sentry/Sentry-Info.plist"; INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; IPHONEOS_DEPLOYMENT_TARGET = 13.0; LD_RUNPATH_SEARCH_PATHS = ( @@ -38359,24 +38134,23 @@ "@executable_path/Frameworks", "@loader_path/Frameworks", ); - MACH_O_TYPE = staticlib; - MODULEMAP_FILE = "Target Support Files/GoogleUtilitiesComponents/GoogleUtilitiesComponents.modulemap"; - PRODUCT_MODULE_NAME = GoogleUtilitiesComponents; - PRODUCT_NAME = GoogleUtilitiesComponents; + MODULEMAP_FILE = "Target Support Files/Sentry/Sentry.modulemap"; + PRODUCT_MODULE_NAME = Sentry; + PRODUCT_NAME = Sentry; SDKROOT = iphoneos; SKIP_INSTALL = YES; SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_VERSION = 5.0; + SWIFT_VERSION = 5.5; TARGETED_DEVICE_FAMILY = "1,2"; VALIDATE_PRODUCT = YES; VERSIONING_SYSTEM = "apple-generic"; VERSION_INFO_PREFIX = ""; }; - name = "Stage-production"; + name = "Release-development"; }; E3E8A3F15409657E123CE2E2D2A64ACA /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 4A911B9FACB388B308D1ABB5669DD583 /* permission_handler_apple.release.xcconfig */; + baseConfigurationReference = 4BB6D83A83366DD3295B456FF36F5E3F /* permission_handler_apple.release.xcconfig */; buildSettings = { CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -38433,6 +38207,56 @@ }; name = Release; }; + E40D3F8A0786A46DD090C72DFE90CB3C /* Debug-staging */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 5D2B88AD25CD5EBE586D760474336767 /* MLKitBarcodeScanning.release.xcconfig */; + buildSettings = { + ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; + ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; + CLANG_ENABLE_OBJC_WEAK = NO; + GCC_PREPROCESSOR_DEFINITIONS = ( + "$(inherited)", + "PERMISSION_CAMERA=1", + "PERMISSION_PHOTOS=1", + ); + IPHONEOS_DEPLOYMENT_TARGET = 13.0; + LD_RUNPATH_SEARCH_PATHS = ( + "$(inherited)", + "@executable_path/Frameworks", + ); + SDKROOT = iphoneos; + TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; + }; + name = "Debug-staging"; + }; + E54EEC8D115B4D04D8D85CF7A68A2E7E /* Debug-production */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 0F62AA5AF0EE048AB478074EDD1A2CD4 /* connectivity_plus.release.xcconfig */; + buildSettings = { + CLANG_ENABLE_OBJC_WEAK = NO; + CODE_SIGNING_ALLOWED = NO; + CODE_SIGNING_IDENTITY = "-"; + CODE_SIGNING_REQUIRED = NO; + CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/connectivity_plus"; + EXPANDED_CODE_SIGN_IDENTITY = "-"; + GCC_PREPROCESSOR_DEFINITIONS = ( + "$(inherited)", + "PERMISSION_CAMERA=1", + "PERMISSION_PHOTOS=1", + ); + IBSC_MODULE = connectivity_plus; + INFOPLIST_FILE = "Target Support Files/connectivity_plus/ResourceBundle-connectivity_plus_privacy-connectivity_plus-Info.plist"; + IPHONEOS_DEPLOYMENT_TARGET = 13.0; + PRODUCT_NAME = connectivity_plus_privacy; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; + WRAPPER_EXTENSION = bundle; + }; + name = "Debug-production"; + }; E67ACA7B02414AAA0F45FFDFA0B6352A /* Debug-production */ = { isa = XCBuildConfiguration; baseConfigurationReference = C3A8E22467ADEB42B7D83259E1A6F078 /* Sentry.release.xcconfig */; @@ -38474,35 +38298,9 @@ }; name = "Debug-production"; }; - E6C374F7FBEA11AEDD180AEA3437B5F3 /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = D8EE162A14AE49B28AFDB1D6A27459C8 /* share_plus.debug.xcconfig */; - buildSettings = { - CODE_SIGNING_ALLOWED = NO; - CODE_SIGNING_IDENTITY = "-"; - CODE_SIGNING_REQUIRED = NO; - CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/share_plus"; - EXPANDED_CODE_SIGN_IDENTITY = "-"; - GCC_PREPROCESSOR_DEFINITIONS = ( - "$(inherited)", - "PERMISSION_CAMERA=1", - "PERMISSION_PHOTOS=1", - ); - IBSC_MODULE = share_plus; - INFOPLIST_FILE = "Target Support Files/share_plus/ResourceBundle-share_plus_privacy-share_plus-Info.plist"; - IPHONEOS_DEPLOYMENT_TARGET = 13.0; - ONLY_ACTIVE_ARCH = NO; - PRODUCT_NAME = share_plus_privacy; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - TARGETED_DEVICE_FAMILY = "1,2"; - WRAPPER_EXTENSION = bundle; - }; - name = Debug; - }; E72F73A7E21FB021A205F224339C954A /* Profile-production */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 3C623764A02C0B6BA3A628060F65377B /* flutter_native_splash.release.xcconfig */; + baseConfigurationReference = 57D6AA21B16FC3FF93AD29A67F768BB2 /* flutter_native_splash.release.xcconfig */; buildSettings = { CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -38557,9 +38355,36 @@ }; name = "Profile-production"; }; + E7476C801D563F65F8908C64929C7361 /* Release-development */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 6201BD6C84B86BD570988C7E3B8409CB /* package_info_plus.release.xcconfig */; + buildSettings = { + CLANG_ENABLE_OBJC_WEAK = NO; + CODE_SIGNING_ALLOWED = NO; + CODE_SIGNING_IDENTITY = "-"; + CODE_SIGNING_REQUIRED = NO; + CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/package_info_plus"; + EXPANDED_CODE_SIGN_IDENTITY = "-"; + GCC_PREPROCESSOR_DEFINITIONS = ( + "$(inherited)", + "PERMISSION_CAMERA=1", + "PERMISSION_PHOTOS=1", + ); + IBSC_MODULE = package_info_plus; + INFOPLIST_FILE = "Target Support Files/package_info_plus/ResourceBundle-package_info_plus_privacy-package_info_plus-Info.plist"; + IPHONEOS_DEPLOYMENT_TARGET = 13.0; + PRODUCT_NAME = package_info_plus_privacy; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; + WRAPPER_EXTENSION = bundle; + }; + name = "Release-development"; + }; E75977FDCF12BF80159BA13E9CE79C01 /* Debug-development */ = { isa = XCBuildConfiguration; - baseConfigurationReference = B91357BF97DBAECE656386331F10CCFD /* sqflite.release.xcconfig */; + baseConfigurationReference = B3F81CBF23C2B71680A734B4B74EA6EF /* sqflite.release.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO; @@ -38655,6 +38480,33 @@ }; name = "Stage-production"; }; + E7817CF23E206C946981EE6E5A44BA96 /* Profile-staging */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 196B9320A9BD7C09E7C5420F49D709B3 /* share_plus.release.xcconfig */; + buildSettings = { + CLANG_ENABLE_OBJC_WEAK = NO; + CODE_SIGNING_ALLOWED = NO; + CODE_SIGNING_IDENTITY = "-"; + CODE_SIGNING_REQUIRED = NO; + CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/share_plus"; + EXPANDED_CODE_SIGN_IDENTITY = "-"; + GCC_PREPROCESSOR_DEFINITIONS = ( + "$(inherited)", + "PERMISSION_CAMERA=1", + "PERMISSION_PHOTOS=1", + ); + IBSC_MODULE = share_plus; + INFOPLIST_FILE = "Target Support Files/share_plus/ResourceBundle-share_plus_privacy-share_plus-Info.plist"; + IPHONEOS_DEPLOYMENT_TARGET = 13.0; + PRODUCT_NAME = share_plus_privacy; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; + WRAPPER_EXTENSION = bundle; + }; + name = "Profile-staging"; + }; E79E24520A78DBAAB6A11D15F4D27A56 /* Debug */ = { isa = XCBuildConfiguration; baseConfigurationReference = 238A74F0ECBAAF92A731C6E80EB18C4C /* GoogleMLKit.debug.xcconfig */; @@ -38678,36 +38530,101 @@ }; name = Debug; }; - E7A61D89B21CC9F463B5B463D237DF54 /* Release-staging */ = { + E80D97550314202A22290DF8B05727B8 /* Debug-development */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 19CE9AC8B13646CC03FBC77F131FF183 /* GoogleDataTransport.release.xcconfig */; + baseConfigurationReference = FC4CA41561F8B1B855AED3763329DD2C /* 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"; + GCC_PREPROCESSOR_DEFINITIONS = ( + "$(inherited)", + "PERMISSION_CAMERA=1", + "PERMISSION_PHOTOS=1", + ); + INFOPLIST_FILE = "Target Support Files/PromisesObjC/PromisesObjC-Info.plist"; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; + IPHONEOS_DEPLOYMENT_TARGET = 13.0; + LD_RUNPATH_SEARCH_PATHS = ( + "$(inherited)", + "@executable_path/Frameworks", + "@loader_path/Frameworks", + ); + 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_VERSION = 5.0; + TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; + VERSIONING_SYSTEM = "apple-generic"; + VERSION_INFO_PREFIX = ""; + }; + name = "Debug-development"; + }; + E810EE1825EB166A31E38937D967376E /* Release-development */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = B3F81CBF23C2B71680A734B4B74EA6EF /* sqflite.release.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; CODE_SIGNING_ALLOWED = NO; CODE_SIGNING_IDENTITY = "-"; CODE_SIGNING_REQUIRED = NO; - CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/GoogleDataTransport"; + CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/sqflite"; EXPANDED_CODE_SIGN_IDENTITY = "-"; GCC_PREPROCESSOR_DEFINITIONS = ( "$(inherited)", "PERMISSION_CAMERA=1", "PERMISSION_PHOTOS=1", ); - IBSC_MODULE = GoogleDataTransport; - INFOPLIST_FILE = "Target Support Files/GoogleDataTransport/ResourceBundle-GoogleDataTransport_Privacy-GoogleDataTransport-Info.plist"; + IBSC_MODULE = sqflite; + INFOPLIST_FILE = "Target Support Files/sqflite/ResourceBundle-sqflite_darwin_privacy-sqflite-Info.plist"; IPHONEOS_DEPLOYMENT_TARGET = 13.0; - PRODUCT_NAME = GoogleDataTransport_Privacy; + PRODUCT_NAME = sqflite_darwin_privacy; SDKROOT = iphoneos; SKIP_INSTALL = YES; TARGETED_DEVICE_FAMILY = "1,2"; VALIDATE_PRODUCT = YES; WRAPPER_EXTENSION = bundle; }; - name = "Release-staging"; + name = "Release-development"; + }; + E84BA412C0F920FF3AEA2801889F379D /* Release-development */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 98AE98BF8E201BFC344D7356F2883701 /* image_picker_ios.release.xcconfig */; + buildSettings = { + CLANG_ENABLE_OBJC_WEAK = NO; + CODE_SIGNING_ALLOWED = NO; + CODE_SIGNING_IDENTITY = "-"; + CODE_SIGNING_REQUIRED = NO; + CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/image_picker_ios"; + EXPANDED_CODE_SIGN_IDENTITY = "-"; + GCC_PREPROCESSOR_DEFINITIONS = ( + "$(inherited)", + "PERMISSION_CAMERA=1", + "PERMISSION_PHOTOS=1", + ); + IBSC_MODULE = image_picker_ios; + INFOPLIST_FILE = "Target Support Files/image_picker_ios/ResourceBundle-image_picker_ios_privacy-image_picker_ios-Info.plist"; + IPHONEOS_DEPLOYMENT_TARGET = 13.0; + PRODUCT_NAME = image_picker_ios_privacy; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; + WRAPPER_EXTENSION = bundle; + }; + name = "Release-development"; }; E8EC2AAC9D96C68D5B652996F0289D27 /* Debug-production */ = { isa = XCBuildConfiguration; - baseConfigurationReference = B91357BF97DBAECE656386331F10CCFD /* sqflite.release.xcconfig */; + baseConfigurationReference = B3F81CBF23C2B71680A734B4B74EA6EF /* sqflite.release.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO; @@ -38763,6 +38680,60 @@ }; name = "Debug-production"; }; + E8F2008BA88DD5005EDC57ABFEE2DEDA /* Profile-development */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = FC4CA41561F8B1B855AED3763329DD2C /* PromisesObjC.release.xcconfig */; + buildSettings = { + CLANG_ENABLE_OBJC_WEAK = NO; + CODE_SIGNING_ALLOWED = NO; + CODE_SIGNING_IDENTITY = "-"; + CODE_SIGNING_REQUIRED = NO; + CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/PromisesObjC"; + EXPANDED_CODE_SIGN_IDENTITY = "-"; + GCC_PREPROCESSOR_DEFINITIONS = ( + "$(inherited)", + "PERMISSION_CAMERA=1", + "PERMISSION_PHOTOS=1", + ); + IBSC_MODULE = FBLPromises; + INFOPLIST_FILE = "Target Support Files/PromisesObjC/ResourceBundle-FBLPromises_Privacy-PromisesObjC-Info.plist"; + IPHONEOS_DEPLOYMENT_TARGET = 13.0; + PRODUCT_NAME = FBLPromises_Privacy; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; + WRAPPER_EXTENSION = bundle; + }; + name = "Profile-development"; + }; + E8F388B89CD61E59C78C8C9DD3A27D7D /* Release-production */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 0F62AA5AF0EE048AB478074EDD1A2CD4 /* connectivity_plus.release.xcconfig */; + buildSettings = { + CLANG_ENABLE_OBJC_WEAK = NO; + CODE_SIGNING_ALLOWED = NO; + CODE_SIGNING_IDENTITY = "-"; + CODE_SIGNING_REQUIRED = NO; + CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/connectivity_plus"; + EXPANDED_CODE_SIGN_IDENTITY = "-"; + GCC_PREPROCESSOR_DEFINITIONS = ( + "$(inherited)", + "PERMISSION_CAMERA=1", + "PERMISSION_PHOTOS=1", + ); + IBSC_MODULE = connectivity_plus; + INFOPLIST_FILE = "Target Support Files/connectivity_plus/ResourceBundle-connectivity_plus_privacy-connectivity_plus-Info.plist"; + IPHONEOS_DEPLOYMENT_TARGET = 13.0; + PRODUCT_NAME = connectivity_plus_privacy; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; + WRAPPER_EXTENSION = bundle; + }; + name = "Release-production"; + }; E9303368B416755686D3EFD3E6F3694E /* Stage-production */ = { isa = XCBuildConfiguration; buildSettings = { @@ -38825,9 +38796,47 @@ }; name = "Stage-production"; }; + E93C2FBBAE3077A449BA779EADF2E062 /* Debug-staging */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = FC4CA41561F8B1B855AED3763329DD2C /* 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"; + GCC_PREPROCESSOR_DEFINITIONS = ( + "$(inherited)", + "PERMISSION_CAMERA=1", + "PERMISSION_PHOTOS=1", + ); + INFOPLIST_FILE = "Target Support Files/PromisesObjC/PromisesObjC-Info.plist"; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; + IPHONEOS_DEPLOYMENT_TARGET = 13.0; + LD_RUNPATH_SEARCH_PATHS = ( + "$(inherited)", + "@executable_path/Frameworks", + "@loader_path/Frameworks", + ); + 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_VERSION = 5.0; + TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; + VERSIONING_SYSTEM = "apple-generic"; + VERSION_INFO_PREFIX = ""; + }; + name = "Debug-staging"; + }; E94B418B745618D760E415103579FD7F /* Profile-development */ = { isa = XCBuildConfiguration; - baseConfigurationReference = B60761FA10DAC783EF5D7E4C1574226A /* connectivity_plus.release.xcconfig */; + baseConfigurationReference = 0F62AA5AF0EE048AB478074EDD1A2CD4 /* connectivity_plus.release.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO; @@ -38885,7 +38894,7 @@ }; E950F34D91E4A13C7CCABBAF44BAFA33 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = E6392A73B6B88FA13EA5ABF7C43ACF4E /* sentry_flutter.debug.xcconfig */; + baseConfigurationReference = D604BE284D4FCCC28AE11F696FCA9D75 /* sentry_flutter.debug.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO; @@ -38943,7 +38952,7 @@ }; E9744BBD61B7F0F4727246AF61A0A877 /* Profile-staging */ = { isa = XCBuildConfiguration; - baseConfigurationReference = A7D0232BFA7DB2BABBC206DCBF4E211C /* flutter_email_sender.release.xcconfig */; + baseConfigurationReference = 59E64776226CA679807D58D84423DF5F /* flutter_email_sender.release.xcconfig */; buildSettings = { CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -39001,7 +39010,7 @@ }; E9A77B5964D3A8CE990AE276BE8F0661 /* Debug-production */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 4A911B9FACB388B308D1ABB5669DD583 /* permission_handler_apple.release.xcconfig */; + baseConfigurationReference = 4BB6D83A83366DD3295B456FF36F5E3F /* permission_handler_apple.release.xcconfig */; buildSettings = { CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -39058,9 +39067,32 @@ }; name = "Debug-production"; }; + E9BA06CEAF6AACA2B856A7FE631ED380 /* Debug-staging */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 85EF9BEBA8B20A13BA96488C86CD663A /* MLKitCommon.release.xcconfig */; + buildSettings = { + ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; + ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; + CLANG_ENABLE_OBJC_WEAK = NO; + GCC_PREPROCESSOR_DEFINITIONS = ( + "$(inherited)", + "PERMISSION_CAMERA=1", + "PERMISSION_PHOTOS=1", + ); + IPHONEOS_DEPLOYMENT_TARGET = 13.0; + LD_RUNPATH_SEARCH_PATHS = ( + "$(inherited)", + "@executable_path/Frameworks", + ); + SDKROOT = iphoneos; + TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; + }; + name = "Debug-staging"; + }; EA05D2E77C8949DE49B0CE2409C40E2B /* Stage-production */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 6D3FC8F30A9759CEC467C9CBCFF1BDA6 /* mobile_scanner.release.xcconfig */; + baseConfigurationReference = 55CABBFDA741B6809730DEE1165E60C9 /* mobile_scanner.release.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO; @@ -39117,6 +39149,33 @@ }; name = "Stage-production"; }; + EA32BF4CC18754211EB44D55A1315D56 /* Profile-development */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 19CE9AC8B13646CC03FBC77F131FF183 /* GoogleDataTransport.release.xcconfig */; + buildSettings = { + CLANG_ENABLE_OBJC_WEAK = NO; + CODE_SIGNING_ALLOWED = NO; + CODE_SIGNING_IDENTITY = "-"; + CODE_SIGNING_REQUIRED = NO; + CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/GoogleDataTransport"; + EXPANDED_CODE_SIGN_IDENTITY = "-"; + GCC_PREPROCESSOR_DEFINITIONS = ( + "$(inherited)", + "PERMISSION_CAMERA=1", + "PERMISSION_PHOTOS=1", + ); + IBSC_MODULE = GoogleDataTransport; + INFOPLIST_FILE = "Target Support Files/GoogleDataTransport/ResourceBundle-GoogleDataTransport_Privacy-GoogleDataTransport-Info.plist"; + IPHONEOS_DEPLOYMENT_TARGET = 13.0; + PRODUCT_NAME = GoogleDataTransport_Privacy; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; + WRAPPER_EXTENSION = bundle; + }; + name = "Profile-development"; + }; EA889B4580DD2B88AC1E9F319159DE9C /* Debug */ = { isa = XCBuildConfiguration; baseConfigurationReference = 7A292022678D9261E12B712A676024E9 /* Sentry.debug.xcconfig */; @@ -39158,61 +39217,48 @@ }; name = Debug; }; - EC912235909DE071E66C7530892DB573 /* Debug */ = { + EA9491538D48123BC8EABC3F8F21512D /* Release-production */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 96032D57D2E112ABF8EF589DE1640244 /* PromisesObjC.debug.xcconfig */; + baseConfigurationReference = FE5C3B02302BE4DBC83D2A553D5F5C1B /* MLKitVision.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"; + ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; + ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; + CLANG_ENABLE_OBJC_WEAK = NO; GCC_PREPROCESSOR_DEFINITIONS = ( "$(inherited)", "PERMISSION_CAMERA=1", "PERMISSION_PHOTOS=1", ); - INFOPLIST_FILE = "Target Support Files/PromisesObjC/PromisesObjC-Info.plist"; - INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; IPHONEOS_DEPLOYMENT_TARGET = 13.0; LD_RUNPATH_SEARCH_PATHS = ( "$(inherited)", "@executable_path/Frameworks", - "@loader_path/Frameworks", ); - MODULEMAP_FILE = "Target Support Files/PromisesObjC/PromisesObjC.modulemap"; - ONLY_ACTIVE_ARCH = NO; - PRODUCT_MODULE_NAME = FBLPromises; - PRODUCT_NAME = FBLPromises; SDKROOT = iphoneos; - SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_VERSION = 5.0; TARGETED_DEVICE_FAMILY = "1,2"; - VERSIONING_SYSTEM = "apple-generic"; - VERSION_INFO_PREFIX = ""; + VALIDATE_PRODUCT = YES; }; - name = Debug; + name = "Release-production"; }; - ECC0D73BF1A38DE88E2EDACE215C22AE /* Debug-staging */ = { + EC2162B1B4D0550CCB5E4BBF7CB3F245 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = FC4CA41561F8B1B855AED3763329DD2C /* PromisesObjC.release.xcconfig */; + baseConfigurationReference = 0E95E1622AE3A8ECD9572E38ECCC7DA7 /* GoogleToolboxForMac.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"; + GCC_PREFIX_HEADER = "Target Support Files/GoogleToolboxForMac/GoogleToolboxForMac-prefix.pch"; GCC_PREPROCESSOR_DEFINITIONS = ( "$(inherited)", "PERMISSION_CAMERA=1", "PERMISSION_PHOTOS=1", ); - INFOPLIST_FILE = "Target Support Files/PromisesObjC/PromisesObjC-Info.plist"; + INFOPLIST_FILE = "Target Support Files/GoogleToolboxForMac/GoogleToolboxForMac-Info.plist"; INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; IPHONEOS_DEPLOYMENT_TARGET = 13.0; LD_RUNPATH_SEARCH_PATHS = ( @@ -39220,9 +39266,9 @@ "@executable_path/Frameworks", "@loader_path/Frameworks", ); - MODULEMAP_FILE = "Target Support Files/PromisesObjC/PromisesObjC.modulemap"; - PRODUCT_MODULE_NAME = FBLPromises; - PRODUCT_NAME = FBLPromises; + MODULEMAP_FILE = "Target Support Files/GoogleToolboxForMac/GoogleToolboxForMac.modulemap"; + PRODUCT_MODULE_NAME = GoogleToolboxForMac; + PRODUCT_NAME = GoogleToolboxForMac; SDKROOT = iphoneos; SKIP_INSTALL = YES; SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; @@ -39232,7 +39278,33 @@ VERSIONING_SYSTEM = "apple-generic"; VERSION_INFO_PREFIX = ""; }; - name = "Debug-staging"; + name = Release; + }; + EC6F1198CADDCFA15CF5A2D9DA30E595 /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 8D9AF5D5743BDE9F45CA5E3010022DD8 /* permission_handler_apple.debug.xcconfig */; + buildSettings = { + CODE_SIGNING_ALLOWED = NO; + CODE_SIGNING_IDENTITY = "-"; + CODE_SIGNING_REQUIRED = NO; + CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/permission_handler_apple"; + EXPANDED_CODE_SIGN_IDENTITY = "-"; + GCC_PREPROCESSOR_DEFINITIONS = ( + "$(inherited)", + "PERMISSION_CAMERA=1", + "PERMISSION_PHOTOS=1", + ); + IBSC_MODULE = permission_handler_apple; + INFOPLIST_FILE = "Target Support Files/permission_handler_apple/ResourceBundle-permission_handler_apple_privacy-permission_handler_apple-Info.plist"; + IPHONEOS_DEPLOYMENT_TARGET = 13.0; + ONLY_ACTIVE_ARCH = NO; + PRODUCT_NAME = permission_handler_apple_privacy; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + TARGETED_DEVICE_FAMILY = "1,2"; + WRAPPER_EXTENSION = bundle; + }; + name = Debug; }; ECC24438C231C3B63E555333276C3EBF /* Stage-production */ = { isa = XCBuildConfiguration; @@ -39259,7 +39331,7 @@ }; ED0964861903B784445A2C3A4E877205 /* Release-production */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 9311BBA346794A168AC09B1625AB1683 /* path_provider_foundation.release.xcconfig */; + baseConfigurationReference = 2529F7B6D57D43838BFCB332D2EDFE47 /* path_provider_foundation.release.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO; @@ -39313,7 +39385,7 @@ }; ED262027D77549B2F36AE1C3FF64BAF3 /* Release-staging */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 869E5D3B5708F94FBC923E7B50C1DD07 /* flutter_nekoton_bridge.release.xcconfig */; + baseConfigurationReference = 5B385CBA22624866DCD19C0B8CCF9C42 /* flutter_nekoton_bridge.release.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -39352,36 +39424,9 @@ }; name = "Release-staging"; }; - ED4EC5C4D8C4F3566257445A92AB8661 /* Profile */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = FC4CA41561F8B1B855AED3763329DD2C /* PromisesObjC.release.xcconfig */; - buildSettings = { - CLANG_ENABLE_OBJC_WEAK = NO; - CODE_SIGNING_ALLOWED = NO; - CODE_SIGNING_IDENTITY = "-"; - CODE_SIGNING_REQUIRED = NO; - CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/PromisesObjC"; - EXPANDED_CODE_SIGN_IDENTITY = "-"; - GCC_PREPROCESSOR_DEFINITIONS = ( - "$(inherited)", - "PERMISSION_CAMERA=1", - "PERMISSION_PHOTOS=1", - ); - IBSC_MODULE = FBLPromises; - INFOPLIST_FILE = "Target Support Files/PromisesObjC/ResourceBundle-FBLPromises_Privacy-PromisesObjC-Info.plist"; - IPHONEOS_DEPLOYMENT_TARGET = 13.0; - PRODUCT_NAME = FBLPromises_Privacy; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; - WRAPPER_EXTENSION = bundle; - }; - name = Profile; - }; ED5C561F4541324656E08346D9549EAC /* Debug-production */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 73DB9045D22A4FBE50F8FACF34C6F052 /* url_launcher_ios.release.xcconfig */; + baseConfigurationReference = F9F252ACFB155ACF9BB56FB267880E01 /* url_launcher_ios.release.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO; @@ -39434,7 +39479,7 @@ }; ED925E00729E2CBED5978ED68FF77297 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 9D69F5F0798882A34E95D912A7DDF7B1 /* sentry_flutter.release.xcconfig */; + baseConfigurationReference = 28C6A92040B7AE9155DE2648EB0D7296 /* sentry_flutter.release.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO; @@ -39490,6 +39535,58 @@ }; name = Release; }; + EDD7C47044B60D2A26EC3ED2C3607FA2 /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = D1CCD0C16DFF0194B0A936A205ED4ED0 /* shared_preferences_foundation.release.xcconfig */; + buildSettings = { + CODE_SIGNING_ALLOWED = NO; + CODE_SIGNING_IDENTITY = "-"; + CODE_SIGNING_REQUIRED = NO; + CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/shared_preferences_foundation"; + EXPANDED_CODE_SIGN_IDENTITY = "-"; + GCC_PREPROCESSOR_DEFINITIONS = ( + "$(inherited)", + "PERMISSION_CAMERA=1", + "PERMISSION_PHOTOS=1", + ); + IBSC_MODULE = shared_preferences_foundation; + INFOPLIST_FILE = "Target Support Files/shared_preferences_foundation/ResourceBundle-shared_preferences_foundation_privacy-shared_preferences_foundation-Info.plist"; + IPHONEOS_DEPLOYMENT_TARGET = 13.0; + PRODUCT_NAME = shared_preferences_foundation_privacy; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + TARGETED_DEVICE_FAMILY = "1,2"; + WRAPPER_EXTENSION = bundle; + }; + name = Release; + }; + EE811C685AD0074FAFD8CB7FB007005E /* Stage-production */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 0F62AA5AF0EE048AB478074EDD1A2CD4 /* connectivity_plus.release.xcconfig */; + buildSettings = { + CLANG_ENABLE_OBJC_WEAK = NO; + CODE_SIGNING_ALLOWED = NO; + CODE_SIGNING_IDENTITY = "-"; + CODE_SIGNING_REQUIRED = NO; + CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/connectivity_plus"; + EXPANDED_CODE_SIGN_IDENTITY = "-"; + GCC_PREPROCESSOR_DEFINITIONS = ( + "$(inherited)", + "PERMISSION_CAMERA=1", + "PERMISSION_PHOTOS=1", + ); + IBSC_MODULE = connectivity_plus; + INFOPLIST_FILE = "Target Support Files/connectivity_plus/ResourceBundle-connectivity_plus_privacy-connectivity_plus-Info.plist"; + IPHONEOS_DEPLOYMENT_TARGET = 13.0; + PRODUCT_NAME = connectivity_plus_privacy; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; + WRAPPER_EXTENSION = bundle; + }; + name = "Stage-production"; + }; EE8CB7F92A535A00F89B6743570FCCD1 /* Release-production */ = { isa = XCBuildConfiguration; baseConfigurationReference = 73D89C94CFD6B64639D3C4946A7F2F37 /* Pods-Runner.release-production.xcconfig */; @@ -39550,43 +39647,32 @@ }; name = "Release-production"; }; - EEA4CE44BFD21D862DC2A17E51D9C7D4 /* Debug-production */ = { + EF07EF5BFF322CC345DE31150A7444AC /* Profile-production */ = { isa = XCBuildConfiguration; - baseConfigurationReference = FC4CA41561F8B1B855AED3763329DD2C /* PromisesObjC.release.xcconfig */; + baseConfigurationReference = B587A9A0D5365CAA9B8A2CC41EB17830 /* nanopb.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"; + CLANG_ENABLE_OBJC_WEAK = NO; + CODE_SIGNING_ALLOWED = NO; + CODE_SIGNING_IDENTITY = "-"; + CODE_SIGNING_REQUIRED = NO; + CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/nanopb"; + EXPANDED_CODE_SIGN_IDENTITY = "-"; GCC_PREPROCESSOR_DEFINITIONS = ( "$(inherited)", "PERMISSION_CAMERA=1", "PERMISSION_PHOTOS=1", ); - INFOPLIST_FILE = "Target Support Files/PromisesObjC/PromisesObjC-Info.plist"; - INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; + IBSC_MODULE = nanopb; + INFOPLIST_FILE = "Target Support Files/nanopb/ResourceBundle-nanopb_Privacy-nanopb-Info.plist"; IPHONEOS_DEPLOYMENT_TARGET = 13.0; - LD_RUNPATH_SEARCH_PATHS = ( - "$(inherited)", - "@executable_path/Frameworks", - "@loader_path/Frameworks", - ); - MODULEMAP_FILE = "Target Support Files/PromisesObjC/PromisesObjC.modulemap"; - PRODUCT_MODULE_NAME = FBLPromises; - PRODUCT_NAME = FBLPromises; + PRODUCT_NAME = nanopb_Privacy; SDKROOT = iphoneos; SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_VERSION = 5.0; TARGETED_DEVICE_FAMILY = "1,2"; VALIDATE_PRODUCT = YES; - VERSIONING_SYSTEM = "apple-generic"; - VERSION_INFO_PREFIX = ""; + WRAPPER_EXTENSION = bundle; }; - name = "Debug-production"; + name = "Profile-production"; }; EF0BCCFF170B828C395E2AAE6E5F448E /* Debug-production */ = { isa = XCBuildConfiguration; @@ -39627,32 +39713,134 @@ }; name = "Debug-production"; }; - F0847AD1D4EABC334B9FD5E2BC59E3B4 /* Debug-development */ = { + EF1268B96DBEC5A32A578CC4172CB74E /* Profile-production */ = { isa = XCBuildConfiguration; - baseConfigurationReference = B587A9A0D5365CAA9B8A2CC41EB17830 /* nanopb.release.xcconfig */; + baseConfigurationReference = 13146A48D1544CF0CF218B3A514C848E /* flutter_secure_storage.release.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; CODE_SIGNING_ALLOWED = NO; CODE_SIGNING_IDENTITY = "-"; CODE_SIGNING_REQUIRED = NO; - CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/nanopb"; + CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/flutter_secure_storage"; EXPANDED_CODE_SIGN_IDENTITY = "-"; GCC_PREPROCESSOR_DEFINITIONS = ( "$(inherited)", "PERMISSION_CAMERA=1", "PERMISSION_PHOTOS=1", ); - IBSC_MODULE = nanopb; - INFOPLIST_FILE = "Target Support Files/nanopb/ResourceBundle-nanopb_Privacy-nanopb-Info.plist"; + IBSC_MODULE = flutter_secure_storage; + INFOPLIST_FILE = "Target Support Files/flutter_secure_storage/ResourceBundle-flutter_secure_storage-flutter_secure_storage-Info.plist"; IPHONEOS_DEPLOYMENT_TARGET = 13.0; - PRODUCT_NAME = nanopb_Privacy; + PRODUCT_NAME = flutter_secure_storage; SDKROOT = iphoneos; SKIP_INSTALL = YES; TARGETED_DEVICE_FAMILY = "1,2"; VALIDATE_PRODUCT = YES; WRAPPER_EXTENSION = bundle; }; - name = "Debug-development"; + name = "Profile-production"; + }; + EF5A08D6947ED70CC945059235494249 /* Stage-production */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 13146A48D1544CF0CF218B3A514C848E /* flutter_secure_storage.release.xcconfig */; + buildSettings = { + CLANG_ENABLE_OBJC_WEAK = NO; + CODE_SIGNING_ALLOWED = NO; + CODE_SIGNING_IDENTITY = "-"; + CODE_SIGNING_REQUIRED = NO; + CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/flutter_secure_storage"; + EXPANDED_CODE_SIGN_IDENTITY = "-"; + GCC_PREPROCESSOR_DEFINITIONS = ( + "$(inherited)", + "PERMISSION_CAMERA=1", + "PERMISSION_PHOTOS=1", + ); + IBSC_MODULE = flutter_secure_storage; + INFOPLIST_FILE = "Target Support Files/flutter_secure_storage/ResourceBundle-flutter_secure_storage-flutter_secure_storage-Info.plist"; + IPHONEOS_DEPLOYMENT_TARGET = 13.0; + PRODUCT_NAME = flutter_secure_storage; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; + WRAPPER_EXTENSION = bundle; + }; + name = "Stage-production"; + }; + EF80B7F643832C37F157F5FC8F74E5B0 /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = FB633F8BFD9D6596E94916C974E76A66 /* flutter_email_sender.debug.xcconfig */; + buildSettings = { + CODE_SIGNING_ALLOWED = NO; + CODE_SIGNING_IDENTITY = "-"; + CODE_SIGNING_REQUIRED = NO; + CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/flutter_email_sender"; + EXPANDED_CODE_SIGN_IDENTITY = "-"; + GCC_PREPROCESSOR_DEFINITIONS = ( + "$(inherited)", + "PERMISSION_CAMERA=1", + "PERMISSION_PHOTOS=1", + ); + IBSC_MODULE = flutter_email_sender; + INFOPLIST_FILE = "Target Support Files/flutter_email_sender/ResourceBundle-flutter_email_sender-flutter_email_sender-Info.plist"; + IPHONEOS_DEPLOYMENT_TARGET = 13.0; + ONLY_ACTIVE_ARCH = NO; + PRODUCT_NAME = flutter_email_sender; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + TARGETED_DEVICE_FAMILY = "1,2"; + WRAPPER_EXTENSION = bundle; + }; + name = Debug; + }; + F0FECE335AD63B25717CA1E75BA2E4C8 /* Release-development */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 85EF9BEBA8B20A13BA96488C86CD663A /* MLKitCommon.release.xcconfig */; + buildSettings = { + ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; + ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; + CLANG_ENABLE_OBJC_WEAK = NO; + GCC_PREPROCESSOR_DEFINITIONS = ( + "$(inherited)", + "PERMISSION_CAMERA=1", + "PERMISSION_PHOTOS=1", + ); + IPHONEOS_DEPLOYMENT_TARGET = 13.0; + LD_RUNPATH_SEARCH_PATHS = ( + "$(inherited)", + "@executable_path/Frameworks", + ); + SDKROOT = iphoneos; + TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; + }; + name = "Release-development"; + }; + F193C162128DEDC2F337B9BE4F0F5637 /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = F69566DAE9F9C879A66CB81ED7B13590 /* path_provider_foundation.debug.xcconfig */; + buildSettings = { + CODE_SIGNING_ALLOWED = NO; + CODE_SIGNING_IDENTITY = "-"; + CODE_SIGNING_REQUIRED = NO; + CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/path_provider_foundation"; + EXPANDED_CODE_SIGN_IDENTITY = "-"; + GCC_PREPROCESSOR_DEFINITIONS = ( + "$(inherited)", + "PERMISSION_CAMERA=1", + "PERMISSION_PHOTOS=1", + ); + IBSC_MODULE = path_provider_foundation; + INFOPLIST_FILE = "Target Support Files/path_provider_foundation/ResourceBundle-path_provider_foundation_privacy-path_provider_foundation-Info.plist"; + IPHONEOS_DEPLOYMENT_TARGET = 13.0; + ONLY_ACTIVE_ARCH = NO; + PRODUCT_NAME = path_provider_foundation_privacy; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + TARGETED_DEVICE_FAMILY = "1,2"; + WRAPPER_EXTENSION = bundle; + }; + name = Debug; }; F1CD3955EC7C933B776FA0021DD2546C /* Profile-staging */ = { isa = XCBuildConfiguration; @@ -39693,9 +39881,36 @@ }; name = "Profile-staging"; }; + F250DE6C5FA086F388520E33CB4275AE /* Release-production */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 13146A48D1544CF0CF218B3A514C848E /* flutter_secure_storage.release.xcconfig */; + buildSettings = { + CLANG_ENABLE_OBJC_WEAK = NO; + CODE_SIGNING_ALLOWED = NO; + CODE_SIGNING_IDENTITY = "-"; + CODE_SIGNING_REQUIRED = NO; + CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/flutter_secure_storage"; + EXPANDED_CODE_SIGN_IDENTITY = "-"; + GCC_PREPROCESSOR_DEFINITIONS = ( + "$(inherited)", + "PERMISSION_CAMERA=1", + "PERMISSION_PHOTOS=1", + ); + IBSC_MODULE = flutter_secure_storage; + INFOPLIST_FILE = "Target Support Files/flutter_secure_storage/ResourceBundle-flutter_secure_storage-flutter_secure_storage-Info.plist"; + IPHONEOS_DEPLOYMENT_TARGET = 13.0; + PRODUCT_NAME = flutter_secure_storage; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; + WRAPPER_EXTENSION = bundle; + }; + name = "Release-production"; + }; F2D17168827296D529751628C4A34348 /* Release-production */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 6D3FC8F30A9759CEC467C9CBCFF1BDA6 /* mobile_scanner.release.xcconfig */; + baseConfigurationReference = 55CABBFDA741B6809730DEE1165E60C9 /* mobile_scanner.release.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO; @@ -39793,7 +40008,7 @@ }; F384B056A2762DBFA233F52EF86A0A80 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 1D2355FD138907962A151973A3FB89DA /* flutter_nekoton_bridge.debug.xcconfig */; + baseConfigurationReference = F36194840FD2222C0B70430C82AED48C /* flutter_nekoton_bridge.debug.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -39832,9 +40047,59 @@ }; name = Debug; }; + F3F17799DC5AA425FFBC8FD18E717DAE /* Release-staging */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 19CE9AC8B13646CC03FBC77F131FF183 /* GoogleDataTransport.release.xcconfig */; + buildSettings = { + CLANG_ENABLE_OBJC_WEAK = NO; + CODE_SIGNING_ALLOWED = NO; + CODE_SIGNING_IDENTITY = "-"; + CODE_SIGNING_REQUIRED = NO; + CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/GoogleDataTransport"; + EXPANDED_CODE_SIGN_IDENTITY = "-"; + GCC_PREPROCESSOR_DEFINITIONS = ( + "$(inherited)", + "PERMISSION_CAMERA=1", + "PERMISSION_PHOTOS=1", + ); + IBSC_MODULE = GoogleDataTransport; + INFOPLIST_FILE = "Target Support Files/GoogleDataTransport/ResourceBundle-GoogleDataTransport_Privacy-GoogleDataTransport-Info.plist"; + IPHONEOS_DEPLOYMENT_TARGET = 13.0; + PRODUCT_NAME = GoogleDataTransport_Privacy; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; + WRAPPER_EXTENSION = bundle; + }; + name = "Release-staging"; + }; + F4226235026669B694D27F5F446E91FD /* Profile-development */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 5D2B88AD25CD5EBE586D760474336767 /* MLKitBarcodeScanning.release.xcconfig */; + buildSettings = { + ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; + ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; + CLANG_ENABLE_OBJC_WEAK = NO; + GCC_PREPROCESSOR_DEFINITIONS = ( + "$(inherited)", + "PERMISSION_CAMERA=1", + "PERMISSION_PHOTOS=1", + ); + IPHONEOS_DEPLOYMENT_TARGET = 13.0; + LD_RUNPATH_SEARCH_PATHS = ( + "$(inherited)", + "@executable_path/Frameworks", + ); + SDKROOT = iphoneos; + TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; + }; + name = "Profile-development"; + }; F42EB6F460FB86477205D37036AB9F45 /* Debug-production */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 06772A7CF38F34E24C0E8F60729C6339 /* local_auth_darwin.release.xcconfig */; + baseConfigurationReference = 9ECF4B2E725AF88A4D8BD77668F776C4 /* local_auth_darwin.release.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO; @@ -39890,36 +40155,49 @@ }; name = "Debug-production"; }; - F489864311EFC3825E5A7C173256394C /* Debug-production */ = { + F4716074F43F0528F214638A0EFD850A /* Release-development */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 86E540DA830E020FCC7DEA27000E1A98 /* shared_preferences_foundation.release.xcconfig */; + baseConfigurationReference = B587A9A0D5365CAA9B8A2CC41EB17830 /* nanopb.release.xcconfig */; buildSettings = { - CLANG_ENABLE_OBJC_WEAK = NO; - CODE_SIGNING_ALLOWED = NO; - CODE_SIGNING_IDENTITY = "-"; - CODE_SIGNING_REQUIRED = NO; - CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/shared_preferences_foundation"; - EXPANDED_CODE_SIGN_IDENTITY = "-"; + "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"; + GCC_PREFIX_HEADER = "Target Support Files/nanopb/nanopb-prefix.pch"; GCC_PREPROCESSOR_DEFINITIONS = ( "$(inherited)", "PERMISSION_CAMERA=1", "PERMISSION_PHOTOS=1", ); - IBSC_MODULE = shared_preferences_foundation; - INFOPLIST_FILE = "Target Support Files/shared_preferences_foundation/ResourceBundle-shared_preferences_foundation_privacy-shared_preferences_foundation-Info.plist"; + INFOPLIST_FILE = "Target Support Files/nanopb/nanopb-Info.plist"; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; IPHONEOS_DEPLOYMENT_TARGET = 13.0; - PRODUCT_NAME = shared_preferences_foundation_privacy; + LD_RUNPATH_SEARCH_PATHS = ( + "$(inherited)", + "@executable_path/Frameworks", + "@loader_path/Frameworks", + ); + 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_VERSION = 5.0; TARGETED_DEVICE_FAMILY = "1,2"; VALIDATE_PRODUCT = YES; - WRAPPER_EXTENSION = bundle; + VERSIONING_SYSTEM = "apple-generic"; + VERSION_INFO_PREFIX = ""; }; - name = "Debug-production"; + name = "Release-development"; }; F56D51747674142DAEC86AC65E86CFF1 /* Release-production */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 86E540DA830E020FCC7DEA27000E1A98 /* shared_preferences_foundation.release.xcconfig */; + baseConfigurationReference = D1CCD0C16DFF0194B0A936A205ED4ED0 /* shared_preferences_foundation.release.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO; @@ -40010,35 +40288,9 @@ }; name = "Debug-production"; }; - F5BE9C7D39CA7EDB86F90C73DE3B0B70 /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 7A292022678D9261E12B712A676024E9 /* Sentry.debug.xcconfig */; - buildSettings = { - CODE_SIGNING_ALLOWED = NO; - CODE_SIGNING_IDENTITY = "-"; - CODE_SIGNING_REQUIRED = NO; - CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/Sentry"; - EXPANDED_CODE_SIGN_IDENTITY = "-"; - GCC_PREPROCESSOR_DEFINITIONS = ( - "$(inherited)", - "PERMISSION_CAMERA=1", - "PERMISSION_PHOTOS=1", - ); - IBSC_MODULE = Sentry; - INFOPLIST_FILE = "Target Support Files/Sentry/ResourceBundle-Sentry-Sentry-Info.plist"; - IPHONEOS_DEPLOYMENT_TARGET = 13.0; - ONLY_ACTIVE_ARCH = NO; - PRODUCT_NAME = Sentry; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - TARGETED_DEVICE_FAMILY = "1,2"; - WRAPPER_EXTENSION = bundle; - }; - name = Debug; - }; F5D7856EA55C859F8216C17A3FF5F4D2 /* Debug-staging */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 6D3FC8F30A9759CEC467C9CBCFF1BDA6 /* mobile_scanner.release.xcconfig */; + baseConfigurationReference = 55CABBFDA741B6809730DEE1165E60C9 /* mobile_scanner.release.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO; @@ -40097,7 +40349,7 @@ }; F5E38173190E3AC3073A4D47623DF988 /* Release-staging */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 9281357EC3038ADC39C884ED1A1D94E1 /* flutter_inappwebview.release.xcconfig */; + baseConfigurationReference = F3BAFA0B70330F234C6B8BF559E7A252 /* flutter_inappwebview.release.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO; @@ -40155,7 +40407,7 @@ }; F66CB43A812149A448EC2ACC004147A4 /* Release-production */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 9D69F5F0798882A34E95D912A7DDF7B1 /* sentry_flutter.release.xcconfig */; + baseConfigurationReference = 28C6A92040B7AE9155DE2648EB0D7296 /* sentry_flutter.release.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO; @@ -40211,9 +40463,36 @@ }; name = "Release-production"; }; + F7818B1DDDC7AD3407FD3CA95E84A565 /* Stage-production */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = B3F81CBF23C2B71680A734B4B74EA6EF /* sqflite.release.xcconfig */; + buildSettings = { + CLANG_ENABLE_OBJC_WEAK = NO; + CODE_SIGNING_ALLOWED = NO; + CODE_SIGNING_IDENTITY = "-"; + CODE_SIGNING_REQUIRED = NO; + CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/sqflite"; + EXPANDED_CODE_SIGN_IDENTITY = "-"; + GCC_PREPROCESSOR_DEFINITIONS = ( + "$(inherited)", + "PERMISSION_CAMERA=1", + "PERMISSION_PHOTOS=1", + ); + IBSC_MODULE = sqflite; + INFOPLIST_FILE = "Target Support Files/sqflite/ResourceBundle-sqflite_darwin_privacy-sqflite-Info.plist"; + IPHONEOS_DEPLOYMENT_TARGET = 13.0; + PRODUCT_NAME = sqflite_darwin_privacy; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; + WRAPPER_EXTENSION = bundle; + }; + name = "Stage-production"; + }; F7CE95FD4610A53F9CA6775C865E0B4B /* Release-development */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 73DB9045D22A4FBE50F8FACF34C6F052 /* url_launcher_ios.release.xcconfig */; + baseConfigurationReference = F9F252ACFB155ACF9BB56FB267880E01 /* url_launcher_ios.release.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO; @@ -40264,149 +40543,167 @@ }; name = "Release-development"; }; - F942BC976F39503C8847240D9425CC6E /* Debug-development */ = { + F7E4FD3FB5A76748AE40528928E3A998 /* Profile-staging */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 8ABCAE069412CFA453F913E4A7E0184B /* GoogleUtilities.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"; + GCC_PREPROCESSOR_DEFINITIONS = ( + "$(inherited)", + "PERMISSION_CAMERA=1", + "PERMISSION_PHOTOS=1", + ); + INFOPLIST_FILE = "Target Support Files/GoogleUtilities/GoogleUtilities-Info.plist"; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; + IPHONEOS_DEPLOYMENT_TARGET = 13.0; + LD_RUNPATH_SEARCH_PATHS = ( + "$(inherited)", + "@executable_path/Frameworks", + "@loader_path/Frameworks", + ); + 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_VERSION = 5.0; + TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; + VERSIONING_SYSTEM = "apple-generic"; + VERSION_INFO_PREFIX = ""; + }; + name = "Profile-staging"; + }; + F80679A36B88A682BE9149A01506B17B /* Release-production */ = { isa = XCBuildConfiguration; - baseConfigurationReference = B60761FA10DAC783EF5D7E4C1574226A /* connectivity_plus.release.xcconfig */; + baseConfigurationReference = 4BB6D83A83366DD3295B456FF36F5E3F /* permission_handler_apple.release.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; CODE_SIGNING_ALLOWED = NO; CODE_SIGNING_IDENTITY = "-"; CODE_SIGNING_REQUIRED = NO; - CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/connectivity_plus"; + CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/permission_handler_apple"; EXPANDED_CODE_SIGN_IDENTITY = "-"; GCC_PREPROCESSOR_DEFINITIONS = ( "$(inherited)", "PERMISSION_CAMERA=1", "PERMISSION_PHOTOS=1", ); - IBSC_MODULE = connectivity_plus; - INFOPLIST_FILE = "Target Support Files/connectivity_plus/ResourceBundle-connectivity_plus_privacy-connectivity_plus-Info.plist"; + IBSC_MODULE = permission_handler_apple; + INFOPLIST_FILE = "Target Support Files/permission_handler_apple/ResourceBundle-permission_handler_apple_privacy-permission_handler_apple-Info.plist"; IPHONEOS_DEPLOYMENT_TARGET = 13.0; - PRODUCT_NAME = connectivity_plus_privacy; + PRODUCT_NAME = permission_handler_apple_privacy; SDKROOT = iphoneos; SKIP_INSTALL = YES; TARGETED_DEVICE_FAMILY = "1,2"; VALIDATE_PRODUCT = YES; WRAPPER_EXTENSION = bundle; }; - name = "Debug-development"; + name = "Release-production"; }; - F94E87A3C2E44F75D7C082F05F54324B /* Debug-staging */ = { + F82A2A4B40B4F54C0353F8FB5C8082E3 /* Release-production */ = { isa = XCBuildConfiguration; - baseConfigurationReference = B60761FA10DAC783EF5D7E4C1574226A /* connectivity_plus.release.xcconfig */; + baseConfigurationReference = F9F252ACFB155ACF9BB56FB267880E01 /* url_launcher_ios.release.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; - CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = 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_BITCODE = NO; - "EXCLUDED_ARCHS[sdk=iphoneos*]" = "$(inherited) armv7"; - "EXCLUDED_ARCHS[sdk=iphonesimulator*]" = "$(inherited) i386"; - "FRAMEWORK_SEARCH_PATHS[sdk=iphoneos*]" = ( - "\"/Users/user/flutter/bin/cache/artifacts/engine/ios-release/Flutter.xcframework/ios-arm64\"", - "$(inherited)", - ); - "FRAMEWORK_SEARCH_PATHS[sdk=iphonesimulator*]" = ( - "\"/Users/user/flutter/bin/cache/artifacts/engine/ios-release/Flutter.xcframework/ios-arm64_x86_64-simulator\"", - "$(inherited)", - ); - GCC_PREFIX_HEADER = "Target Support Files/connectivity_plus/connectivity_plus-prefix.pch"; + CODE_SIGNING_ALLOWED = NO; + CODE_SIGNING_IDENTITY = "-"; + CODE_SIGNING_REQUIRED = NO; + CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/url_launcher_ios"; + EXPANDED_CODE_SIGN_IDENTITY = "-"; GCC_PREPROCESSOR_DEFINITIONS = ( "$(inherited)", "PERMISSION_CAMERA=1", "PERMISSION_PHOTOS=1", ); - INFOPLIST_FILE = "Target Support Files/connectivity_plus/connectivity_plus-Info.plist"; - INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; + IBSC_MODULE = url_launcher_ios; + INFOPLIST_FILE = "Target Support Files/url_launcher_ios/ResourceBundle-url_launcher_ios_privacy-url_launcher_ios-Info.plist"; IPHONEOS_DEPLOYMENT_TARGET = 13.0; - LD_RUNPATH_SEARCH_PATHS = ( - "$(inherited)", - "@executable_path/Frameworks", - "@loader_path/Frameworks", - ); - MODULEMAP_FILE = "Target Support Files/connectivity_plus/connectivity_plus.modulemap"; - OTHER_LDFLAGS = ( - "$(inherited)", - "-framework", - Flutter, - ); - PRODUCT_MODULE_NAME = connectivity_plus; - PRODUCT_NAME = connectivity_plus; + PRODUCT_NAME = url_launcher_ios_privacy; SDKROOT = iphoneos; SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_VERSION = 5.0; TARGETED_DEVICE_FAMILY = "1,2"; VALIDATE_PRODUCT = YES; - "VALID_ARCHS[sdk=iphonesimulator*]" = "$(ARCHS_STANDARD)"; - VERSIONING_SYSTEM = "apple-generic"; - VERSION_INFO_PREFIX = ""; + WRAPPER_EXTENSION = bundle; }; - name = "Debug-staging"; + name = "Release-production"; }; - F9E37CE026668C3FA79F2C3A5576EF18 /* Profile-development */ = { + F89154711372A5FA8537EBD6C5F6502E /* Stage-production */ = { isa = XCBuildConfiguration; - baseConfigurationReference = C3A8E22467ADEB42B7D83259E1A6F078 /* Sentry.release.xcconfig */; + baseConfigurationReference = 6201BD6C84B86BD570988C7E3B8409CB /* package_info_plus.release.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; CODE_SIGNING_ALLOWED = NO; CODE_SIGNING_IDENTITY = "-"; CODE_SIGNING_REQUIRED = NO; - CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/Sentry"; + CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/package_info_plus"; EXPANDED_CODE_SIGN_IDENTITY = "-"; GCC_PREPROCESSOR_DEFINITIONS = ( "$(inherited)", "PERMISSION_CAMERA=1", "PERMISSION_PHOTOS=1", ); - IBSC_MODULE = Sentry; - INFOPLIST_FILE = "Target Support Files/Sentry/ResourceBundle-Sentry-Sentry-Info.plist"; + IBSC_MODULE = package_info_plus; + INFOPLIST_FILE = "Target Support Files/package_info_plus/ResourceBundle-package_info_plus_privacy-package_info_plus-Info.plist"; IPHONEOS_DEPLOYMENT_TARGET = 13.0; - PRODUCT_NAME = Sentry; + PRODUCT_NAME = package_info_plus_privacy; SDKROOT = iphoneos; SKIP_INSTALL = YES; TARGETED_DEVICE_FAMILY = "1,2"; VALIDATE_PRODUCT = YES; WRAPPER_EXTENSION = bundle; }; - name = "Profile-development"; + name = "Stage-production"; }; - FA04BB2F85BC3DCB5AF0348013CA1D70 /* Release-development */ = { + F8F6D3560717D6A4D6E31B75FB892D38 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 06772A7CF38F34E24C0E8F60729C6339 /* local_auth_darwin.release.xcconfig */; + baseConfigurationReference = E2D59994DB2DF47504EA20EBB04953C4 /* MLKitCommon.debug.xcconfig */; buildSettings = { + ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; + ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; CLANG_ENABLE_OBJC_WEAK = NO; - CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO; + GCC_PREPROCESSOR_DEFINITIONS = ( + "$(inherited)", + "PERMISSION_CAMERA=1", + "PERMISSION_PHOTOS=1", + ); + IPHONEOS_DEPLOYMENT_TARGET = 13.0; + LD_RUNPATH_SEARCH_PATHS = ( + "$(inherited)", + "@executable_path/Frameworks", + ); + ONLY_ACTIVE_ARCH = NO; + SDKROOT = iphoneos; + TARGETED_DEVICE_FAMILY = "1,2"; + }; + name = Debug; + }; + F913B2DD78C24C0147448FB9490064DE /* Release-development */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 8ABCAE069412CFA453F913E4A7E0184B /* GoogleUtilities.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_BITCODE = NO; - "EXCLUDED_ARCHS[sdk=iphoneos*]" = "$(inherited) armv7"; - "EXCLUDED_ARCHS[sdk=iphonesimulator*]" = "$(inherited) i386"; - "FRAMEWORK_SEARCH_PATHS[sdk=iphoneos*]" = ( - "\"/Users/user/flutter/bin/cache/artifacts/engine/ios-release/Flutter.xcframework/ios-arm64\"", - "$(inherited)", - ); - "FRAMEWORK_SEARCH_PATHS[sdk=iphonesimulator*]" = ( - "\"/Users/user/flutter/bin/cache/artifacts/engine/ios-release/Flutter.xcframework/ios-arm64_x86_64-simulator\"", - "$(inherited)", - ); - GCC_PREFIX_HEADER = "Target Support Files/local_auth_darwin/local_auth_darwin-prefix.pch"; GCC_PREPROCESSOR_DEFINITIONS = ( "$(inherited)", "PERMISSION_CAMERA=1", "PERMISSION_PHOTOS=1", ); - INFOPLIST_FILE = "Target Support Files/local_auth_darwin/local_auth_darwin-Info.plist"; + INFOPLIST_FILE = "Target Support Files/GoogleUtilities/GoogleUtilities-Info.plist"; INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; IPHONEOS_DEPLOYMENT_TARGET = 13.0; LD_RUNPATH_SEARCH_PATHS = ( @@ -40414,45 +40711,51 @@ "@executable_path/Frameworks", "@loader_path/Frameworks", ); - MODULEMAP_FILE = "Target Support Files/local_auth_darwin/local_auth_darwin.modulemap"; - OTHER_LDFLAGS = ( - "$(inherited)", - "-framework", - Flutter, - ); - PRODUCT_MODULE_NAME = local_auth_darwin; - PRODUCT_NAME = local_auth_darwin; + 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_VERSION = 5.0; TARGETED_DEVICE_FAMILY = "1,2"; VALIDATE_PRODUCT = YES; - "VALID_ARCHS[sdk=iphonesimulator*]" = "$(ARCHS_STANDARD)"; VERSIONING_SYSTEM = "apple-generic"; VERSION_INFO_PREFIX = ""; }; name = "Release-development"; }; - FA33BF06174B76B7F3A1E3EE54313716 /* Release-staging */ = { + F94E87A3C2E44F75D7C082F05F54324B /* Debug-staging */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 0E95E1622AE3A8ECD9572E38ECCC7DA7 /* GoogleToolboxForMac.release.xcconfig */; + baseConfigurationReference = 0F62AA5AF0EE048AB478074EDD1A2CD4 /* connectivity_plus.release.xcconfig */; buildSettings = { + CLANG_ENABLE_OBJC_WEAK = NO; + CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = 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"; - GCC_PREFIX_HEADER = "Target Support Files/GoogleToolboxForMac/GoogleToolboxForMac-prefix.pch"; + ENABLE_BITCODE = NO; + "EXCLUDED_ARCHS[sdk=iphoneos*]" = "$(inherited) armv7"; + "EXCLUDED_ARCHS[sdk=iphonesimulator*]" = "$(inherited) i386"; + "FRAMEWORK_SEARCH_PATHS[sdk=iphoneos*]" = ( + "\"/Users/user/flutter/bin/cache/artifacts/engine/ios-release/Flutter.xcframework/ios-arm64\"", + "$(inherited)", + ); + "FRAMEWORK_SEARCH_PATHS[sdk=iphonesimulator*]" = ( + "\"/Users/user/flutter/bin/cache/artifacts/engine/ios-release/Flutter.xcframework/ios-arm64_x86_64-simulator\"", + "$(inherited)", + ); + GCC_PREFIX_HEADER = "Target Support Files/connectivity_plus/connectivity_plus-prefix.pch"; GCC_PREPROCESSOR_DEFINITIONS = ( "$(inherited)", "PERMISSION_CAMERA=1", "PERMISSION_PHOTOS=1", ); - INFOPLIST_FILE = "Target Support Files/GoogleToolboxForMac/GoogleToolboxForMac-Info.plist"; + INFOPLIST_FILE = "Target Support Files/connectivity_plus/connectivity_plus-Info.plist"; INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; IPHONEOS_DEPLOYMENT_TARGET = 13.0; LD_RUNPATH_SEARCH_PATHS = ( @@ -40460,69 +40763,87 @@ "@executable_path/Frameworks", "@loader_path/Frameworks", ); - MODULEMAP_FILE = "Target Support Files/GoogleToolboxForMac/GoogleToolboxForMac.modulemap"; - PRODUCT_MODULE_NAME = GoogleToolboxForMac; - PRODUCT_NAME = GoogleToolboxForMac; + MODULEMAP_FILE = "Target Support Files/connectivity_plus/connectivity_plus.modulemap"; + OTHER_LDFLAGS = ( + "$(inherited)", + "-framework", + Flutter, + ); + PRODUCT_MODULE_NAME = connectivity_plus; + PRODUCT_NAME = connectivity_plus; SDKROOT = iphoneos; SKIP_INSTALL = YES; SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; SWIFT_VERSION = 5.0; TARGETED_DEVICE_FAMILY = "1,2"; VALIDATE_PRODUCT = YES; + "VALID_ARCHS[sdk=iphonesimulator*]" = "$(ARCHS_STANDARD)"; VERSIONING_SYSTEM = "apple-generic"; VERSION_INFO_PREFIX = ""; }; - name = "Release-staging"; + name = "Debug-staging"; }; - FA4C936CDCBAED3371FE01509FFFB936 /* Profile-staging */ = { + FA04BB2F85BC3DCB5AF0348013CA1D70 /* Release-development */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 85EF9BEBA8B20A13BA96488C86CD663A /* MLKitCommon.release.xcconfig */; + baseConfigurationReference = 9ECF4B2E725AF88A4D8BD77668F776C4 /* local_auth_darwin.release.xcconfig */; buildSettings = { - ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; - ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; CLANG_ENABLE_OBJC_WEAK = NO; - GCC_PREPROCESSOR_DEFINITIONS = ( + CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = 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_BITCODE = NO; + "EXCLUDED_ARCHS[sdk=iphoneos*]" = "$(inherited) armv7"; + "EXCLUDED_ARCHS[sdk=iphonesimulator*]" = "$(inherited) i386"; + "FRAMEWORK_SEARCH_PATHS[sdk=iphoneos*]" = ( + "\"/Users/user/flutter/bin/cache/artifacts/engine/ios-release/Flutter.xcframework/ios-arm64\"", "$(inherited)", - "PERMISSION_CAMERA=1", - "PERMISSION_PHOTOS=1", ); - IPHONEOS_DEPLOYMENT_TARGET = 13.0; - LD_RUNPATH_SEARCH_PATHS = ( + "FRAMEWORK_SEARCH_PATHS[sdk=iphonesimulator*]" = ( + "\"/Users/user/flutter/bin/cache/artifacts/engine/ios-release/Flutter.xcframework/ios-arm64_x86_64-simulator\"", "$(inherited)", - "@executable_path/Frameworks", ); - SDKROOT = iphoneos; - TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; - }; - name = "Profile-staging"; - }; - FA690896FEF7AFB49F8D4C0134B167CE /* Release-staging */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 85EF9BEBA8B20A13BA96488C86CD663A /* MLKitCommon.release.xcconfig */; - buildSettings = { - ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; - ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; - CLANG_ENABLE_OBJC_WEAK = NO; + GCC_PREFIX_HEADER = "Target Support Files/local_auth_darwin/local_auth_darwin-prefix.pch"; GCC_PREPROCESSOR_DEFINITIONS = ( "$(inherited)", "PERMISSION_CAMERA=1", "PERMISSION_PHOTOS=1", ); + INFOPLIST_FILE = "Target Support Files/local_auth_darwin/local_auth_darwin-Info.plist"; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; IPHONEOS_DEPLOYMENT_TARGET = 13.0; LD_RUNPATH_SEARCH_PATHS = ( "$(inherited)", "@executable_path/Frameworks", + "@loader_path/Frameworks", ); + MODULEMAP_FILE = "Target Support Files/local_auth_darwin/local_auth_darwin.modulemap"; + OTHER_LDFLAGS = ( + "$(inherited)", + "-framework", + Flutter, + ); + PRODUCT_MODULE_NAME = local_auth_darwin; + PRODUCT_NAME = local_auth_darwin; SDKROOT = iphoneos; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; + SWIFT_VERSION = 5.0; TARGETED_DEVICE_FAMILY = "1,2"; VALIDATE_PRODUCT = YES; + "VALID_ARCHS[sdk=iphonesimulator*]" = "$(ARCHS_STANDARD)"; + VERSIONING_SYSTEM = "apple-generic"; + VERSION_INFO_PREFIX = ""; }; - name = "Release-staging"; + name = "Release-development"; }; FA6AB5F8B3D28C36EAD67F3AAC091F48 /* Profile-production */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 6D3FC8F30A9759CEC467C9CBCFF1BDA6 /* mobile_scanner.release.xcconfig */; + baseConfigurationReference = 55CABBFDA741B6809730DEE1165E60C9 /* mobile_scanner.release.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO; @@ -40581,7 +40902,7 @@ }; FA808C56948389BA17CB47EEE05DD700 /* Profile-production */ = { isa = XCBuildConfiguration; - baseConfigurationReference = B60761FA10DAC783EF5D7E4C1574226A /* connectivity_plus.release.xcconfig */; + baseConfigurationReference = 0F62AA5AF0EE048AB478074EDD1A2CD4 /* connectivity_plus.release.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO; @@ -40639,7 +40960,7 @@ }; FA96D37BD5FFCF41937C29005878929A /* Debug-production */ = { isa = XCBuildConfiguration; - baseConfigurationReference = A7D0232BFA7DB2BABBC206DCBF4E211C /* flutter_email_sender.release.xcconfig */; + baseConfigurationReference = 59E64776226CA679807D58D84423DF5F /* flutter_email_sender.release.xcconfig */; buildSettings = { CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -40695,99 +41016,6 @@ }; name = "Debug-production"; }; - FAC8AD3979343EEBC2BFF1DDFBA60F2D /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 75BC381227D06F73EAAF05EC5509B228 /* shared_preferences_foundation.debug.xcconfig */; - buildSettings = { - CODE_SIGNING_ALLOWED = NO; - CODE_SIGNING_IDENTITY = "-"; - CODE_SIGNING_REQUIRED = NO; - CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/shared_preferences_foundation"; - EXPANDED_CODE_SIGN_IDENTITY = "-"; - GCC_PREPROCESSOR_DEFINITIONS = ( - "$(inherited)", - "PERMISSION_CAMERA=1", - "PERMISSION_PHOTOS=1", - ); - IBSC_MODULE = shared_preferences_foundation; - INFOPLIST_FILE = "Target Support Files/shared_preferences_foundation/ResourceBundle-shared_preferences_foundation_privacy-shared_preferences_foundation-Info.plist"; - IPHONEOS_DEPLOYMENT_TARGET = 13.0; - ONLY_ACTIVE_ARCH = NO; - PRODUCT_NAME = shared_preferences_foundation_privacy; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - TARGETED_DEVICE_FAMILY = "1,2"; - WRAPPER_EXTENSION = bundle; - }; - name = Debug; - }; - FADDE2CA556D164BC31D9467889E836C /* Release-staging */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = B587A9A0D5365CAA9B8A2CC41EB17830 /* nanopb.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"; - GCC_PREFIX_HEADER = "Target Support Files/nanopb/nanopb-prefix.pch"; - GCC_PREPROCESSOR_DEFINITIONS = ( - "$(inherited)", - "PERMISSION_CAMERA=1", - "PERMISSION_PHOTOS=1", - ); - INFOPLIST_FILE = "Target Support Files/nanopb/nanopb-Info.plist"; - INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; - IPHONEOS_DEPLOYMENT_TARGET = 13.0; - LD_RUNPATH_SEARCH_PATHS = ( - "$(inherited)", - "@executable_path/Frameworks", - "@loader_path/Frameworks", - ); - 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_VERSION = 5.0; - TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; - VERSIONING_SYSTEM = "apple-generic"; - VERSION_INFO_PREFIX = ""; - }; - name = "Release-staging"; - }; - FB5ECCC48026D3B5EC0F6662CA8EDD0F /* Profile-production */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 3C623764A02C0B6BA3A628060F65377B /* flutter_native_splash.release.xcconfig */; - buildSettings = { - CLANG_ENABLE_OBJC_WEAK = NO; - CODE_SIGNING_ALLOWED = NO; - CODE_SIGNING_IDENTITY = "-"; - CODE_SIGNING_REQUIRED = NO; - CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/flutter_native_splash"; - EXPANDED_CODE_SIGN_IDENTITY = "-"; - GCC_PREPROCESSOR_DEFINITIONS = ( - "$(inherited)", - "PERMISSION_CAMERA=1", - "PERMISSION_PHOTOS=1", - ); - IBSC_MODULE = flutter_native_splash; - INFOPLIST_FILE = "Target Support Files/flutter_native_splash/ResourceBundle-flutter_native_splash_privacy-flutter_native_splash-Info.plist"; - IPHONEOS_DEPLOYMENT_TARGET = 13.0; - PRODUCT_NAME = flutter_native_splash_privacy; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; - WRAPPER_EXTENSION = bundle; - }; - name = "Profile-production"; - }; FBA90F11E5F8ADCB6F321BA156A425AD /* Profile-production */ = { isa = XCBuildConfiguration; baseConfigurationReference = 9DAA7B5E5871B37317E0633BE9DB4156 /* OrderedSet.release.xcconfig */; @@ -40830,7 +41058,7 @@ }; FBDE24CBE393C01CAFDD464D87377977 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = B60761FA10DAC783EF5D7E4C1574226A /* connectivity_plus.release.xcconfig */; + baseConfigurationReference = 0F62AA5AF0EE048AB478074EDD1A2CD4 /* connectivity_plus.release.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO; @@ -40886,50 +41114,9 @@ }; name = Release; }; - FCB526CB4AD5712B2B1BBA06FFED6EB4 /* Profile-staging */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = D4F18F4F6B39AC1431EB143FE2915402 /* GoogleUtilitiesComponents.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"; - GCC_PREPROCESSOR_DEFINITIONS = ( - "$(inherited)", - "PERMISSION_CAMERA=1", - "PERMISSION_PHOTOS=1", - ); - INFOPLIST_FILE = "Target Support Files/GoogleUtilitiesComponents/GoogleUtilitiesComponents-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/GoogleUtilitiesComponents/GoogleUtilitiesComponents.modulemap"; - PRODUCT_MODULE_NAME = GoogleUtilitiesComponents; - PRODUCT_NAME = GoogleUtilitiesComponents; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_VERSION = 5.0; - TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; - VERSIONING_SYSTEM = "apple-generic"; - VERSION_INFO_PREFIX = ""; - }; - name = "Profile-staging"; - }; FCC515AF78AA636F87D21C756E30F4E7 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 75BC381227D06F73EAAF05EC5509B228 /* shared_preferences_foundation.debug.xcconfig */; + baseConfigurationReference = C855B0903105AC46A0D025FA2287F884 /* shared_preferences_foundation.debug.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO; @@ -40980,52 +41167,25 @@ }; name = Debug; }; - FCF33689B18F9C87377D9E0B1B9BACEF /* Profile-production */ = { + FD0BC4A95DF808BF37D21788B18A0214 /* Release-staging */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 9311BBA346794A168AC09B1625AB1683 /* path_provider_foundation.release.xcconfig */; + baseConfigurationReference = 13146A48D1544CF0CF218B3A514C848E /* flutter_secure_storage.release.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; CODE_SIGNING_ALLOWED = NO; CODE_SIGNING_IDENTITY = "-"; CODE_SIGNING_REQUIRED = NO; - CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/path_provider_foundation"; - EXPANDED_CODE_SIGN_IDENTITY = "-"; - GCC_PREPROCESSOR_DEFINITIONS = ( - "$(inherited)", - "PERMISSION_CAMERA=1", - "PERMISSION_PHOTOS=1", - ); - IBSC_MODULE = path_provider_foundation; - INFOPLIST_FILE = "Target Support Files/path_provider_foundation/ResourceBundle-path_provider_foundation_privacy-path_provider_foundation-Info.plist"; - IPHONEOS_DEPLOYMENT_TARGET = 13.0; - PRODUCT_NAME = path_provider_foundation_privacy; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; - WRAPPER_EXTENSION = bundle; - }; - name = "Profile-production"; - }; - FD08587B53919125264B09EAA33657F1 /* Release-staging */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = C3A8E22467ADEB42B7D83259E1A6F078 /* Sentry.release.xcconfig */; - buildSettings = { - CLANG_ENABLE_OBJC_WEAK = NO; - CODE_SIGNING_ALLOWED = NO; - CODE_SIGNING_IDENTITY = "-"; - CODE_SIGNING_REQUIRED = NO; - CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/Sentry"; + CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/flutter_secure_storage"; EXPANDED_CODE_SIGN_IDENTITY = "-"; GCC_PREPROCESSOR_DEFINITIONS = ( "$(inherited)", "PERMISSION_CAMERA=1", "PERMISSION_PHOTOS=1", ); - IBSC_MODULE = Sentry; - INFOPLIST_FILE = "Target Support Files/Sentry/ResourceBundle-Sentry-Sentry-Info.plist"; + IBSC_MODULE = flutter_secure_storage; + INFOPLIST_FILE = "Target Support Files/flutter_secure_storage/ResourceBundle-flutter_secure_storage-flutter_secure_storage-Info.plist"; IPHONEOS_DEPLOYMENT_TARGET = 13.0; - PRODUCT_NAME = Sentry; + PRODUCT_NAME = flutter_secure_storage; SDKROOT = iphoneos; SKIP_INSTALL = YES; TARGETED_DEVICE_FAMILY = "1,2"; @@ -41034,36 +41194,9 @@ }; name = "Release-staging"; }; - FD37078CAA0C6DD41986191CB4F54337 /* Profile-production */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = A7D0232BFA7DB2BABBC206DCBF4E211C /* flutter_email_sender.release.xcconfig */; - buildSettings = { - CLANG_ENABLE_OBJC_WEAK = NO; - CODE_SIGNING_ALLOWED = NO; - CODE_SIGNING_IDENTITY = "-"; - CODE_SIGNING_REQUIRED = NO; - CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/flutter_email_sender"; - EXPANDED_CODE_SIGN_IDENTITY = "-"; - GCC_PREPROCESSOR_DEFINITIONS = ( - "$(inherited)", - "PERMISSION_CAMERA=1", - "PERMISSION_PHOTOS=1", - ); - IBSC_MODULE = flutter_email_sender; - INFOPLIST_FILE = "Target Support Files/flutter_email_sender/ResourceBundle-flutter_email_sender-flutter_email_sender-Info.plist"; - IPHONEOS_DEPLOYMENT_TARGET = 13.0; - PRODUCT_NAME = flutter_email_sender; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; - WRAPPER_EXTENSION = bundle; - }; - name = "Profile-production"; - }; FD8FD17AD5BEE0ED305ED041E9EAD39B /* Stage-production */ = { isa = XCBuildConfiguration; - baseConfigurationReference = F4C3D5A980B27BD2C418D61228F67F01 /* package_info_plus.release.xcconfig */; + baseConfigurationReference = 6201BD6C84B86BD570988C7E3B8409CB /* package_info_plus.release.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO; @@ -41119,36 +41252,112 @@ }; name = "Stage-production"; }; - FDCD75A1B22ACA8930647079E980C44A /* Release-staging */ = { + FD94C06D9B6B8F2AB010837E81FA4A4F /* Debug-development */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 5D2B88AD25CD5EBE586D760474336767 /* MLKitBarcodeScanning.release.xcconfig */; + buildSettings = { + ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; + ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; + CLANG_ENABLE_OBJC_WEAK = NO; + GCC_PREPROCESSOR_DEFINITIONS = ( + "$(inherited)", + "PERMISSION_CAMERA=1", + "PERMISSION_PHOTOS=1", + ); + IPHONEOS_DEPLOYMENT_TARGET = 13.0; + LD_RUNPATH_SEARCH_PATHS = ( + "$(inherited)", + "@executable_path/Frameworks", + ); + SDKROOT = iphoneos; + TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; + }; + name = "Debug-development"; + }; + FDB682273EFB1A3DC8AC98726170D349 /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 42385493A2E9373683CFD647E65599F1 /* url_launcher_ios.debug.xcconfig */; + buildSettings = { + CODE_SIGNING_ALLOWED = NO; + CODE_SIGNING_IDENTITY = "-"; + CODE_SIGNING_REQUIRED = NO; + CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/url_launcher_ios"; + EXPANDED_CODE_SIGN_IDENTITY = "-"; + GCC_PREPROCESSOR_DEFINITIONS = ( + "$(inherited)", + "PERMISSION_CAMERA=1", + "PERMISSION_PHOTOS=1", + ); + IBSC_MODULE = url_launcher_ios; + INFOPLIST_FILE = "Target Support Files/url_launcher_ios/ResourceBundle-url_launcher_ios_privacy-url_launcher_ios-Info.plist"; + IPHONEOS_DEPLOYMENT_TARGET = 13.0; + ONLY_ACTIVE_ARCH = NO; + PRODUCT_NAME = url_launcher_ios_privacy; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + TARGETED_DEVICE_FAMILY = "1,2"; + WRAPPER_EXTENSION = bundle; + }; + name = Debug; + }; + FDB725F11877C7C1356F6BF766C60DCA /* Profile-development */ = { isa = XCBuildConfiguration; - baseConfigurationReference = A7D0232BFA7DB2BABBC206DCBF4E211C /* flutter_email_sender.release.xcconfig */; + baseConfigurationReference = 57D6AA21B16FC3FF93AD29A67F768BB2 /* flutter_native_splash.release.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; CODE_SIGNING_ALLOWED = NO; CODE_SIGNING_IDENTITY = "-"; CODE_SIGNING_REQUIRED = NO; - CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/flutter_email_sender"; + CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/flutter_native_splash"; EXPANDED_CODE_SIGN_IDENTITY = "-"; GCC_PREPROCESSOR_DEFINITIONS = ( "$(inherited)", "PERMISSION_CAMERA=1", "PERMISSION_PHOTOS=1", ); - IBSC_MODULE = flutter_email_sender; - INFOPLIST_FILE = "Target Support Files/flutter_email_sender/ResourceBundle-flutter_email_sender-flutter_email_sender-Info.plist"; + IBSC_MODULE = flutter_native_splash; + INFOPLIST_FILE = "Target Support Files/flutter_native_splash/ResourceBundle-flutter_native_splash_privacy-flutter_native_splash-Info.plist"; IPHONEOS_DEPLOYMENT_TARGET = 13.0; - PRODUCT_NAME = flutter_email_sender; + PRODUCT_NAME = flutter_native_splash_privacy; SDKROOT = iphoneos; SKIP_INSTALL = YES; TARGETED_DEVICE_FAMILY = "1,2"; VALIDATE_PRODUCT = YES; WRAPPER_EXTENSION = bundle; }; - name = "Release-staging"; + name = "Profile-development"; + }; + FDFDB9DA187B8C068AFAE91F394FD6E4 /* Stage-production */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = D1CCD0C16DFF0194B0A936A205ED4ED0 /* shared_preferences_foundation.release.xcconfig */; + buildSettings = { + CLANG_ENABLE_OBJC_WEAK = NO; + CODE_SIGNING_ALLOWED = NO; + CODE_SIGNING_IDENTITY = "-"; + CODE_SIGNING_REQUIRED = NO; + CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/shared_preferences_foundation"; + EXPANDED_CODE_SIGN_IDENTITY = "-"; + GCC_PREPROCESSOR_DEFINITIONS = ( + "$(inherited)", + "PERMISSION_CAMERA=1", + "PERMISSION_PHOTOS=1", + ); + IBSC_MODULE = shared_preferences_foundation; + INFOPLIST_FILE = "Target Support Files/shared_preferences_foundation/ResourceBundle-shared_preferences_foundation_privacy-shared_preferences_foundation-Info.plist"; + IPHONEOS_DEPLOYMENT_TARGET = 13.0; + PRODUCT_NAME = shared_preferences_foundation_privacy; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; + WRAPPER_EXTENSION = bundle; + }; + name = "Stage-production"; }; FE3734FD56AA3D076D19C28E4626A755 /* Profile-staging */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 3C623764A02C0B6BA3A628060F65377B /* flutter_native_splash.release.xcconfig */; + baseConfigurationReference = 57D6AA21B16FC3FF93AD29A67F768BB2 /* flutter_native_splash.release.xcconfig */; buildSettings = { CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -41203,36 +41412,36 @@ }; name = "Profile-staging"; }; - FF096999A76050D18D6B943B3A0E7E81 /* Release-development */ = { + FF0B3B1291C1D7580FE8306389AFBFA5 /* Profile-development */ = { isa = XCBuildConfiguration; - baseConfigurationReference = C782F3D64A5DB279B07DD4535BD2F969 /* image_picker_ios.release.xcconfig */; + baseConfigurationReference = C3A8E22467ADEB42B7D83259E1A6F078 /* Sentry.release.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; CODE_SIGNING_ALLOWED = NO; CODE_SIGNING_IDENTITY = "-"; CODE_SIGNING_REQUIRED = NO; - CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/image_picker_ios"; + CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/Sentry"; EXPANDED_CODE_SIGN_IDENTITY = "-"; GCC_PREPROCESSOR_DEFINITIONS = ( "$(inherited)", "PERMISSION_CAMERA=1", "PERMISSION_PHOTOS=1", ); - IBSC_MODULE = image_picker_ios; - INFOPLIST_FILE = "Target Support Files/image_picker_ios/ResourceBundle-image_picker_ios_privacy-image_picker_ios-Info.plist"; + IBSC_MODULE = Sentry; + INFOPLIST_FILE = "Target Support Files/Sentry/ResourceBundle-Sentry-Sentry-Info.plist"; IPHONEOS_DEPLOYMENT_TARGET = 13.0; - PRODUCT_NAME = image_picker_ios_privacy; + PRODUCT_NAME = Sentry; SDKROOT = iphoneos; SKIP_INSTALL = YES; TARGETED_DEVICE_FAMILY = "1,2"; VALIDATE_PRODUCT = YES; WRAPPER_EXTENSION = bundle; }; - name = "Release-development"; + name = "Profile-development"; }; FF0DA87FAA776A1A3F3BC22B0E6E8B9E /* Debug-production */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 9311BBA346794A168AC09B1625AB1683 /* path_provider_foundation.release.xcconfig */; + baseConfigurationReference = 2529F7B6D57D43838BFCB332D2EDFE47 /* path_provider_foundation.release.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO; @@ -41324,6 +41533,31 @@ }; name = "Release-staging"; }; + FF5927110B5964FE37A8E6D95769C232 /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = FC4CA41561F8B1B855AED3763329DD2C /* PromisesObjC.release.xcconfig */; + buildSettings = { + CODE_SIGNING_ALLOWED = NO; + CODE_SIGNING_IDENTITY = "-"; + CODE_SIGNING_REQUIRED = NO; + CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/PromisesObjC"; + EXPANDED_CODE_SIGN_IDENTITY = "-"; + GCC_PREPROCESSOR_DEFINITIONS = ( + "$(inherited)", + "PERMISSION_CAMERA=1", + "PERMISSION_PHOTOS=1", + ); + IBSC_MODULE = FBLPromises; + INFOPLIST_FILE = "Target Support Files/PromisesObjC/ResourceBundle-FBLPromises_Privacy-PromisesObjC-Info.plist"; + IPHONEOS_DEPLOYMENT_TARGET = 13.0; + PRODUCT_NAME = FBLPromises_Privacy; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + TARGETED_DEVICE_FAMILY = "1,2"; + WRAPPER_EXTENSION = bundle; + }; + name = Release; + }; FFA0AC3C52E1313440DD2B4F1E509B4C /* Debug-staging */ = { isa = XCBuildConfiguration; buildSettings = { @@ -41429,26 +41663,6 @@ defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 05C3F26891213FD192492C715B0B6F89 /* Build configuration list for PBXAggregateTarget "MLKitVision" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - 9898FC36A6278C0A001246C6ABF4C824 /* Debug */, - 52BCEA41D6F3A16694B4D962EA565AF7 /* Debug-development */, - 7B6B0BBF85B921591A1EF76390914ADD /* Debug-production */, - 9C32CC7AD893D9A69D2BD9058518C88B /* Debug-staging */, - 962D1B9FDD7F835772AAAD47D3719CAD /* Profile */, - B7C9E068DCD3576C016F59FEF585E578 /* Profile-development */, - 8BDAFA1A5C0966804F57E4A6A4DF86EA /* Profile-production */, - 6B4212A8DB7136052C28D61F94689314 /* Profile-staging */, - 8128BAD3AE9417C13D135F40A906ADAE /* Release */, - C32BC63B71599273D814CA2A5E5FE5A1 /* Release-development */, - 7CBA8D3B8E2FE631D7E81357DB0C3F99 /* Release-production */, - 3B59A4EA0D72D774F5965417C6E7F1BB /* Release-staging */, - B02C0173BCF6BF25841EED42A7267E4F /* Stage-production */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; - }; 06DE62500D2F348CBD969F3CB1A2812F /* Build configuration list for PBXNativeTarget "package_info_plus" */ = { isa = XCConfigurationList; buildConfigurations = ( @@ -41509,122 +41723,182 @@ defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 0D1913ED4D8C2CA1E64385A43FF78C61 /* Build configuration list for PBXNativeTarget "image_picker_ios-image_picker_ios_privacy" */ = { + 0C6A8F8D7E240487B5FCD57B60A0C888 /* Build configuration list for PBXNativeTarget "local_auth_darwin-local_auth_darwin_privacy" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 2191EB27D3D4C0DFEAFB4E2B2DE77E2A /* Debug */, + 6D4E19954BD7FD2882A0A21A48AADFF5 /* Debug-development */, + 68C0C68A679A5F6997D407A519553828 /* Debug-production */, + 0AA6E1AECDF8E051F4B66000394A010E /* Debug-staging */, + 3AC3AC70722E1985E4E19D7403E7B725 /* Profile */, + 3DFA7F61166D7F7944AB0A3E8E17BBBA /* Profile-development */, + A5BD7EE0AF530BC2CBF45CBAAE872FC4 /* Profile-production */, + 0EDC0D8623352470F170B31C14A52B23 /* Profile-staging */, + 259EABE3B6EC944EE78CD15DDB871157 /* Release */, + 69909C51B451DF1443F6B3B996685633 /* Release-development */, + 360D5197F63815A705B8FA509CEACA8C /* Release-production */, + 5D052F3F79DED002F30FE4668217D611 /* Release-staging */, + A2C447B854845E4FFEA7BF262E1A485E /* Stage-production */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + 0FE10B143C1C646F5A62957ECEAD45DB /* Build configuration list for PBXNativeTarget "package_info_plus-package_info_plus_privacy" */ = { isa = XCConfigurationList; buildConfigurations = ( - 65E90EF4E409BD22B64617CB40FB6D42 /* Debug */, - 5364DCE02E56CB8893C4F5E81C6E1014 /* Debug-development */, - 25C7B8C2843EADABF683538F127259BC /* Debug-production */, - 7C0862DC353643974DD20ABD9C6BED36 /* Debug-staging */, - A612F4D63D098EFEC5C473F8511E26AB /* Profile */, - 0D9BDD05B4C7E0C77B5B147D894991FD /* Profile-development */, - 06F6DC8341C79F3C0917789954C5646E /* Profile-production */, - 0738D6F4402E2520D0C4DA21EBDE30C0 /* Profile-staging */, - D54964A19BE3B0F4768C760FD4F35342 /* Release */, - FF096999A76050D18D6B943B3A0E7E81 /* Release-development */, - 44DA148CC9AF9CD929E418E6D512952B /* Release-production */, - CC0E335F9B6B89676D3AA979C1F83114 /* Release-staging */, - 881B3EF13989FC5B1C95C11D2C4FD127 /* Stage-production */, + BF27A5EB9FEE795132D849F81F1D978E /* Debug */, + 7ED4C6B93EF45C11B99A5DC9590DFC42 /* Debug-development */, + 58B3D77EF8FD73C5DD80E4C36D22C292 /* Debug-production */, + 373EACAFD2F1D01C824698D6974CE5EB /* Debug-staging */, + 9EB23856E73FFB2D127A0FD8BD5C5F85 /* Profile */, + D38C1A40237015F31E36A0A5F339147B /* Profile-development */, + 01F27E5E0B9C3CA81A70CDF295694DAE /* Profile-production */, + 9B7A70A607DFA895ADD187A89F7FF19E /* Profile-staging */, + 7D3F63C4328F032349B0DBB19B37789A /* Release */, + E7476C801D563F65F8908C64929C7361 /* Release-development */, + 52A99C90C40F4DE6DC5F7D4AF1AFB1F5 /* Release-production */, + E180B8BFA1D68DEF59362E70EEE6802D /* Release-staging */, + F89154711372A5FA8537EBD6C5F6502E /* Stage-production */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 1D405E71AF00EDF3B4CAEBAD1ABCAD46 /* Build configuration list for PBXNativeTarget "GoogleUtilities" */ = { + 10D1D6D3E6815921603A1C524849E988 /* Build configuration list for PBXAggregateTarget "MLKitVision" */ = { isa = XCConfigurationList; buildConfigurations = ( - 051B4D978F0EA8E6621A7B761450F8E9 /* Debug */, - 58AEF3BD36C76A85F5D5C77F9B46AE2E /* Debug-development */, - 06BD1DB059E02448B6A0CE97B44518C8 /* Debug-production */, - 97695A29B214CC8204719B66FB0B972B /* Debug-staging */, - D05822BBD5DF3916B4763754B3749D42 /* Profile */, - 1DF481390C575781A240B4F88F0A3849 /* Profile-development */, - 8C7CF7B127350FCDDF63CA1C390BF9BF /* Profile-production */, - 07F9387E4B7682B690CDCB441154D861 /* Profile-staging */, - 0B2B675AFBA8B57F24319CC47765853D /* Release */, - 580A67122ADE104709F51F21150C2B03 /* Release-development */, - 849782854EF21EF2ECCEAB5044F80ABD /* Release-production */, - BCCB313671C4A1769FB2A9F48CF039E7 /* Release-staging */, - AFA00EE83D042CF378F6B3235A268074 /* Stage-production */, + DAD8DE2E88A6C3E3A0930547815D282B /* Debug */, + 184D118D8149BA8D90396128BE128F2A /* Debug-development */, + 16CACC17F81EE63C246157058EC2A8B8 /* Debug-production */, + 6863A0D3E56FA293BCA9DD6818211AC0 /* Debug-staging */, + 76FD4FBB6782CDF08427EFE5611AED8A /* Profile */, + 549787F1CBFFB4EF733A62F4913DC4B1 /* Profile-development */, + 7E5C41C756A447FDD5513199353FB8E9 /* Profile-production */, + 63D237D7576BE921234E8316C00FB758 /* Profile-staging */, + 02CD4904F1DEC6760B1F7C4BF5E04E99 /* Release */, + 89C19A490C0BBE3CF063777687CAF4D4 /* Release-development */, + EA9491538D48123BC8EABC3F8F21512D /* Release-production */, + CE27104D65B81E1BE572B5244837AA98 /* Release-staging */, + 94792EBD6354FA0E07F4A79A430BDEE4 /* Stage-production */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 2AAA923173C7FD6FBE860C118944ED18 /* Build configuration list for PBXNativeTarget "flutter_secure_storage-flutter_secure_storage" */ = { + 19E8A72DBFAE7E7805F642253E4597D7 /* Build configuration list for PBXNativeTarget "nanopb" */ = { isa = XCConfigurationList; buildConfigurations = ( - C557EFCA312D2D701FF703090CC57B91 /* Debug */, - 8C73DFFA48E6C7280D46667DD5351B7E /* Debug-development */, - 02EEE2FD203D5C0B35E5E9952E02EA11 /* Debug-production */, - 1F60E58EEE21A06BFE457E82F0F58EF9 /* Debug-staging */, - 362600F11CC649406DA20930C8F9CAC2 /* Profile */, - 3291E2C14118CE555108DF3F87439616 /* Profile-development */, - DA5DB9D00E2D771E13098B8FD9E43923 /* Profile-production */, - 98BD71457FB1963712B3883AF942E90E /* Profile-staging */, - 2389CF44DDBC74140194652ADFE97EA2 /* Release */, - 18048B9CB9D884AA8E65CF39A9C57AD8 /* Release-development */, - 397512C377405F7C09DD61626D603DAB /* Release-production */, - 550EA1785BAC97FAC378A464A4973AB1 /* Release-staging */, - D715044DF9A5F17E5C9FBDD3675B97D2 /* Stage-production */, + 138007FAF3E52F8FB5C05C03685507FF /* Debug */, + 69020DEF1854C7A5C370D702B9E0682F /* Debug-development */, + 23C4A58E7AB7B93F50C1D9075CAB736D /* Debug-production */, + 73AF244164678F921E1787EF858E0603 /* Debug-staging */, + 72C0999BB0B2C42BC261DBF1727892A3 /* Profile */, + 6008777371CB73FBD3F9B1F2D4E0CE4A /* Profile-development */, + 5E593A77E18001F10ACFBCB14E24E17A /* Profile-production */, + A3D727681F5560720D4ED7EBB1988EAD /* Profile-staging */, + D559A8A6909E8C9A324665996FDFE4F6 /* Release */, + F4716074F43F0528F214638A0EFD850A /* Release-development */, + DC45DC8F2AEF0FA3FE5A591E9078BF0E /* Release-production */, + 733B02314D3783442BD402CC84024BD6 /* Release-staging */, + 339F3113C3F66E6DAC4173AAA4CB0542 /* Stage-production */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 2E50BCEDB9F2A9DEEE43560F513911BE /* Build configuration list for PBXNativeTarget "shared_preferences_foundation-shared_preferences_foundation_privacy" */ = { + 1CF71BBB415BC68BD4C93A04F3E06E62 /* Build configuration list for PBXNativeTarget "flutter_email_sender-flutter_email_sender" */ = { isa = XCConfigurationList; buildConfigurations = ( - FAC8AD3979343EEBC2BFF1DDFBA60F2D /* Debug */, - B17D3F88D950FB68B20FD63BE0287F3F /* Debug-development */, - F489864311EFC3825E5A7C173256394C /* Debug-production */, - AC2C67413BBBA3C5183A7461C0231BF5 /* Debug-staging */, - A981A4AF80A4CB03E7E5EC1D00B6180F /* Profile */, - 5AF624E37521A01FD032104E924250BD /* Profile-development */, - 2BF7E2E23F6BE44AA27BF66EFB29B789 /* Profile-production */, - AE0175870735C10E7BCB81F3707EFE0B /* Profile-staging */, - AF85A81F8C5BAD317D8A4F8AEEA11315 /* Release */, - B925C284828DA5DA74753E14D5C49F97 /* Release-development */, - 6BBA735A1B1333FFF987EACDED2EFF74 /* Release-production */, - 6A0339125C3CCAE2FC37638AE4F65C3D /* Release-staging */, - 952BF8B0478580DA1343739B879EAB4F /* Stage-production */, + EF80B7F643832C37F157F5FC8F74E5B0 /* Debug */, + 3AFFA8E33F838E705458FF86593172D1 /* Debug-development */, + 906F8B5F2AEE14B58A7911196615D6CE /* Debug-production */, + E01D7EA7CE4CBB52540C910F558A8267 /* Debug-staging */, + 1E99DF98956DABF37220A6312AB5CB05 /* Profile */, + 8DB68F46E0C9E2C4D562BFD655F5BF7D /* Profile-development */, + 879E8E289866F113697AF9FF95C7E121 /* Profile-production */, + 1A6C7C915BAD3FC2208C6487DBDA19CC /* Profile-staging */, + 6AC73CB2CDE5673EEEB1D47C46F60C0B /* Release */, + 5732A99D6141A7818BAB4382FB15C684 /* Release-development */, + 63308B8AA01EA1142C80C80E48C1E206 /* Release-production */, + 1D0FF723E5AD86443242AF183382A4BC /* Release-staging */, + BABC86AD84039D11C924F3EA7251B369 /* Stage-production */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 2E94C0B564FC693526B6468490E61240 /* Build configuration list for PBXNativeTarget "share_plus-share_plus_privacy" */ = { + 2BE6341E108B42FC017A98F1AFB8F175 /* Build configuration list for PBXNativeTarget "shared_preferences_foundation-shared_preferences_foundation_privacy" */ = { isa = XCConfigurationList; buildConfigurations = ( - E6C374F7FBEA11AEDD180AEA3437B5F3 /* Debug */, - 1572B1084267B4E8AC106780372A03E5 /* Debug-development */, - 597ADC1EC99AFD25C48FCDB21035B534 /* Debug-production */, - C80ED3C24B1E90B77ACF895A9750D33E /* Debug-staging */, - 6B0EB887989564B862FB565F7B41FC21 /* Profile */, - 98D5D5607D664DEE4DFAD39B653C266D /* Profile-development */, - 5AE5F4EB71CA380694D0866C16A362A7 /* Profile-production */, - 9BBE958E23F624DFB77CD1CD0046C3DB /* Profile-staging */, - 40775B190E759EAB5D6EC090F1D03873 /* Release */, - 5A8262BEE465A42361AD40CD4EC0DFBA /* Release-development */, - 3ED5D570CE56DDFCB3A36F4C51CFE959 /* Release-production */, - 256879F173A7B7CF262593FEF11B90C4 /* Release-staging */, - D19FD939E4A8D2283403383090B6BA3C /* Stage-production */, + 9E5D4251EF716F046DBEBB020E89FA5D /* Debug */, + 23C6C2D6EAD594DE5920640A16B1AFC8 /* Debug-development */, + 25DEEF4F80B4523A13EFCA85FDF4F67D /* Debug-production */, + 247ADF3C2FE52F7B1DB3E3BD36C49960 /* Debug-staging */, + 051F262FD736D6C94092EBF93D546564 /* Profile */, + 9BF372CDE2AD32E01211D792AB55B13D /* Profile-development */, + 8D0ACBED55EAF16E0CD174077B7803F1 /* Profile-production */, + AA2EF0D4AE1F8A0B9751E81F54AEE585 /* Profile-staging */, + EDD7C47044B60D2A26EC3ED2C3607FA2 /* Release */, + 10022A0987104FEF12403319B18CAE4F /* Release-development */, + 2BDC869E9F77A94DF6A164E2DCE65A99 /* Release-production */, + 3A2B4C16095C011D921BBCB47146E2FA /* Release-staging */, + FDFDB9DA187B8C068AFAE91F394FD6E4 /* Stage-production */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 450AD186DC47E175EADC83925F547F01 /* Build configuration list for PBXNativeTarget "GoogleUtilitiesComponents" */ = { + 36938D7CC2A8FE60AA71416301BB85E5 /* Build configuration list for PBXNativeTarget "image_picker_ios-image_picker_ios_privacy" */ = { isa = XCConfigurationList; buildConfigurations = ( - 7A5D4F8DB91E1E42D4691F739D444853 /* Debug */, - 5FC9647AC3EF1B9D4D88DC4B1D75EC15 /* Debug-development */, - BB49BF2187BDDEE02FBC8017C89B299F /* Debug-production */, - 25B0A81034B1AF7567B5CA1DE4EACE15 /* Debug-staging */, - 1FD82312CFAC99B06A0344354E5BBEC0 /* Profile */, - 186C6D51E248CD3B23A2D260267D7B01 /* Profile-development */, - 62EE6EF1628DC289BE0B6F3B66109081 /* Profile-production */, - FCB526CB4AD5712B2B1BBA06FFED6EB4 /* Profile-staging */, - 67042D6B62D5409EFD4D6BFCDC763CFA /* Release */, - 870590030FAEBD570440EE6F84190149 /* Release-development */, - E12B22317290F3834733320E6B3E42CE /* Release-production */, - 21E47B8CB74A5896D75C92109E786F3B /* Release-staging */, - E3A6AD30113A9B66215E114FAAEA0E7D /* Stage-production */, + AD0DAE677FC4D9F51E623E855F4CDEAC /* Debug */, + 2EDDEEE4739AF8423C83A0C02DFE2187 /* Debug-development */, + 4DD5B009B296C036DC9C3DA1359E05A3 /* Debug-production */, + 50AC59753707E2C934D578F2DE6EDAD9 /* Debug-staging */, + 58BFADC757E72C9BBC50628273F68265 /* Profile */, + DF56675B2216B9ED8E67DAC4CD060960 /* Profile-development */, + 7018FFF2DEB53FFA19C51C61D71B1015 /* Profile-production */, + 1973FE89340E28A0A117F4958D4F9FEC /* Profile-staging */, + A0C12DF61D4AA3A2E4A4122A57A22594 /* Release */, + E84BA412C0F920FF3AEA2801889F379D /* Release-development */, + D76EAD89A1212C143FD14138244B14EA /* Release-production */, + D4D50AEC398941368186AF2A8F57D69D /* Release-staging */, + BB193D0F57AA5578369F0048FA064580 /* Stage-production */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + 3EDAC6FA1E42D30291D7A899F4689EF6 /* Build configuration list for PBXNativeTarget "url_launcher_ios-url_launcher_ios_privacy" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + FDB682273EFB1A3DC8AC98726170D349 /* Debug */, + 68F616EF871E4429C45077C8FA0DB401 /* Debug-development */, + CB37E450070A3AD176620F0F8EAFDAB6 /* Debug-production */, + AD11580953822B2B83D566C19CDA532C /* Debug-staging */, + 7E8435855B9FF9F372B9F93005BF4B58 /* Profile */, + CF61AE701CC160F4C90096D83908377D /* Profile-development */, + 3B50E0EE8D5CFFD240A8D7542F048BEC /* Profile-production */, + 22D984A88591AC433FCD7590A0CA9A7C /* Profile-staging */, + 3A0A94F02A83134197B54F98E16B7C75 /* Release */, + 66156FB3FC9A9EDE7426E8E2C071FDE3 /* Release-development */, + F82A2A4B40B4F54C0353F8FB5C8082E3 /* Release-production */, + AB7C2CE18AED0FF8F9A17FB68B8561A8 /* Release-staging */, + AE394D6FFE7CEEC59255203D8191E767 /* Stage-production */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + 3FBBBF024BD749445C652CDE12D51CE8 /* Build configuration list for PBXAggregateTarget "MLImage" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 6619A8B3B1C5595B07FC2656716E7FEE /* Debug */, + 67A4B65BE21391E5DA51CD581DAF850F /* Debug-development */, + 422FCBA4575B3D40ABC6306910D350E8 /* Debug-production */, + 929A760F7DC02E338C81D3A3955F6F39 /* Debug-staging */, + 8DA7D694A4071C0173D629E6947FA215 /* Profile */, + 871C994E6BB2A7610CC28B30E5983676 /* Profile-development */, + 13651C3CAEDC8012F48BAC752EEB1FB2 /* Profile-production */, + 1FAE11D758F55E84ED969D658CDBD45C /* Profile-staging */, + 370039F4850784F08F67DC2AC5148886 /* Release */, + C8E82BED95B4DEFCD4ACC55ABF1ED206 /* Release-development */, + D7667FD8432B9615C7DDD21198FAE9A7 /* Release-production */, + B7A30AD9F6ABF632D72734CCACB10BCD /* Release-staging */, + CFBBDD000FE0F98558A5FA672182702F /* Stage-production */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; @@ -41649,6 +41923,26 @@ defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; + 4F897FA15E1E0C8AE32D800620227BCD /* Build configuration list for PBXNativeTarget "GoogleToolboxForMac" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 77F8DF5186EF714AF6B2AB08E89536E6 /* Debug */, + 95383F84DD2EC9EE1342B824022FA9DA /* Debug-development */, + BC6DDD3117D51129F519EBA1F143335A /* Debug-production */, + 444C104619DDD4438C687CBC6FB4D973 /* Debug-staging */, + 8B4CB2A23D54F16321BF78E6F3FF7D04 /* Profile */, + A063ACC75573C5703A0F59B61F60632F /* Profile-development */, + 33BFEB08ED378B68817AA7C77B81FEBC /* Profile-production */, + CA9A875C711094F7D017AD3454A70799 /* Profile-staging */, + EC2162B1B4D0550CCB5E4BBF7CB3F245 /* Release */, + 6EE64043DDE75DFFA2F8260EE428195D /* Release-development */, + 724E46EB15F0F92849777E2072D9B657 /* Release-production */, + 70747A5042610A34067B5C854E695F56 /* Release-staging */, + 0378355EF959A8E179CD005A4F3D3AE1 /* Stage-production */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; 4F9E5747112638F4F54B36B42F46A736 /* Build configuration list for PBXNativeTarget "Pods-Runner" */ = { isa = XCConfigurationList; buildConfigurations = ( @@ -41709,42 +42003,42 @@ defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 565887956F0E4C63F36B01272A6DD0C5 /* Build configuration list for PBXNativeTarget "GoogleUtilities-GoogleUtilities_Privacy" */ = { + 5CA9E53020D2C2522E0ACDCBBF37EA03 /* Build configuration list for PBXNativeTarget "path_provider_foundation-path_provider_foundation_privacy" */ = { isa = XCConfigurationList; buildConfigurations = ( - 7C85A7A38C51D44111C2093B39ECE7BD /* Debug */, - C0E180EE02F3D13ACC654027EC35E089 /* Debug-development */, - 9CE90C00DD054CFD970AF5F0AEEA2343 /* Debug-production */, - 3BCE762A84F677BEB41AEF927109CAD3 /* Debug-staging */, - 7CDB118DEF4201CDD52D70A05ABBCB6F /* Profile */, - 9D4B786DE932BC47916A27AE6A162975 /* Profile-development */, - 948EC2580B74CDB1C4A14D4D71846AD9 /* Profile-production */, - C9793231A3C406D7FC43586541714139 /* Profile-staging */, - 28B8F43AB35933CC442AE0477418C704 /* Release */, - 358E0C9E7CB7F7061F14A68566D9D43B /* Release-development */, - D31E201300600F4065877E5D533289A0 /* Release-production */, - 298AFDDC69410EC347C15691AE838098 /* Release-staging */, - 6B61AF8512C6846BE597F2AF9AEBECA5 /* Stage-production */, + F193C162128DEDC2F337B9BE4F0F5637 /* Debug */, + 8E66BDB4C13A7E60823FE2888A88F419 /* Debug-development */, + 4127E841281A697F1BE9217A7E550090 /* Debug-production */, + 113684FF775DBF18AE962C85ABE37A00 /* Debug-staging */, + 9DF09AF59971268B28B493C63D26C6AD /* Profile */, + 155B04C6678AC75C2517ADA224F9554B /* Profile-development */, + 34E199C974EF4E0B64B81B66863C50F0 /* Profile-production */, + 580116181099DE2CE2E8B9E5F791C586 /* Profile-staging */, + AFA71CFA8F162E5A3455630310AF1D7F /* Release */, + 9A44487591710D37A6351DB938D0C872 /* Release-development */, + 724867446E6CCE2D77BAC9B514D1A9C0 /* Release-production */, + 4F7E11DEA496B34A7DBC1A5B6D7A6DCC /* Release-staging */, + 3C688EDC95019570814A6A39B78543BA /* Stage-production */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 5F9FF8A89972A34ED0ED3A744F7A14D1 /* Build configuration list for PBXNativeTarget "connectivity_plus-connectivity_plus_privacy" */ = { + 5E3843E27B09CCDE662E4ACAFA824713 /* Build configuration list for PBXAggregateTarget "MLKitBarcodeScanning" */ = { isa = XCConfigurationList; buildConfigurations = ( - 23233D27476E9E806EB75AC934A53184 /* Debug */, - F942BC976F39503C8847240D9425CC6E /* Debug-development */, - 4E157294F1C39B59F63484CE03B27E20 /* Debug-production */, - 2E1420EA0B919DA325207AFFE8185D4C /* Debug-staging */, - E0B3BFC22178857C519C70B045A09B55 /* Profile */, - CC1DDCA35C4EC76C326E51DACC399540 /* Profile-development */, - 1242D629407DCFB7146FD99180AE05DF /* Profile-production */, - 106F4AE2AACD8C0CBED64864C5430A2B /* Profile-staging */, - 84F53969BFABA2BE020C3BFD5149C176 /* Release */, - 3431F231F93A293206D6AE4A80981941 /* Release-development */, - AC0C84EF52689499C059BC58E93DAB47 /* Release-production */, - 3D6A1C2319DE0AA62AD5B41DDF68D219 /* Release-staging */, - 305044CAD5267EF1D12D04700E2419CA /* Stage-production */, + 3122BA62BB28CD97A6466BA649C670CD /* Debug */, + FD94C06D9B6B8F2AB010837E81FA4A4F /* Debug-development */, + 2EADAF7574C7CA65E23934C2D6EE3405 /* Debug-production */, + E40D3F8A0786A46DD090C72DFE90CB3C /* Debug-staging */, + 019FCB08F7BE119520AB52A6C717B734 /* Profile */, + F4226235026669B694D27F5F446E91FD /* Profile-development */, + 2E5E8E02E6A0CB8A600C728B5599BF4A /* Profile-production */, + 923FE9EF422798E6A5C881FE2CA50470 /* Profile-staging */, + BED14A2E1D8335CD7C814C06AEB8B80D /* Release */, + B96B7135160B89411E9D982E91543E2E /* Release-development */, + BB4940E9B4FDDD94A5084953AF4960B6 /* Release-production */, + 635DE6C50E418EC6D33AECAED7B01206 /* Release-staging */, + 404187D9A61C0EA2FC4333229B3CD2C7 /* Stage-production */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; @@ -41789,6 +42083,26 @@ defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; + 6D9175178100A89829A1288035D56C4C /* Build configuration list for PBXNativeTarget "GoogleDataTransport-GoogleDataTransport_Privacy" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 8215632960693D6E09E92DB40313E45B /* Debug */, + B671BFCEF0884BE70A6F63F4E238A9BD /* Debug-development */, + CD9F5BC6131A7434161E01CCD89A22C8 /* Debug-production */, + 55733DD6501FBD6D721707606C1FBFF6 /* Debug-staging */, + 841BD63375C2D724DC41E52D7B3CC553 /* Profile */, + EA32BF4CC18754211EB44D55A1315D56 /* Profile-development */, + 67812178A85A72D8D3F30668FE5AE91E /* Profile-production */, + 690ABA6BA516F0FC1E57A17886E247D8 /* Profile-staging */, + 2F5FAD4FE889BB7BC059706F735E5B35 /* Release */, + 7A1D4F1BBEC2D96E0EE26BA30A12F0EC /* Release-development */, + 108525416281A07AD9890260D0FA5B4F /* Release-production */, + F3F17799DC5AA425FFBC8FD18E717DAE /* Release-staging */, + 4036C875363B0F7776DB2ABC2C4598FC /* Stage-production */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; 71331D4733EFE6862393992DB761DD3B /* Build configuration list for PBXNativeTarget "permission_handler_apple" */ = { isa = XCConfigurationList; buildConfigurations = ( @@ -41809,6 +42123,26 @@ defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; + 754427976E166B97A1CDC4FF04029A07 /* Build configuration list for PBXNativeTarget "GoogleUtilities-GoogleUtilities_Privacy" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 93B381698C31EC8504253F1D4162D9E2 /* Debug */, + 6F9F1E590677D6E4593FC218848581E9 /* Debug-development */, + C32BDC12AEC4BEFCFBF1207E9982ECC0 /* Debug-production */, + 9AF5FE0170BB2731C58409D35D34E524 /* Debug-staging */, + 32DDA33D5D6AA6946AA25E9A59DF7E61 /* Profile */, + 35AD1C73C3509FEB0E52E8E8C24E4846 /* Profile-development */, + A74CD304633EE2024116276B09CAC315 /* Profile-production */, + 5A34B6F6A95913059E12AA45E08DA52E /* Profile-staging */, + 978F78CED7501B5D0A58BCFE9A8E6BB0 /* Release */, + 465641D8AA3304AEEED2016A279EFCE9 /* Release-development */, + 3FBCB9A3DD628E8683EAAB86054223F1 /* Release-production */, + 7562A44F6CE8FEB50E25A55C09B2183A /* Release-staging */, + 634B7BB5041825B9B833A392286BB30F /* Stage-production */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; 763549AE36CB5D858BECB107F829DAA8 /* Build configuration list for PBXNativeTarget "GTMSessionFetcher" */ = { isa = XCConfigurationList; buildConfigurations = ( @@ -41829,82 +42163,62 @@ defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 7C686A2BA0D91C9A33A8F902FE72D582 /* Build configuration list for PBXNativeTarget "GoogleDataTransport-GoogleDataTransport_Privacy" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - 9A88BCF370AE6FDD348913F8C5F1D5A3 /* Debug */, - 0A498062252B30A3DDBC216B9BB806B8 /* Debug-development */, - A3B350D4FFA48922A3C52329F6FD8D19 /* Debug-production */, - 235FFBAE9224BDCBFC9D0818C8AF5838 /* Debug-staging */, - DEBCA0F7D334D1F00992EDFBDD11D968 /* Profile */, - 272143EC5CF2FA33E005C07B060A02A7 /* Profile-development */, - 893DABE0A773128D871ECCC96C24DDA7 /* Profile-production */, - 50977F56B231E945498FBF4618E058DB /* Profile-staging */, - 9B9C3A8BD4E337711ADC64162C27CC6E /* Release */, - C29F32244CF0C619E2B7911D6145AD36 /* Release-development */, - A223231BCBE37ADA5F9BFAAF98E3D63F /* Release-production */, - E7A61D89B21CC9F463B5B463D237DF54 /* Release-staging */, - 9557E81093B64D4C14EB5C23B87A0E9C /* Stage-production */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; - }; - 833F2D4CEA183F1C34D45105057F1353 /* Build configuration list for PBXNativeTarget "GoogleToolboxForMac" */ = { + 8194C4407C54263B25C3262E793DFDC6 /* Build configuration list for PBXNativeTarget "PromisesObjC-FBLPromises_Privacy" */ = { isa = XCConfigurationList; buildConfigurations = ( - A1C02AADDE478D0AC5CDB750AB02A315 /* Debug */, - 0A4AC1D4950C5A898287BB72B583CBBF /* Debug-development */, - 30BF650AD1A92983D1EF999F0107D40A /* Debug-production */, - 14DA1B0242B5D4AB9C34F6D15530E198 /* Debug-staging */, - AB6CB41F0A03541AAB59065634B90DC0 /* Profile */, - E1B084AE68FF9E17A398CEA3F35DAF35 /* Profile-development */, - A2A63FECBFC457DE7C15E1A8705A2455 /* Profile-production */, - 4C4BA7A9BC8A5F8A190EFB1FE7EAEFFC /* Profile-staging */, - 53CFF93DF3C311C03EFFFAD3E35C6BB6 /* Release */, - 65835392429465082F856B91139619C8 /* Release-development */, - 0881900B04C75430F2B88A07486E7161 /* Release-production */, - FA33BF06174B76B7F3A1E3EE54313716 /* Release-staging */, - 4A8CE999D297B11054B934D2D746E1BE /* Stage-production */, + 0AA40B3B7A8B571344203D83265AED84 /* Debug */, + 91BD9723FE4D35ED9E721F1D924F3110 /* Debug-development */, + 0B5BD8BC593391868F48F1242EF58B93 /* Debug-production */, + 57D686C339E032C16F245B9B2EC52420 /* Debug-staging */, + 641A310395B4B8EE76294918512A5DE7 /* Profile */, + E8F2008BA88DD5005EDC57ABFEE2DEDA /* Profile-development */, + 1F7E15445A0CDB80C26051C3BFED64F9 /* Profile-production */, + 9075781B6E57BA45EB0723A18FECC184 /* Profile-staging */, + FF5927110B5964FE37A8E6D95769C232 /* Release */, + BBCDACDEBC2F09D7BF63DCA7F3C1C68A /* Release-development */, + 435B8A3EED15CF17F3B342E2C2C291D1 /* Release-production */, + 4A139F372E03FC2402D869E2F0578AF6 /* Release-staging */, + 548DC1B2E0B685599E1B404CE8AB001D /* Stage-production */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 8398AC9DBBFD05129D6B6D8CCE69ED21 /* Build configuration list for PBXNativeTarget "Sentry-Sentry" */ = { + 826DE497086A3D3DBF68C70BA56941CC /* Build configuration list for PBXNativeTarget "permission_handler_apple-permission_handler_apple_privacy" */ = { isa = XCConfigurationList; buildConfigurations = ( - F5BE9C7D39CA7EDB86F90C73DE3B0B70 /* Debug */, - D26A586816105CD3A85B6E5A5A851D95 /* Debug-development */, - 148787A92ECED4DFEF31D16155DE9FAA /* Debug-production */, - 96121734EE08D2750658D5DA633480D7 /* Debug-staging */, - 9148AE786D2C24E17B28889197178831 /* Profile */, - F9E37CE026668C3FA79F2C3A5576EF18 /* Profile-development */, - D3F9FD4A6AE992CE30FDE734BC00F0BB /* Profile-production */, - 5A698A0B574A011BBECBC30BE0D9DAC0 /* Profile-staging */, - 63914478EC93ED86177B8482D647A20F /* Release */, - E337621D1352526D3AEC03A05AF9C49E /* Release-development */, - 7F8BAC5C25360BF7D095971EF8D015DA /* Release-production */, - FD08587B53919125264B09EAA33657F1 /* Release-staging */, - 51C2F977B1DE88F2452D538F31AA301E /* Stage-production */, + EC6F1198CADDCFA15CF5A2D9DA30E595 /* Debug */, + BAEF0A40828EAE5C51A0AA00B1C77573 /* Debug-development */, + 6B6E7FB4D8F04C6ED2D898EF6AFE4117 /* Debug-production */, + E050424C3778688CC8E2A04C91710467 /* Debug-staging */, + 2099FFF7BF87DAAE314DD427058926EA /* Profile */, + 17A17DC9363BC983E46DDE819B45C648 /* Profile-development */, + 3FA026DF696A7C7624D7D7E4B951270F /* Profile-production */, + 51FEB4E88738826187104CE505219514 /* Profile-staging */, + 08D9E7D768AD52B7F0903712D33E2A58 /* Release */, + 0F69FCF876DC552D17A13C3D16F45C7F /* Release-development */, + F80679A36B88A682BE9149A01506B17B /* Release-production */, + 9B333A373FE4624C5CE5B4885DA4C375 /* Release-staging */, + CD7C047998C3DC60EB79348148E03E24 /* Stage-production */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 8419826F55DCF1016B39C34048DF8177 /* Build configuration list for PBXAggregateTarget "MLKitBarcodeScanning" */ = { + 8B1645C1A73D35D7B25080DC0566A3D4 /* Build configuration list for PBXNativeTarget "GoogleUtilitiesComponents" */ = { isa = XCConfigurationList; buildConfigurations = ( - E067863F9C372A93E6182A66A1515F9C /* Debug */, - 6C74A509B7A4AF56716799551D6AA2FC /* Debug-development */, - B82805A753733B6EEC69B5238A5D608F /* Debug-production */, - 0F9810AC1BCF745FD29DC29D38BFF88C /* Debug-staging */, - CF83EB32898FC45121E1B3BE6058B46D /* Profile */, - 79C9C243CFA1F883ADFA7415E26E2D8C /* Profile-development */, - 14F89D222CDDD26FFA83FF6A5927B0E5 /* Profile-production */, - 4F2517B36E9855CB5A6622435C8DC2E2 /* Profile-staging */, - D8A62423DD0A8576E1B4008FE6D1362C /* Release */, - 61634A20839EF1D546E624173B14BFA9 /* Release-development */, - BD682E18F3E39E87C8BD892B66B8B98F /* Release-production */, - AEDC76B3F1B8E264F7EE6023C50C3AC6 /* Release-staging */, - 1FA294E1633FFFEC60FA0DEE822CC933 /* Stage-production */, + A3AC58E9516704124B201B75E096C6DC /* Debug */, + C139035E5FBF3386669C3F79EEA15C4A /* Debug-development */, + D0072D167CE2013C52962CBC62442CE6 /* Debug-production */, + 5B9C2E65711830811176B56F8882242E /* Debug-staging */, + D2CA6F2197F9FF4DE9E21C80B82B6188 /* Profile */, + BD721FE1B17DC0E5DE8C643175F9ADD2 /* Profile-development */, + B38BA9496F0858BBF0D51E599A3264D7 /* Profile-production */, + 17570987CEAD6A3A22C6D074281D4047 /* Profile-staging */, + C20A0AEBC6FEFB32D98AB4FFBE36D0B2 /* Release */, + 72955F07BC160EA54DE0738EB08127C9 /* Release-development */, + D84DB92DBD6B0D8581307EB8CACF1822 /* Release-production */, + 033F6F3D9F7CF46BF49BBC70D96F870A /* Release-staging */, + 24346F6BA658BA69B507405137DAD7FA /* Stage-production */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; @@ -41949,22 +42263,42 @@ defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 95AD165CF1426BAE3BBCE2D654F9B07B /* Build configuration list for PBXNativeTarget "sqflite-sqflite_darwin_privacy" */ = { + 9329A4849A37F428C5AD6D4A8D05274D /* Build configuration list for PBXAggregateTarget "MLKitCommon" */ = { isa = XCConfigurationList; buildConfigurations = ( - 0DA1AB8B0B4BE8200F6FBF41FAEABEAC /* Debug */, - 90EFEF1F2F3B40390A66E1F904D0F6B6 /* Debug-development */, - 72A9D963425AD2AFA8CB49028C6EB8FE /* Debug-production */, - 337CB475A598962B1561C2367A21B0C7 /* Debug-staging */, - 45C2A85EAA7185D565D61A3D11BE12BE /* Profile */, - 4E6B464F6BE16B6DB3CECB3468D12529 /* Profile-development */, - 3712825E964344068D9A8A489DABA81A /* Profile-production */, - D6A1848C5B2C2BF58A5A7CD5769AA540 /* Profile-staging */, - 02BE811F14989950207C7309A97A7078 /* Release */, - 284F95CEA5655C316FB4AA15AD01D896 /* Release-development */, - 43BBEB9C99020140B7F51384783B407A /* Release-production */, - 3D9B116D57E61B9DA777A9F86B434DEB /* Release-staging */, - A0D602DFA7989901FE4283D88ACBFDCB /* Stage-production */, + F8F6D3560717D6A4D6E31B75FB892D38 /* Debug */, + 5031815ED4158D0C17C32927A01A5BC7 /* Debug-development */, + 9D8E5F7F8A7E27DF57BF43F17B28F3E3 /* Debug-production */, + E9BA06CEAF6AACA2B856A7FE631ED380 /* Debug-staging */, + 452439B29D884CEA8633D5A7A672B139 /* Profile */, + 870B6DA67B44CA17E67010826AAAE170 /* Profile-development */, + 3F9B18BEDE0DEF344A940A39C542FA55 /* Profile-production */, + 3C205441B5358FEE08DB384EF3B121DC /* Profile-staging */, + 4C59336A5275B639F86B993A9D84F7E8 /* Release */, + F0FECE335AD63B25717CA1E75BA2E4C8 /* Release-development */, + C192635B3D90109C5FB47BE09635C780 /* Release-production */, + 1730FCD4CB40460D77EE05C871AD578F /* Release-staging */, + C532247B27683DE004D14501D229BFC9 /* Stage-production */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + 9BAB62618D4A00E1C4F017991C0CF38E /* Build configuration list for PBXNativeTarget "nanopb-nanopb_Privacy" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 4DF620166E492653F77239BFF2512A09 /* Debug */, + BEB93406A613CD43A8489738E5422CC8 /* Debug-development */, + 87113543EB9EF2E6052216CED71FB4DD /* Debug-production */, + 80B2E6EC5585653E29873D50D78C5C7E /* Debug-staging */, + C682CEBADE475550B57335D25712BC4F /* Profile */, + 599E9EB58071BAA922FCCFD4C050AA8A /* Profile-development */, + EF07EF5BFF322CC345DE31150A7444AC /* Profile-production */, + 57912D1AD05CBFBAEA988894A68FCE02 /* Profile-staging */, + 0624D84A7B11C81CD73B32795B597D74 /* Release */, + 9CAC610AA67C18ACA2D0E2E847FFFDBC /* Release-development */, + 903EF22C825822D7261B665A0EA6F0D6 /* Release-production */, + 6E1D8BF211F39C863C02BB1B2AA5FAB8 /* Release-staging */, + 8075ED2F1FB354A54D7B31911D68B00F /* Stage-production */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; @@ -42009,46 +42343,6 @@ defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - AE28815A0751D98A6554A013CAE2F100 /* Build configuration list for PBXAggregateTarget "MLImage" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - A31FF92E5C7C5E8BAAF06CB0D7E263CD /* Debug */, - 7AE438E9FCF6D8D6626A71FCB3BA3C8E /* Debug-development */, - A4C1818DFFF5E7E4EF4639D47B4202BC /* Debug-production */, - 45CAA8C5D96C4781F1B71B1D1BFAF627 /* Debug-staging */, - C35A7E80DE58E9B1AFE4CBA6ECA1B256 /* Profile */, - 3A78D7A21ECBB8B2CAD07D3CD75D4328 /* Profile-development */, - B330677319030E19188EA8D804A1520F /* Profile-production */, - DB74CC7984D6EB163F4146B0AA278979 /* Profile-staging */, - C8751EC3D623E6F36D671C705537ABD6 /* Release */, - 367014A3B10F9DCC4ABDDCD74C940649 /* Release-development */, - 7B40EE074727F49355AD896DEA737C84 /* Release-production */, - C39C68CA6343624E1B6537F22AC832F5 /* Release-staging */, - 57B3F134534732ABDFC121B4FFD34294 /* Stage-production */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; - }; - AE6E65BF7B705E5D0006AD2DFD25396A /* Build configuration list for PBXNativeTarget "permission_handler_apple-permission_handler_apple_privacy" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - C40EC15CB8C77D549CBEB97982A665E1 /* Debug */, - 2BACDB553E8C35CCEFDC5A5F4303846F /* Debug-development */, - 525CCDF0FF934BFD89B4E1309130192C /* Debug-production */, - 101FFAC9A985191DCC5B27FF1880DD6D /* Debug-staging */, - 08800FC3E503DCB6CA2BD12F15E8D27F /* Profile */, - 4706A0F6AF42F14F23337906DAF6B868 /* Profile-development */, - 67C3D822450971A9FE96C3CC6AF635D3 /* Profile-production */, - 7609B536ADB3EB3CE74C49EECF4DB271 /* Profile-staging */, - DCD0E8FB9229F94542BC6F9C2E721EC3 /* Release */, - 1ED6F480FFDD7BD45783ED5BD2C7FC87 /* Release-development */, - 74B3BFED59462D9A1273A5867AAF3CD5 /* Release-production */, - 6ECC679DAD4798E9A2BAD686B7A0C622 /* Release-staging */, - 658F1930B36894F2BD8454C6DFABE0BF /* Stage-production */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; - }; B04204200A29E782C548DA5AA4539076 /* Build configuration list for PBXAggregateTarget "Flutter" */ = { isa = XCConfigurationList; buildConfigurations = ( @@ -42069,6 +42363,26 @@ defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; + B125941ADFC4528BBAEF1BD6671E1553 /* Build configuration list for PBXNativeTarget "Sentry-Sentry" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + D03E3CA0B399C80FA52712EBBEB0F0CD /* Debug */, + 1A89B714EEDF632089044DD5583BF479 /* Debug-development */, + 4B53AA0147BE9418D5CD08059C7D778D /* Debug-production */, + 1CF02C4FB3C14BDE94D8E91D1B9DE2DF /* Debug-staging */, + C8393D86E4740272AA5038DE1B1BBC96 /* Profile */, + FF0B3B1291C1D7580FE8306389AFBFA5 /* Profile-development */, + E1DC33F229C9105EF284DFB3713A7582 /* Profile-production */, + 195F3CF3973739EE679D36BD03F6995F /* Profile-staging */, + 7EB5497E576C1AA9DF1C2AB26EAABE6B /* Release */, + AA2BFA6385E1C102CEA67D13B69C85DE /* Release-development */, + 6C0F44326C63D858928BB488E82263B1 /* Release-production */, + 57571C0D0B583DD89633EBB44064CAEA /* Release-staging */, + AB1CD35D6FE93697060724017669B2B7 /* Stage-production */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; B40829B1DB20710036487084B6291220 /* Build configuration list for PBXNativeTarget "flutter_secure_storage" */ = { isa = XCConfigurationList; buildConfigurations = ( @@ -42089,22 +42403,22 @@ defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - B5FD906CB626E9C5988E51E5C12828FE /* Build configuration list for PBXNativeTarget "url_launcher_ios-url_launcher_ios_privacy" */ = { + BA29C138DB893AB30052EC77FF10647A /* Build configuration list for PBXNativeTarget "flutter_native_splash-flutter_native_splash_privacy" */ = { isa = XCConfigurationList; buildConfigurations = ( - 6F2CA358C98D60F3C14473075749FC39 /* Debug */, - 1F5D9CEDEC5664F5A3D170A910C87D45 /* Debug-development */, - 27DA0DF7F2414E733323959514ED71AA /* Debug-production */, - 83DB92966EB8CED6F470544E9D10A4C6 /* Debug-staging */, - AB5268E3EFF65D532998918EBA9ABDD5 /* Profile */, - A648B0958C0D8D71A4967F87D418950D /* Profile-development */, - 1BD2A848B883EC9B91298CA09A5A89CF /* Profile-production */, - 13FDC8E6DAF7A8352FDAA7ACE0280085 /* Profile-staging */, - 2AC6880FF4CE1A4546D7146909BA6858 /* Release */, - E3859CAEE5388EE79B258BF47A11A254 /* Release-development */, - 144122CE9B89EE4A3C9718F1B62A275A /* Release-production */, - 705FBBC7B739C40183A4642372610F5B /* Release-staging */, - 90DE20FB82DD1E10F215BD2E43C7EFD8 /* Stage-production */, + B8A089A0738271F25CE641F0426A30FA /* Debug */, + 8FB846F206FEAC12746BAC27AD68E365 /* Debug-development */, + 1CB50D8E2EBFC1C7B731C318232073CD /* Debug-production */, + AED994EE37D7A75270AE0BC651C6072F /* Debug-staging */, + 0BF1D9D79261948ED94AC55D0B5D17EF /* Profile */, + FDB725F11877C7C1356F6BF766C60DCA /* Profile-development */, + 36DC65C983FA76D8412C19902E1A75FD /* Profile-production */, + ACED46665B604F6D148580AF8148D05D /* Profile-staging */, + B56CE4B180ADFC29BCEC44A50656D5B5 /* Release */, + 1DD72DCCCD674A19758111361207B7FF /* Release-development */, + 30EFAA8C9E6974E7C44F1EA019562158 /* Release-production */, + CC35BE3FBFB4541780E3C976FD3DD692 /* Release-staging */, + 27805E63102D0622C3FCA26E345E8E55 /* Stage-production */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; @@ -42129,22 +42443,22 @@ defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - CAAF5FF5CD7373E2A7C5C9B236C3049E /* Build configuration list for PBXNativeTarget "nanopb" */ = { + CACFA22A51975851F2AAF593B973BDAF /* Build configuration list for PBXNativeTarget "sqflite-sqflite_darwin_privacy" */ = { isa = XCConfigurationList; buildConfigurations = ( - 50E42CD3830B7D2B5CFD37B0E4039956 /* Debug */, - 126E2FCDE5D94A46D447A20BA2645AF5 /* Debug-development */, - 07376C3E987E518721E007B79049C02D /* Debug-production */, - CA0B14157B0D4031944B65D0321E98FB /* Debug-staging */, - 1F562EA4FF6C1070D848A38F2CB4538B /* Profile */, - D4D95F09FD767BC6FFA90E428B350921 /* Profile-development */, - 3177C75982E0FB421BCB4C16829029BF /* Profile-production */, - 18090C2FC04390932EFF1738E28DD7F6 /* Profile-staging */, - A80CDD3959D7B02037466C02A558AC32 /* Release */, - DFCA5DAED721A2A3669FAEAEC27784A8 /* Release-development */, - BD4ACC4C2473655A07F1DF78F9CF454F /* Release-production */, - FADDE2CA556D164BC31D9467889E836C /* Release-staging */, - 9BAF62FBBB8C43EF16A4BEDCA78B9195 /* Stage-production */, + 2AA2283484A43332312AEFFFFA5113C9 /* Debug */, + 4EF548CB2B84260D5A9E943739B2A4EC /* Debug-development */, + 9409CD1E2C096081021C5F69683F1910 /* Debug-production */, + C36624E01B8D301316B80B6929502786 /* Debug-staging */, + 3E873F100D81EACFD035BDFC72AD8518 /* Profile */, + 671A743F8827A9322B9C363BD353DB19 /* Profile-development */, + 6579063DEF76A3944EA4433C0F2FA251 /* Profile-production */, + BD0564253B0E53986E77618B42711864 /* Profile-staging */, + A327A02781955647F14D55802BE13392 /* Release */, + E810EE1825EB166A31E38937D967376E /* Release-development */, + 4C3C8CFEC80E6CF6DA36602ECC6F6784 /* Release-production */, + 92B918C466E468937CC0313B38CA3B11 /* Release-staging */, + F7818B1DDDC7AD3407FD3CA95E84A565 /* Stage-production */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; @@ -42169,22 +42483,42 @@ defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - CDB5A4CA5BB4AC4DBCFF526483339259 /* Build configuration list for PBXAggregateTarget "MLKitCommon" */ = { + CBB602D68E3BEFCCA66D084C7661393D /* Build configuration list for PBXNativeTarget "share_plus-share_plus_privacy" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + B9346F84176874C189C5E061C9FD0DBA /* Debug */, + 5DEDFB0A5703524DE08DC4A1FD137021 /* Debug-development */, + 109DBFBF935DEF93BF5613760BCE1D01 /* Debug-production */, + 85E9334176240B24CE52A3A2933D32CC /* Debug-staging */, + 1FC8D2FDC018CF7FE48B66E818992B4C /* Profile */, + 26E636A7D471BD12F37F4D8BAC8FD220 /* Profile-development */, + 81D0633C0A80BAB8B60EA48DC6FD7E81 /* Profile-production */, + E7817CF23E206C946981EE6E5A44BA96 /* Profile-staging */, + 720130AE89D90749AFE1FD7CCED8BEFB /* Release */, + 079A15D02A2EA38096D6B4C9FFB0C72E /* Release-development */, + B79A29292296F9943A574B930234E879 /* Release-production */, + 68BBEEBF100A4CBC0D077C145E445AA1 /* Release-staging */, + 93884099078EB1AA43E0452ADA5CC9E6 /* Stage-production */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + CDB13BC757789836C7E209AF7F178682 /* Build configuration list for PBXNativeTarget "flutter_secure_storage-flutter_secure_storage" */ = { isa = XCConfigurationList; buildConfigurations = ( - 937C9EC51A12D4908947DBA027AEC0D4 /* Debug */, - 2DDF1D234133102CD3629E64BE773149 /* Debug-development */, - 27047D9F28F3148459E4FC9F9C2779F0 /* Debug-production */, - 435B205142306F96687EB390794D0386 /* Debug-staging */, - 8ACC1CC23AE8CEDE84FBA03A3D9B0BB4 /* Profile */, - B2CC7BDE75695DBE3DC0A93F1F067EDB /* Profile-development */, - C3F957505F4EC723FEE21A2CCD9EBBAE /* Profile-production */, - FA4C936CDCBAED3371FE01509FFFB936 /* Profile-staging */, - A5D29CE9E8AFBB300D527C2AB6566492 /* Release */, - 006BA985453017D067960C40B5079071 /* Release-development */, - 0D7D584C30071F47DCE65DA058C2E5D0 /* Release-production */, - FA690896FEF7AFB49F8D4C0134B167CE /* Release-staging */, - 001DBFE31A9C1D27AA7E616878853836 /* Stage-production */, + 2B1F267FC91DFFD841A1974CB66A28C6 /* Debug */, + 86725CFB057FEB4FAB6D0D34AEFEA2E0 /* Debug-development */, + 994EDEA33D0F661373B5EFB4074022F2 /* Debug-production */, + 5DE3C236225A24765D386DA6CB0B4217 /* Debug-staging */, + 6296DF11A4F54788F944CDC5B73F0823 /* Profile */, + 228475031C3B8557EB7EB35AC3B6B549 /* Profile-development */, + EF1268B96DBEC5A32A578CC4172CB74E /* Profile-production */, + 4F75994FD39C2270ED059268A20F2641 /* Profile-staging */, + 14274404609446E996E9A6B3E1260D01 /* Release */, + BDAC06393A3D550A51070033D55EA7D2 /* Release-development */, + F250DE6C5FA086F388520E33CB4275AE /* Release-production */, + FD0BC4A95DF808BF37D21788B18A0214 /* Release-staging */, + EF5A08D6947ED70CC945059235494249 /* Stage-production */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; @@ -42229,82 +42563,42 @@ defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - E2561F01D1D5BFDB0BEE543038C3FBB9 /* Build configuration list for PBXNativeTarget "PromisesObjC-FBLPromises_Privacy" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - 760E96AD9570E27C693EC5817B8D2545 /* Debug */, - DB773FB7A5A7397EEEC5FA9C46398BE4 /* Debug-development */, - 5D809536E47A92311B9BC24767162E81 /* Debug-production */, - 1E45DCD2F757C78ACAA761D3DBA4275B /* Debug-staging */, - ED4EC5C4D8C4F3566257445A92AB8661 /* Profile */, - 87454F2945F998D400D7941EA8DB8DF8 /* Profile-development */, - 5B36F91D02B9405C404486AB197FDE14 /* Profile-production */, - 8698E405E41AA1755C6D3BF9A93DBBFA /* Profile-staging */, - 75B07FD200AC91F4A62143BAA7F4B154 /* Release */, - CC3497768605889EC591B64E89A91E84 /* Release-development */, - 764F8DB7A6E512A70F3CE1CC68AF8541 /* Release-production */, - D2AA9E097A0CC187FEA2EEFC33B31842 /* Release-staging */, - 987758A72AD54BA3A61F87C1C78D1F7A /* Stage-production */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; - }; - E281896E11068FC630E99C234B809262 /* Build configuration list for PBXNativeTarget "path_provider_foundation-path_provider_foundation_privacy" */ = { + E3AE0B0B9F04A74D8498D40769FA3F71 /* Build configuration list for PBXNativeTarget "connectivity_plus-connectivity_plus_privacy" */ = { isa = XCConfigurationList; buildConfigurations = ( - 1750CCCCE37A777806615E39F3D4EAF1 /* Debug */, - 39B6A398DA6FC7759F66343E86BBBB50 /* Debug-development */, - 21CC8F5157878094457058F690F175D3 /* Debug-production */, - 45F261C1F3C806EAFE30E636B9591A12 /* Debug-staging */, - 16E60560AF31BC7189893999F1B6CC01 /* Profile */, - B8E6120A24B49DDD81A8689051E59CCB /* Profile-development */, - FCF33689B18F9C87377D9E0B1B9BACEF /* Profile-production */, - 2941003B4C11D7188F28406E599F898C /* Profile-staging */, - 165338F4543F50B6AF507338F0D089A0 /* Release */, - 028F9A81D2A6074D18C4565692D820AF /* Release-development */, - D2072201921FFC31AE8A5437AE5B1110 /* Release-production */, - 29AA073755258D7252DF87E3391BAC4A /* Release-staging */, - BBC48DCBA6AD77201BD3147AD990848E /* Stage-production */, + 7592596DAED13E2A9CDFFE8A0B7BE3BC /* Debug */, + 2C0F95AEFDC370BA57847E2F88C9CD45 /* Debug-development */, + E54EEC8D115B4D04D8D85CF7A68A2E7E /* Debug-production */, + 0FE343C847EEAFC80011E3F879E1EE1D /* Debug-staging */, + B8F5B2FFD13C12A2B2DE31C5AF7B5233 /* Profile */, + 62E2DFCB54B99A3D35436CF047D5CF91 /* Profile-development */, + B6F0E92313CC24BDDC94F0A53AAA27BA /* Profile-production */, + 4BFB3A0892D2675FDC8B0082F9B25690 /* Profile-staging */, + 99BBCD6047BD85B53D053F3B3A4E9DC7 /* Release */, + 130867E30F75A79787A6279E9C85EDEF /* Release-development */, + E8F388B89CD61E59C78C8C9DD3A27D7D /* Release-production */, + 69AEAD150BBC3FDE96B4FEC85E942EFD /* Release-staging */, + EE811C685AD0074FAFD8CB7FB007005E /* Stage-production */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - E3186247605F49CCBC7804B0EFE3A3AC /* Build configuration list for PBXNativeTarget "flutter_email_sender-flutter_email_sender" */ = { + E4E058A62005E013DE9DADB16A30FD1A /* Build configuration list for PBXNativeTarget "GoogleUtilities" */ = { isa = XCConfigurationList; buildConfigurations = ( - C6DB10205DCC8EF7D17ABA2B9BA14671 /* Debug */, - C8319078D429684275915EFC890DC68C /* Debug-development */, - 2DD14EDB37296674B88793904967E639 /* Debug-production */, - 329E62BDE362A407BCB446EE06CC9067 /* Debug-staging */, - 7E74CEE6E006FA2EE523C6BC8192CD8D /* Profile */, - 2A7ED52152E74E71DF4168E06D1F427D /* Profile-development */, - FD37078CAA0C6DD41986191CB4F54337 /* Profile-production */, - 8D10403E50F57307886827A8F03A0FF2 /* Profile-staging */, - BC3731ED60C5066D2E78E8ABC74FEF41 /* Release */, - B86F34D5B0ABB740999641034BFBF1C7 /* Release-development */, - 48671A1E338571E42EF0EB912FC42457 /* Release-production */, - FDCD75A1B22ACA8930647079E980C44A /* Release-staging */, - 2D2E58CF5C8F7E4DA633CF8C9564295A /* Stage-production */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; - }; - E57C7C8F402E4A38C26D261950FDE0E8 /* Build configuration list for PBXNativeTarget "flutter_native_splash-flutter_native_splash_privacy" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - 4090F8676816D3E918390B1A163C1224 /* Debug */, - B346E839C5B1D563D845AF0C9E003AA9 /* Debug-development */, - 0ED744FBB398559600F481993C56408B /* Debug-production */, - 6E57FDBE5DD8768AA24ECC8FF91F24AD /* Debug-staging */, - 19B55B3EB60B8A758C2021CAD7AA3F52 /* Profile */, - 768A644CF78196E3CCD3EDA101F9F5E2 /* Profile-development */, - FB5ECCC48026D3B5EC0F6662CA8EDD0F /* Profile-production */, - 6F7103AD5B0E47C526CEA1D6284E3977 /* Profile-staging */, - 1F04039369FF068771704502449DF434 /* Release */, - 506529FEA0BFC0C9D4E6967BF9C2A6DD /* Release-development */, - 49CBBFEA994311BE1AA12EEE3B1D7A9D /* Release-production */, - DEB19DEF6E0FB20705D510AAA207C398 /* Release-staging */, - CFEE2892CFA04A9152B22FF589AC513C /* Stage-production */, + 0851F78B0B82B221D7183DCA21BBAAF2 /* Debug */, + CDD1B25436069146989E94FCE7114B9B /* Debug-development */, + 0404E4CAB7CB99A989550C93DFC31BE7 /* Debug-production */, + 60C23DE51502DEBEB605E6B877F762C3 /* Debug-staging */, + A6F28EECD265B1F79C2AB8CFB6879C9F /* Profile */, + 448C9577F781000E61A9211FB4B2DE7F /* Profile-development */, + 6CCA47A254157FE686D788828F27FCF1 /* Profile-production */, + F7E4FD3FB5A76748AE40528928E3A998 /* Profile-staging */, + 18BA3620F22DE50352C0C01DB72E74E0 /* Release */, + F913B2DD78C24C0147448FB9490064DE /* Release-development */, + 5B740B69D20D852987482867E55AFF09 /* Release-production */, + 26E07AFA0DD50837F0D3445686A7ADF3 /* Release-staging */, + 2484AC9DA2FEFAD7C4A11C6F44BB4E99 /* Stage-production */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; @@ -42329,26 +42623,6 @@ defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - E6DBC50216F215312F0B735931F158DA /* Build configuration list for PBXNativeTarget "PromisesObjC" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - EC912235909DE071E66C7530892DB573 /* Debug */, - B2B0D7C74FDDD7BFED271FBAC442A315 /* Debug-development */, - EEA4CE44BFD21D862DC2A17E51D9C7D4 /* Debug-production */, - ECC0D73BF1A38DE88E2EDACE215C22AE /* Debug-staging */, - 693A63CED114FF71D65C7515AC4F08E5 /* Profile */, - 720582D48D6437411DF09B92E50D2F7E /* Profile-development */, - 88EC74A27BB87E01A75ED965FEF42CE1 /* Profile-production */, - D4E12ECFFC218D3071A1357C0A1DB1E0 /* Profile-staging */, - 579F627894F66706C144B165E6A8FBA2 /* Release */, - DB7F8C6AF072C0DBD48D1EC7C0AD9362 /* Release-development */, - 8AE60B4BEEE99F6D654F3DDBCFC03106 /* Release-production */, - 867C0F6FBB8CDA1D6FDFED3ACF66E789 /* Release-staging */, - D1F73465217EEF217374C031A9C0203C /* Stage-production */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; - }; E936F4FA0339D16C5C86344C6F4AEFFE /* Build configuration list for PBXAggregateTarget "GoogleMLKit" */ = { isa = XCConfigurationList; buildConfigurations = ( @@ -42409,62 +42683,22 @@ defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - F39A9C84DA9285DA90BC57F10C6D2BF5 /* Build configuration list for PBXNativeTarget "nanopb-nanopb_Privacy" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - 2A8CFDE6E050A96D3277A72B5AC51D1F /* Debug */, - F0847AD1D4EABC334B9FD5E2BC59E3B4 /* Debug-development */, - AA3CAAA1BCFE48B5A9850D68B0F46D34 /* Debug-production */, - 27249699F762C41BB4F54B900DC8DF0C /* Debug-staging */, - 90C88B162D09E0E4AB599CBCA9C448F2 /* Profile */, - 1CD10D90689756DBB75BB4432ACD4622 /* Profile-development */, - CC88D9D386AC5584F0894FA3F4793C0E /* Profile-production */, - 02504B349641D5B004FF4BE565333E34 /* Profile-staging */, - A3037E2CBCE84E1724022D401FD6B984 /* Release */, - DCD5A4C8DF37FD19712F42647989BCD4 /* Release-development */, - 8084C3B145591715F8393F7D68E5FFBE /* Release-production */, - 6FEB4CFE2F2078F3C9B233E45B19DF3D /* Release-staging */, - 334FB379FA0D1050733637FD178F7B0F /* Stage-production */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; - }; - F8B8EFE071FE3D8C0AC35BA431FFC5D9 /* Build configuration list for PBXNativeTarget "package_info_plus-package_info_plus_privacy" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - 6495F9EC3348A8876C80ABA6448FB148 /* Debug */, - 5327B4C90F2D07DEDB8F45A6E85CC3A9 /* Debug-development */, - 8A5131F3E75D876B85EC97F389A68808 /* Debug-production */, - 6BD9CC12D4CDEF9F3D545717476E2FFC /* Debug-staging */, - 268EC6D5CBE9FD6D79BE8F69BC9A4948 /* Profile */, - A1831260343E264E0BBBE0AC32CC4D69 /* Profile-development */, - 80402665091ADC84F0651B1DA53E083F /* Profile-production */, - 677B618AB1B5A756A072D6A3322C3FDD /* Profile-staging */, - 6165FE053CCB66C7DCB01798F79879C4 /* Release */, - 10594748714012A18A0AE56D4A5C8C95 /* Release-development */, - C13B9CB1429F70E929474185FD2BE257 /* Release-production */, - 8086843459B04EE0A5B6F283E74508C3 /* Release-staging */, - 879ED984FEBA284C3E67903E8209E0D0 /* Stage-production */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; - }; - FAD029E5B1F2DDB9EBE9570733C3D484 /* Build configuration list for PBXNativeTarget "local_auth_darwin-local_auth_darwin_privacy" */ = { + F0994E4E1B0096F90B6F74D409CDA88C /* Build configuration list for PBXNativeTarget "PromisesObjC" */ = { isa = XCConfigurationList; buildConfigurations = ( - CC294C0EB080810BA85C79F6678818E2 /* Debug */, - 2F78DCEF761A0687A991F7EA49627888 /* Debug-development */, - 0EC5D7F8EA8CF3CEE3C29F53A29E4AA7 /* Debug-production */, - 5E7745DB3C5498C4ED858B3172846B58 /* Debug-staging */, - 3023AF932C21F98B87F1CC13C8B34186 /* Profile */, - 30D9FF9D78C886F66A0C0FC2A07432A3 /* Profile-development */, - 301135C3C975DC7BCDCF1E1946C7C8FD /* Profile-production */, - 4E611B806E59190C2C52ABF482C89766 /* Profile-staging */, - 77ABEBB9E4366E6918C96E48E48EC3FB /* Release */, - 1A1C5045C9DD4F7088C66AAE70011E7E /* Release-development */, - 3843A09A1F37AB433512CB36C944CF03 /* Release-production */, - 96E47D3FEC6EC8816702141A845C4D37 /* Release-staging */, - C22EE19D471864B11AD0970A70645265 /* Stage-production */, + C79DEC2DE0642ECA96C7B7DF5E593199 /* Debug */, + E80D97550314202A22290DF8B05727B8 /* Debug-development */, + E2CE2EE6D219CC732C312E339CC1FB6A /* Debug-production */, + E93C2FBBAE3077A449BA779EADF2E062 /* Debug-staging */, + 628ABCD8622C39E8C6C7B98B4824C5B8 /* Profile */, + 48B62F9F1355694542040EB6B84DC61B /* Profile-development */, + A6B5B2A8B96E247AFCB5160B52055C2A /* Profile-production */, + A649CA7AF3E08EE565A437D1C4DA549A /* Profile-staging */, + 75404331A4489DF454E61D61DBC40F2A /* Release */, + 6DAB616C8824816B429C43515ADD57FB /* Release-development */, + 93370B236ABBE068CD8401F540003C19 /* Release-production */, + BA1CB87AD65EE1A3DE14B38AA532A792 /* Release-staging */, + 672AF28AEA8561EF3F686DB28FA7D043 /* Stage-production */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; diff --git a/ios/Runner.xcodeproj/project.pbxproj b/ios/Runner.xcodeproj/project.pbxproj index 7c55c039c..1fd5842f7 100644 --- a/ios/Runner.xcodeproj/project.pbxproj +++ b/ios/Runner.xcodeproj/project.pbxproj @@ -52,6 +52,7 @@ 9D3CE5DC2A0B594EDCE72D48 /* Pods-Runner.stage-production.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Runner.stage-production.xcconfig"; path = "Target Support Files/Pods-Runner/Pods-Runner.stage-production.xcconfig"; sourceTree = ""; }; A1265BBB09400AF9733CF6BA /* Pods-Runner.profile-development.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Runner.profile-development.xcconfig"; path = "Target Support Files/Pods-Runner/Pods-Runner.profile-development.xcconfig"; sourceTree = ""; }; C0A0BDD6975ACF78A10DAF8F /* Pods-Runner.debug-staging.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Runner.debug-staging.xcconfig"; path = "Target Support Files/Pods-Runner/Pods-Runner.debug-staging.xcconfig"; sourceTree = ""; }; + CEA2BB9E2C8163B6008A369E /* Runner.entitlements */ = {isa = PBXFileReference; lastKnownFileType = text.plist.entitlements; path = Runner.entitlements; sourceTree = ""; }; F6DE54D99BAF3434FC7585B2 /* Pods_Runner.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_Runner.framework; sourceTree = BUILT_PRODUCTS_DIR; }; F7EEB555E404442E301DA18D /* Pods-Runner.debug-production.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Runner.debug-production.xcconfig"; path = "Target Support Files/Pods-Runner/Pods-Runner.debug-production.xcconfig"; sourceTree = ""; }; /* End PBXFileReference section */ @@ -109,6 +110,7 @@ 97C146F01CF9000F007C117D /* Runner */ = { isa = PBXGroup; children = ( + CEA2BB9E2C8163B6008A369E /* Runner.entitlements */, 97C146FA1CF9000F007C117D /* Main.storyboard */, 97C146FD1CF9000F007C117D /* Assets.xcassets */, 97C146FF1CF9000F007C117D /* LaunchScreen.storyboard */, @@ -390,25 +392,31 @@ buildSettings = { ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; CLANG_ENABLE_MODULES = YES; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; + CODE_SIGN_ENTITLEMENTS = Runner/Runner.entitlements; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Distribution"; CODE_SIGN_STYLE = Manual; CURRENT_PROJECT_VERSION = "$(FLUTTER_BUILD_NUMBER)"; DEVELOPMENT_TEAM = ""; "DEVELOPMENT_TEAM[sdk=iphoneos*]" = 6RL7DV43Y2; ENABLE_BITCODE = NO; - FLAVOR_APP_NAME = App; + FLAVOR_APP_NAME = "SparX: TVM Wallet"; INFOPLIST_FILE = Runner/Info.plist; LD_RUNPATH_SEARCH_PATHS = ( "$(inherited)", "@executable_path/Frameworks", ); - PRODUCT_BUNDLE_IDENTIFIER = com.broxus.crystal.app; + PRODUCT_BUNDLE_IDENTIFIER = com.broxus.sparx.app; PRODUCT_NAME = "$(TARGET_NAME)"; - PROVISIONING_PROFILE_SPECIFIER = "match Development com.broxus.crystal.app"; - "PROVISIONING_PROFILE_SPECIFIER[sdk=iphoneos*]" = "match Development com.broxus.crystal.app"; + PROVISIONING_PROFILE_SPECIFIER = "match Development com.broxus.sparx.app"; + "PROVISIONING_PROFILE_SPECIFIER[sdk=iphoneos*]" = "match Development com.broxus.sparx.app"; STRIP_STYLE = "non-global"; + SUPPORTED_PLATFORMS = "iphoneos iphonesimulator"; + SUPPORTS_MACCATALYST = NO; + SUPPORTS_MAC_DESIGNED_FOR_IPHONE_IPAD = NO; + SUPPORTS_XR_DESIGNED_FOR_IPHONE_IPAD = NO; SWIFT_OBJC_BRIDGING_HEADER = "Runner/Runner-Bridging-Header.h"; SWIFT_VERSION = 5.0; + TARGETED_DEVICE_FAMILY = 1; VERSIONING_SYSTEM = "apple-generic"; }; name = "Profile-production"; @@ -472,25 +480,31 @@ buildSettings = { ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; CLANG_ENABLE_MODULES = YES; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; + CODE_SIGN_ENTITLEMENTS = Runner/Runner.entitlements; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Distribution"; CODE_SIGN_STYLE = Manual; CURRENT_PROJECT_VERSION = "$(FLUTTER_BUILD_NUMBER)"; DEVELOPMENT_TEAM = ""; "DEVELOPMENT_TEAM[sdk=iphoneos*]" = 6RL7DV43Y2; ENABLE_BITCODE = NO; - FLAVOR_APP_NAME = App; + FLAVOR_APP_NAME = "SparX: TVM Wallet"; INFOPLIST_FILE = Runner/Info.plist; LD_RUNPATH_SEARCH_PATHS = ( "$(inherited)", "@executable_path/Frameworks", ); - PRODUCT_BUNDLE_IDENTIFIER = com.broxus.crystal.app; + PRODUCT_BUNDLE_IDENTIFIER = com.broxus.sparx.app; PRODUCT_NAME = "$(TARGET_NAME)"; - PROVISIONING_PROFILE_SPECIFIER = "match AdHoc com.broxus.crystal.app"; - "PROVISIONING_PROFILE_SPECIFIER[sdk=iphoneos*]" = "match Development com.broxus.crystal.app"; + PROVISIONING_PROFILE_SPECIFIER = "match AdHoc com.broxus.sparx.app"; + "PROVISIONING_PROFILE_SPECIFIER[sdk=iphoneos*]" = "match AdHoc com.broxus.sparx.app"; STRIP_STYLE = "non-global"; + SUPPORTED_PLATFORMS = "iphoneos iphonesimulator"; + SUPPORTS_MACCATALYST = NO; + SUPPORTS_MAC_DESIGNED_FOR_IPHONE_IPAD = NO; + SUPPORTS_XR_DESIGNED_FOR_IPHONE_IPAD = NO; SWIFT_OBJC_BRIDGING_HEADER = "Runner/Runner-Bridging-Header.h"; SWIFT_VERSION = 5.0; + TARGETED_DEVICE_FAMILY = 1; VERSIONING_SYSTEM = "apple-generic"; }; name = "Stage-production"; @@ -610,26 +624,32 @@ buildSettings = { ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; CLANG_ENABLE_MODULES = YES; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; + CODE_SIGN_ENTITLEMENTS = Runner/Runner.entitlements; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Distribution"; CODE_SIGN_STYLE = Manual; CURRENT_PROJECT_VERSION = "$(FLUTTER_BUILD_NUMBER)"; DEVELOPMENT_TEAM = ""; "DEVELOPMENT_TEAM[sdk=iphoneos*]" = 6RL7DV43Y2; ENABLE_BITCODE = NO; - FLAVOR_APP_NAME = App; + FLAVOR_APP_NAME = "SparX: TVM Wallet"; INFOPLIST_FILE = Runner/Info.plist; LD_RUNPATH_SEARCH_PATHS = ( "$(inherited)", "@executable_path/Frameworks", ); - PRODUCT_BUNDLE_IDENTIFIER = com.broxus.crystal.app; + PRODUCT_BUNDLE_IDENTIFIER = com.broxus.sparx.app; PRODUCT_NAME = "$(TARGET_NAME)"; - PROVISIONING_PROFILE_SPECIFIER = "match Development com.broxus.crystal.app"; - "PROVISIONING_PROFILE_SPECIFIER[sdk=iphoneos*]" = "match Development com.broxus.crystal.app"; + PROVISIONING_PROFILE_SPECIFIER = "match Development com.broxus.sparx.app"; + "PROVISIONING_PROFILE_SPECIFIER[sdk=iphoneos*]" = "match Development com.broxus.sparx.app"; STRIP_STYLE = "non-global"; + SUPPORTED_PLATFORMS = "iphoneos iphonesimulator"; + SUPPORTS_MACCATALYST = NO; + SUPPORTS_MAC_DESIGNED_FOR_IPHONE_IPAD = NO; + SUPPORTS_XR_DESIGNED_FOR_IPHONE_IPAD = NO; SWIFT_OBJC_BRIDGING_HEADER = "Runner/Runner-Bridging-Header.h"; SWIFT_OPTIMIZATION_LEVEL = "-Onone"; SWIFT_VERSION = 5.0; + TARGETED_DEVICE_FAMILY = 1; VERSIONING_SYSTEM = "apple-generic"; }; name = "Debug-production"; @@ -640,25 +660,31 @@ buildSettings = { ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; CLANG_ENABLE_MODULES = YES; + CODE_SIGN_ENTITLEMENTS = Runner/Runner.entitlements; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Distribution"; CODE_SIGN_STYLE = Manual; CURRENT_PROJECT_VERSION = "$(FLUTTER_BUILD_NUMBER)"; DEVELOPMENT_TEAM = ""; "DEVELOPMENT_TEAM[sdk=iphoneos*]" = 6RL7DV43Y2; ENABLE_BITCODE = NO; - FLAVOR_APP_NAME = App; + FLAVOR_APP_NAME = "SparX: TVM Wallet"; INFOPLIST_FILE = Runner/Info.plist; LD_RUNPATH_SEARCH_PATHS = ( "$(inherited)", "@executable_path/Frameworks", ); - PRODUCT_BUNDLE_IDENTIFIER = com.broxus.crystal.app; + PRODUCT_BUNDLE_IDENTIFIER = com.broxus.sparx.app; PRODUCT_NAME = "$(TARGET_NAME)"; - PROVISIONING_PROFILE_SPECIFIER = "match AppStore com.broxus.crystal.app"; - "PROVISIONING_PROFILE_SPECIFIER[sdk=iphoneos*]" = "match AppStore com.broxus.crystal.app"; + PROVISIONING_PROFILE_SPECIFIER = "match AppStore com.broxus.sparx.app"; + "PROVISIONING_PROFILE_SPECIFIER[sdk=iphoneos*]" = "match AppStore com.broxus.sparx.app"; STRIP_STYLE = "non-global"; + SUPPORTED_PLATFORMS = "iphoneos iphonesimulator"; + SUPPORTS_MACCATALYST = NO; + SUPPORTS_MAC_DESIGNED_FOR_IPHONE_IPAD = NO; + SUPPORTS_XR_DESIGNED_FOR_IPHONE_IPAD = NO; SWIFT_OBJC_BRIDGING_HEADER = "Runner/Runner-Bridging-Header.h"; SWIFT_VERSION = 5.0; + TARGETED_DEVICE_FAMILY = 1; VERSIONING_SYSTEM = "apple-generic"; }; name = "Release-production"; @@ -725,20 +751,26 @@ buildSettings = { ASSETCATALOG_COMPILER_APPICON_NAME = "AppIcon-dev"; CLANG_ENABLE_MODULES = YES; + CODE_SIGN_ENTITLEMENTS = Runner/Runner.entitlements; CURRENT_PROJECT_VERSION = "$(FLUTTER_BUILD_NUMBER)"; ENABLE_BITCODE = NO; - FLAVOR_APP_NAME = "[DEV] App"; + FLAVOR_APP_NAME = "[DEV] SparX: TVM Wallet"; INFOPLIST_FILE = Runner/Info.plist; LD_RUNPATH_SEARCH_PATHS = ( "$(inherited)", "@executable_path/Frameworks", ); - PRODUCT_BUNDLE_IDENTIFIER = com.broxus.crystal.app.dev; + PRODUCT_BUNDLE_IDENTIFIER = com.broxus.sparx.app.dev; PRODUCT_NAME = "$(TARGET_NAME)"; STRIP_STYLE = "non-global"; + SUPPORTED_PLATFORMS = "iphoneos iphonesimulator"; + SUPPORTS_MACCATALYST = NO; + SUPPORTS_MAC_DESIGNED_FOR_IPHONE_IPAD = NO; + SUPPORTS_XR_DESIGNED_FOR_IPHONE_IPAD = NO; SWIFT_OBJC_BRIDGING_HEADER = "Runner/Runner-Bridging-Header.h"; SWIFT_OPTIMIZATION_LEVEL = "-Onone"; SWIFT_VERSION = 5.0; + TARGETED_DEVICE_FAMILY = 1; VERSIONING_SYSTEM = "apple-generic"; }; name = "Debug-development"; @@ -802,19 +834,25 @@ buildSettings = { ASSETCATALOG_COMPILER_APPICON_NAME = "AppIcon-dev"; CLANG_ENABLE_MODULES = YES; + CODE_SIGN_ENTITLEMENTS = Runner/Runner.entitlements; CURRENT_PROJECT_VERSION = "$(FLUTTER_BUILD_NUMBER)"; ENABLE_BITCODE = NO; - FLAVOR_APP_NAME = "[DEV] App"; + FLAVOR_APP_NAME = "[DEV] SparX: TVM Wallet"; INFOPLIST_FILE = Runner/Info.plist; LD_RUNPATH_SEARCH_PATHS = ( "$(inherited)", "@executable_path/Frameworks", ); - PRODUCT_BUNDLE_IDENTIFIER = com.broxus.crystal.app.dev; + PRODUCT_BUNDLE_IDENTIFIER = com.broxus.sparx.app.dev; PRODUCT_NAME = "$(TARGET_NAME)"; STRIP_STYLE = "non-global"; + SUPPORTED_PLATFORMS = "iphoneos iphonesimulator"; + SUPPORTS_MACCATALYST = NO; + SUPPORTS_MAC_DESIGNED_FOR_IPHONE_IPAD = NO; + SUPPORTS_XR_DESIGNED_FOR_IPHONE_IPAD = NO; SWIFT_OBJC_BRIDGING_HEADER = "Runner/Runner-Bridging-Header.h"; SWIFT_VERSION = 5.0; + TARGETED_DEVICE_FAMILY = 1; VERSIONING_SYSTEM = "apple-generic"; }; name = "Release-development"; @@ -876,19 +914,25 @@ buildSettings = { ASSETCATALOG_COMPILER_APPICON_NAME = "AppIcon-dev"; CLANG_ENABLE_MODULES = YES; + CODE_SIGN_ENTITLEMENTS = Runner/Runner.entitlements; CURRENT_PROJECT_VERSION = "$(FLUTTER_BUILD_NUMBER)"; ENABLE_BITCODE = NO; - FLAVOR_APP_NAME = "[DEV] App"; + FLAVOR_APP_NAME = "[DEV] SparX: TVM Wallet"; INFOPLIST_FILE = Runner/Info.plist; LD_RUNPATH_SEARCH_PATHS = ( "$(inherited)", "@executable_path/Frameworks", ); - PRODUCT_BUNDLE_IDENTIFIER = com.broxus.crystal.app.dev; + PRODUCT_BUNDLE_IDENTIFIER = com.broxus.sparx.app.dev; PRODUCT_NAME = "$(TARGET_NAME)"; STRIP_STYLE = "non-global"; + SUPPORTED_PLATFORMS = "iphoneos iphonesimulator"; + SUPPORTS_MACCATALYST = NO; + SUPPORTS_MAC_DESIGNED_FOR_IPHONE_IPAD = NO; + SUPPORTS_XR_DESIGNED_FOR_IPHONE_IPAD = NO; SWIFT_OBJC_BRIDGING_HEADER = "Runner/Runner-Bridging-Header.h"; SWIFT_VERSION = 5.0; + TARGETED_DEVICE_FAMILY = 1; VERSIONING_SYSTEM = "apple-generic"; }; name = "Profile-development"; @@ -955,20 +999,26 @@ buildSettings = { ASSETCATALOG_COMPILER_APPICON_NAME = "AppIcon-stg"; CLANG_ENABLE_MODULES = YES; + CODE_SIGN_ENTITLEMENTS = Runner/Runner.entitlements; CURRENT_PROJECT_VERSION = "$(FLUTTER_BUILD_NUMBER)"; ENABLE_BITCODE = NO; - FLAVOR_APP_NAME = "[STG] App"; + FLAVOR_APP_NAME = "[STG] SparX: TVM Wallet"; INFOPLIST_FILE = Runner/Info.plist; LD_RUNPATH_SEARCH_PATHS = ( "$(inherited)", "@executable_path/Frameworks", ); - PRODUCT_BUNDLE_IDENTIFIER = com.broxus.crystal.app.stg; + PRODUCT_BUNDLE_IDENTIFIER = com.broxus.sparx.app.stg; PRODUCT_NAME = "$(TARGET_NAME)"; STRIP_STYLE = "non-global"; + SUPPORTED_PLATFORMS = "iphoneos iphonesimulator"; + SUPPORTS_MACCATALYST = NO; + SUPPORTS_MAC_DESIGNED_FOR_IPHONE_IPAD = NO; + SUPPORTS_XR_DESIGNED_FOR_IPHONE_IPAD = NO; SWIFT_OBJC_BRIDGING_HEADER = "Runner/Runner-Bridging-Header.h"; SWIFT_OPTIMIZATION_LEVEL = "-Onone"; SWIFT_VERSION = 5.0; + TARGETED_DEVICE_FAMILY = 1; VERSIONING_SYSTEM = "apple-generic"; }; name = "Debug-staging"; @@ -1032,19 +1082,25 @@ buildSettings = { ASSETCATALOG_COMPILER_APPICON_NAME = "AppIcon-stg"; CLANG_ENABLE_MODULES = YES; + CODE_SIGN_ENTITLEMENTS = Runner/Runner.entitlements; CURRENT_PROJECT_VERSION = "$(FLUTTER_BUILD_NUMBER)"; ENABLE_BITCODE = NO; - FLAVOR_APP_NAME = "[STG] App"; + FLAVOR_APP_NAME = "[STG] SparX: TVM Wallet"; INFOPLIST_FILE = Runner/Info.plist; LD_RUNPATH_SEARCH_PATHS = ( "$(inherited)", "@executable_path/Frameworks", ); - PRODUCT_BUNDLE_IDENTIFIER = com.broxus.crystal.app.stg; + PRODUCT_BUNDLE_IDENTIFIER = com.broxus.sparx.app.stg; PRODUCT_NAME = "$(TARGET_NAME)"; STRIP_STYLE = "non-global"; + SUPPORTED_PLATFORMS = "iphoneos iphonesimulator"; + SUPPORTS_MACCATALYST = NO; + SUPPORTS_MAC_DESIGNED_FOR_IPHONE_IPAD = NO; + SUPPORTS_XR_DESIGNED_FOR_IPHONE_IPAD = NO; SWIFT_OBJC_BRIDGING_HEADER = "Runner/Runner-Bridging-Header.h"; SWIFT_VERSION = 5.0; + TARGETED_DEVICE_FAMILY = 1; VERSIONING_SYSTEM = "apple-generic"; }; name = "Release-staging"; @@ -1106,19 +1162,25 @@ buildSettings = { ASSETCATALOG_COMPILER_APPICON_NAME = "AppIcon-stg"; CLANG_ENABLE_MODULES = YES; + CODE_SIGN_ENTITLEMENTS = Runner/Runner.entitlements; CURRENT_PROJECT_VERSION = "$(FLUTTER_BUILD_NUMBER)"; ENABLE_BITCODE = NO; - FLAVOR_APP_NAME = "[STG] App"; + FLAVOR_APP_NAME = "[STG] SparX: TVM Wallet"; INFOPLIST_FILE = Runner/Info.plist; LD_RUNPATH_SEARCH_PATHS = ( "$(inherited)", "@executable_path/Frameworks", ); - PRODUCT_BUNDLE_IDENTIFIER = com.broxus.crystal.app.stg; + PRODUCT_BUNDLE_IDENTIFIER = com.broxus.sparx.app.stg; PRODUCT_NAME = "$(TARGET_NAME)"; STRIP_STYLE = "non-global"; + SUPPORTED_PLATFORMS = "iphoneos iphonesimulator"; + SUPPORTS_MACCATALYST = NO; + SUPPORTS_MAC_DESIGNED_FOR_IPHONE_IPAD = NO; + SUPPORTS_XR_DESIGNED_FOR_IPHONE_IPAD = NO; SWIFT_OBJC_BRIDGING_HEADER = "Runner/Runner-Bridging-Header.h"; SWIFT_VERSION = 5.0; + TARGETED_DEVICE_FAMILY = 1; VERSIONING_SYSTEM = "apple-generic"; }; name = "Profile-staging"; diff --git a/ios/Runner/Info.plist b/ios/Runner/Info.plist index 35e3ea8a4..40e6337b7 100644 --- a/ios/Runner/Info.plist +++ b/ios/Runner/Info.plist @@ -1,69 +1,74 @@ - - CFBundleLocalizations - - en - ko - - CFBundleDevelopmentRegion - $(DEVELOPMENT_LANGUAGE) - CFBundleDisplayName - $(FLAVOR_APP_NAME) - CFBundleExecutable - $(EXECUTABLE_NAME) - CFBundleIdentifier - $(PRODUCT_BUNDLE_IDENTIFIER) - CFBundleInfoDictionaryVersion - 6.0 - CFBundleName - $(FLAVOR_APP_NAME) - CFBundlePackageType - APPL - CFBundleShortVersionString - $(FLUTTER_BUILD_NAME) - CFBundleSignature - ???? - CFBundleVersion - $(FLUTTER_BUILD_NUMBER) - LSRequiresIPhoneOS - - UILaunchStoryboardName - LaunchScreen - UIMainStoryboardFile - Main - UISupportedInterfaceOrientations - - UIInterfaceOrientationPortrait - UIInterfaceOrientationLandscapeLeft - UIInterfaceOrientationLandscapeRight - - UISupportedInterfaceOrientations~ipad - - UIInterfaceOrientationPortrait - UIInterfaceOrientationPortraitUpsideDown - UIInterfaceOrientationLandscapeLeft - UIInterfaceOrientationLandscapeRight - - UIViewControllerBasedStatusBarAppearance - - CADisableMinimumFrameDurationOnPhone - - UIApplicationSupportsIndirectInputEvents - - NSFaceIDUsageDescription - This will simplify authentication and make it faster. - NSCameraUsageDescription - We need access to camera to scan QR-codes - NSPhotoLibraryUsageDescription - We need photos access to get QR code from photo library - LSApplicationQueriesSchemes - - metamask - trust - - UIStatusBarHidden - - + + CADisableMinimumFrameDurationOnPhone + + CFBundleDevelopmentRegion + $(DEVELOPMENT_LANGUAGE) + CFBundleDisplayName + $(FLAVOR_APP_NAME) + CFBundleExecutable + $(EXECUTABLE_NAME) + CFBundleIdentifier + $(PRODUCT_BUNDLE_IDENTIFIER) + CFBundleInfoDictionaryVersion + 6.0 + CFBundleLocalizations + + en + ko + + CFBundleName + $(FLAVOR_APP_NAME) + CFBundlePackageType + APPL + CFBundleShortVersionString + $(FLUTTER_BUILD_NAME) + CFBundleSignature + ???? + CFBundleVersion + $(FLUTTER_BUILD_NUMBER) + LSApplicationQueriesSchemes + + metamask + trust + + LSRequiresIPhoneOS + + NSCameraUsageDescription + We need access to camera to scan QR-codes + NSFaceIDUsageDescription + This will simplify authentication and make it faster. + NSPhotoLibraryUsageDescription + We need photos access to get QR code from photo library + UIApplicationSupportsIndirectInputEvents + + UIBackgroundModes + + fetch + remote-notification + + UILaunchStoryboardName + LaunchScreen + UIMainStoryboardFile + Main + UIStatusBarHidden + + UISupportedInterfaceOrientations + + UIInterfaceOrientationPortrait + UIInterfaceOrientationLandscapeLeft + UIInterfaceOrientationLandscapeRight + + UISupportedInterfaceOrientations~ipad + + UIInterfaceOrientationPortrait + UIInterfaceOrientationPortraitUpsideDown + UIInterfaceOrientationLandscapeLeft + UIInterfaceOrientationLandscapeRight + + UIViewControllerBasedStatusBarAppearance + + diff --git a/ios/Runner/Runner.entitlements b/ios/Runner/Runner.entitlements new file mode 100644 index 000000000..903def2af --- /dev/null +++ b/ios/Runner/Runner.entitlements @@ -0,0 +1,8 @@ + + + + + aps-environment + development + + diff --git a/ios/export_options_adhoc.plist b/ios/export_options_adhoc.plist index bc1984946..445d098fd 100644 --- a/ios/export_options_adhoc.plist +++ b/ios/export_options_adhoc.plist @@ -6,8 +6,8 @@ ad-hoc provisioningProfiles - com.broxus.crystal.app - match AdHoc com.broxus.crystal.app + com.broxus.sparx.app + match AdHoc com.broxus.sparx.app signingStyle manual diff --git a/ios/export_options_appstore.plist b/ios/export_options_appstore.plist index 7b231df5f..84ad525e3 100644 --- a/ios/export_options_appstore.plist +++ b/ios/export_options_appstore.plist @@ -8,8 +8,8 @@ app-store provisioningProfiles - com.broxus.crystal.app - match AppStore com.broxus.crystal.app + com.broxus.sparx.app + match AppStore com.broxus.sparx.app signingCertificate iOS Distribution diff --git a/ios/fastlane/Appfile b/ios/fastlane/Appfile index 18a9e13f4..92f2edd93 100644 --- a/ios/fastlane/Appfile +++ b/ios/fastlane/Appfile @@ -1,4 +1,4 @@ -app_identifier("com.broxus.crystal.app") # The bundle identifier of your app +app_identifier("com.broxus.sparx.app") # The bundle identifier of your app itc_team_id("122210899") # App Store Connect Team ID team_id("6RL7DV43Y2") # Developer Portal Team ID diff --git a/ios/fastlane/Fastfile b/ios/fastlane/Fastfile index 5d93b4f58..ba9639184 100644 --- a/ios/fastlane/Fastfile +++ b/ios/fastlane/Fastfile @@ -25,7 +25,7 @@ platform :ios do key_filepath: "fastlane/AuthKey_L4N29B6Z42.p8", ) upload_to_testflight( - ipa: "../build/ios/ipa/App.ipa", + ipa: "../build/ios/ipa/SparX Wallet.ipa", skip_waiting_for_build_processing: true, api_key: api_key, changelog: "#{options[:changelog_string]}" @@ -36,9 +36,9 @@ platform :ios do lane :deploy_fad do |options| setup_ci if ENV['CI'] firebase_app_distribution( - app: "1:1017783238389:ios:a0ab19a124c910702e4fbc", + app: "1:1017783238389:ios:a8de9ade8f221b782e4fbc", groups: "qa", - ipa_path: "../build/ios/ipa/App.ipa", + ipa_path: "../build/ios/ipa/SparX Wallet.ipa", service_credentials_file: "../fastlane/FirebaseADKey.json", release_notes_file: "../fastlane/changelog.txt", ) diff --git a/ios/fastlane/Matchfile b/ios/fastlane/Matchfile index 14f84506e..be5e3d6f7 100644 --- a/ios/fastlane/Matchfile +++ b/ios/fastlane/Matchfile @@ -1,4 +1,4 @@ git_url("git@github.com:broxus/ios-provisioning.git") -app_identifier("com.broxus.crystal.app") +app_identifier("com.broxus.sparx.app") verbose(true) diff --git a/lib/app/service/storage_service/balance_storage_service.dart b/lib/app/service/storage_service/balance_storage_service.dart index 622535e7f..df393a754 100644 --- a/lib/app/service/storage_service/balance_storage_service.dart +++ b/lib/app/service/storage_service/balance_storage_service.dart @@ -5,8 +5,7 @@ import 'package:app/data/models/models.dart'; import 'package:encrypted_storage/encrypted_storage.dart'; import 'package:injectable/injectable.dart'; import 'package:logging/logging.dart'; -import 'package:money2_improver/money2_improver.dart'; -import 'package:nekoton_repository/nekoton_repository.dart' hide FixedFixer; +import 'package:nekoton_repository/nekoton_repository.dart'; import 'package:rxdart/rxdart.dart'; const _overallBalancesDomain = 'overallBalancesDomain'; @@ -57,7 +56,7 @@ class BalanceStorageService extends AbstractStorageService { return encoded.map( (key, value) => MapEntry( Address(address: key), - FixedImprover.fromJson(jsonDecode(value) as Map), + FixedFixer.fromJson(jsonDecode(value) as Map), ), ); } diff --git a/lib/feature/wallet/widgets/account_asset_tab/wallet_asset_widget.dart b/lib/feature/wallet/widgets/account_asset_tab/wallet_asset_widget.dart index c29058f4b..2b083dc8f 100644 --- a/lib/feature/wallet/widgets/account_asset_tab/wallet_asset_widget.dart +++ b/lib/feature/wallet/widgets/account_asset_tab/wallet_asset_widget.dart @@ -1,6 +1,6 @@ import 'package:flutter/material.dart'; import 'package:lucide_icons_flutter/lucide_icons.dart'; -import 'package:money2_improver/money2_improver.dart'; +import 'package:money2_fixer/money2_fixer.dart'; import 'package:ui_components_lib/ui_components_lib.dart'; import 'package:ui_components_lib/v2/ui_components_lib_v2.dart'; diff --git a/lib/main.dart b/lib/main.dart new file mode 100644 index 000000000..6db74a5ef --- /dev/null +++ b/lib/main.dart @@ -0,0 +1,3 @@ +import 'package:app/main_production.dart' as p; + +void main() => p.main(); diff --git a/lib/utils/utils.dart b/lib/utils/utils.dart index c811821fe..5251b662c 100644 --- a/lib/utils/utils.dart +++ b/lib/utils/utils.dart @@ -5,7 +5,7 @@ import 'package:app/di/di.dart'; import 'package:app/generated/generated.dart'; import 'package:clock/clock.dart'; import 'package:json_annotation/json_annotation.dart'; -import 'package:money2_improver/money2_improver.dart'; +import 'package:money2_fixer/money2_fixer.dart'; import 'package:nekoton_repository/nekoton_repository.dart' hide MoneyFixer; extension DateX on DateTime { @@ -36,7 +36,7 @@ class _MoneyFromStringJsonConverter const _MoneyFromStringJsonConverter(); @override - Money fromJson(Map json) => MoneyImprover.fromJson(json); + Money fromJson(Map json) => MoneyFixer.fromJson(json); @override Map toJson(Money object) => object.toJson(); diff --git a/melos.yaml b/melos.yaml index dba29de1d..82729304d 100644 --- a/melos.yaml +++ b/melos.yaml @@ -121,6 +121,14 @@ scripts: description: Build and deploy to FAD, Testflight and Google Play internal run: bash scripts/build-deploy-fad-store.sh + build:deploy_ios_store: + description: Build and deploy to Test Flight + run: bash scripts/build-deploy-ios-store.sh + + build:deploy_android_store: + description: Build and deploy to Google Play + run: bash scripts/build-deploy-android-store.sh + command: clean: hooks: diff --git a/packages/ui_components_lib/example/pubspec.lock b/packages/ui_components_lib/example/pubspec.lock index d7d6bf4a3..3d71a7fd5 100644 --- a/packages/ui_components_lib/example/pubspec.lock +++ b/packages/ui_components_lib/example/pubspec.lock @@ -318,14 +318,13 @@ packages: url: "https://pub.dev" source: hosted version: "5.2.1" - money2_improver: + money2_fixer: dependency: transitive description: - path: "." - ref: HEAD - resolved-ref: "4cd990030196f64a6a7b10b10b42478f2c5d62a7" - url: "https://github.com/broxus/money2_improver" - source: git + name: money2_fixer + sha256: a25da989330d68a878fc6cf69224963b478e3b90486d5fdade6fce4a7c0686fb + url: "https://pub.dev" + source: hosted version: "2.0.0" nested: dependency: transitive diff --git a/packages/ui_components_lib/lib/components/common/money_widget.dart b/packages/ui_components_lib/lib/components/common/money_widget.dart index a5fbf6ecd..b2b2531f9 100644 --- a/packages/ui_components_lib/lib/components/common/money_widget.dart +++ b/packages/ui_components_lib/lib/components/common/money_widget.dart @@ -1,5 +1,5 @@ import 'package:flutter/material.dart'; -import 'package:money2_improver/money2_improver.dart'; +import 'package:money2_fixer/money2_fixer.dart'; import 'package:ui_components_lib/ui_components_lib.dart'; export 'package:money2/money2.dart'; diff --git a/packages/ui_components_lib/lib/v2/widgets/amount_widget.dart b/packages/ui_components_lib/lib/v2/widgets/amount_widget.dart index 3c3fdb8fe..2c54332fa 100644 --- a/packages/ui_components_lib/lib/v2/widgets/amount_widget.dart +++ b/packages/ui_components_lib/lib/v2/widgets/amount_widget.dart @@ -1,6 +1,6 @@ import 'package:flutter/material.dart'; import 'package:money2/money2.dart'; -import 'package:money2_improver/money2_improver.dart'; +import 'package:money2_fixer/money2_fixer.dart'; import 'package:ui_components_lib/v2/ui_components_lib_v2.dart'; class AmountWidget extends StatelessWidget { diff --git a/packages/ui_components_lib/pubspec.yaml b/packages/ui_components_lib/pubspec.yaml index 83e655fc9..39509d588 100644 --- a/packages/ui_components_lib/pubspec.yaml +++ b/packages/ui_components_lib/pubspec.yaml @@ -18,10 +18,7 @@ dependencies: lucide_icons_flutter: ^1.1.2 modal_bottom_sheet: ^3.0.0 money2: ^5.2.1 - # money2: ^4.0.0 - money2_improver: - git: - url: https://github.com/broxus/money2_improver + money2_fixer: 2.0.0 sliding_up_panel2: ^3.3.0+1 diff --git a/pubspec.lock b/pubspec.lock index 9bb06ed78..c58dfd5c2 100644 --- a/pubspec.lock +++ b/pubspec.lock @@ -1346,22 +1346,13 @@ packages: source: hosted version: "5.2.1" money2_fixer: - dependency: transitive + dependency: "direct main" description: name: money2_fixer sha256: a25da989330d68a878fc6cf69224963b478e3b90486d5fdade6fce4a7c0686fb url: "https://pub.dev" source: hosted version: "2.0.0" - money2_improver: - dependency: "direct main" - description: - path: "." - ref: HEAD - resolved-ref: "4cd990030196f64a6a7b10b10b42478f2c5d62a7" - url: "https://github.com/broxus/money2_improver" - source: git - version: "2.0.0" mustache_template: dependency: transitive description: diff --git a/pubspec.yaml b/pubspec.yaml index 298158d18..feb092b3c 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,6 +1,6 @@ name: app -description: EVER Wallet Flutter app -version: 2.0.0+3 +description: SparX Wallet Flutter app +version: 1.0.0 publish_to: none environment: @@ -47,9 +47,7 @@ dependencies: lucide_icons_flutter: ^1.1.2 mobile_scanner: 3.4.1 money2: ^5.2.1 - money2_improver: - git: - url: https://github.com/broxus/money2_improver + money2_fixer: 2.0.0 nekoton_repository: git: url: https://github.com/broxus/nekoton_repository.git diff --git a/scripts/build-binary/store-ipa.sh b/scripts/build-binary/store-ipa.sh index cfef39479..5502d43ef 100644 --- a/scripts/build-binary/store-ipa.sh +++ b/scripts/build-binary/store-ipa.sh @@ -5,3 +5,11 @@ set -o pipefail echo "🛒🏗️🍏 Build IPA for STORE" flutter build ipa --release --export-options-plist ios/export_options_appstore.plist $BUILD_NUMBER_STRING --flavor production --target lib/main_production.dart --dart-define=SENTRY_DSN=$SENTRY_DSN + +IPA_PATH=$(find build/ios/ipa -name "*.ipa" | head -n 1) +if [ -f "$IPA_PATH" ]; then + echo "Created IPA file: $IPA_PATH" +else + echo "Error: IPA file not found!" + exit 1 +fi \ No newline at end of file diff --git a/scripts/build-deploy-android-store.sh b/scripts/build-deploy-android-store.sh new file mode 100644 index 000000000..67fd6b4fc --- /dev/null +++ b/scripts/build-deploy-android-store.sh @@ -0,0 +1,12 @@ +#!/bin/bash +set -e +set -o pipefail + +export SENTRY_DSN + +source scripts/get-build-number.sh +source scripts/get-changelog.sh + +source scripts/build-binary/store-aab.sh + +source scripts/deploy/store-aab.sh diff --git a/scripts/build-deploy-ios-store.sh b/scripts/build-deploy-ios-store.sh new file mode 100644 index 000000000..0fd5c9ff7 --- /dev/null +++ b/scripts/build-deploy-ios-store.sh @@ -0,0 +1,12 @@ +#!/bin/bash +set -e +set -o pipefail + +export SENTRY_DSN + +source scripts/get-build-number.sh +source scripts/get-changelog.sh + +source scripts/build-binary/store-ipa.sh + +source scripts/deploy/store-ipa.sh diff --git a/scripts/clean.sh b/scripts/clean.sh index 9923ed3a8..d512a1207 100644 --- a/scripts/clean.sh +++ b/scripts/clean.sh @@ -8,7 +8,7 @@ find . -type f -name "*.reflectable.dart" -delete rm -rf lib/di/di.config.dart # Sectets -rm -f android/crystal.keystore +rm -f android/sparx.keystore rm -f android/key.properties rm -f android/fastlane/GooglePlayServiceAccount.json rm -f ios/fastlane/AuthKey_L4N29B6Z42.p8 diff --git a/secrets/secrets.tar.gpg b/secrets/secrets.tar.gpg index d3d8134e7..fa3f34e33 100644 Binary files a/secrets/secrets.tar.gpg and b/secrets/secrets.tar.gpg differ diff --git a/windows/runner/Runner.rc b/windows/runner/Runner.rc index 510a901e8..e93b533ba 100644 --- a/windows/runner/Runner.rc +++ b/windows/runner/Runner.rc @@ -89,11 +89,11 @@ BEGIN BEGIN BLOCK "040904e4" BEGIN - VALUE "CompanyName", "com.broxus.crystal.app" "\0" + VALUE "CompanyName", "com.broxus.sparx.app" "\0" VALUE "FileDescription", "app" "\0" VALUE "FileVersion", VERSION_AS_STRING "\0" VALUE "InternalName", "app" "\0" - VALUE "LegalCopyright", "Copyright (C) 2022 com.broxus.crystal.app. All rights reserved." "\0" + VALUE "LegalCopyright", "Copyright (C) 2022 com.broxus.sparx.app. All rights reserved." "\0" VALUE "OriginalFilename", "app.exe" "\0" VALUE "ProductName", "App" "\0" VALUE "ProductVersion", VERSION_AS_STRING "\0"