braze-inc / braze-flutter-sdk

Public repo for the Braze Flutter SDK
Other
15 stars 29 forks source link

No such module 'BrazePushStory' and No such module 'BrazeNotificationService' #39

Closed husnainasghar closed 1 year ago

husnainasghar commented 1 year ago

While adding rich notifications and push stories there are no BrazeNotificationService and BrazePushStory frameworks.

On running the app in the android studio it does not throw any errors and runs perfectly, but when I run the app from Xcode or try to make an archive it throws No such module 'BrazePushStory' and No such module 'BrazeNotificationService' errors.

I am using braze_plugin: ^3.0.1.

Screenshot 2022-12-29 at 10 11 22 AM Screenshot 2022-12-29 at 12 56 43 PM
jerielng commented 1 year ago

Hi @husnainasghar, BrazePushStory and BrazeNotificationService aren't set up as frameworks to be added directly into your project. They are extra libraries that can be added as target extensions.

The following guides should help you get started:

Hope this helps!

husnainasghar commented 1 year ago

Hi @jerielng, I did follow the guides but when I try to add BrazePushStory and BrazeNotificationService framework to target they don't show up. I have also tried to add these via Package Dependencies but in that case I get the following error: Duplicate symbols for architecture x86_64 under Xcode

hokstuff commented 1 year ago

Hi @husnainasghar,

Flutter uses Cocoapods underneath the hood, and using a mix of Cocoapods and Swift Package Manager can lead to undefined behavior in iOS projects. Can you try importing the BrazePushStory and BrazeNotificationService frameworks via the Podfile, similar to this snippet:

/* Rest of Podfile */

target 'YourAppPushNotificationsServiceExtension' do
  platform :ios, '10.0'
  pod 'BrazeNotificationService'
end

target 'YourAppPushNotificationsContentExtension' do
  platform :ios, '10.0'
  pod 'BrazePushStory'
end
hokstuff commented 1 year ago

I'm closing out this issue due to inactivity. If you continue to face issues, please contact support@braze.com with more context about your specific integration. Thank you!

nottmey commented 1 year ago

Hi @hokstuff,

we have the same issue, but also tried adding the extension as a target in the podfile. We also had do add use_frameworks! to make pod install not error:

/* Rest of Podfile */

target 'PushServiceExtension' do
  use_frameworks!

  pod 'BrazeNotificationService'
end

But we still get this error

Error (Xcode): 130 duplicate symbols for architecture arm64

Could not build the application for the simulator. Error launching application on iPhone 14.

this also happens when we do

  pod 'BrazeNotificationService', '~> 5.9.0'

Additionally in Xcode when using the Snippet from https://braze-inc.github.io/braze-swift-sdk/tutorials/braze/b2-rich-push-notifications/

import BrazeNotificationService

class NotificationService: BrazeNotificationService.NotificationService {}

we get this error:

NotificationService.swift:3:53 No type named 'NotificationService' in module 'BrazeNotificationService'

This seems to indicate another setup because when opening the BrazeNotificationService declaration there is no NotificationService specified, just this:

import SwiftOnoneSupport
import UIKit
import UserNotifications
import _Concurrency
import _StringProcessing
lowip commented 1 year ago

Hi @nottmey,

We also had do add use_frameworks! to make pod install not error:

Additionally in Xcode when using the Snippet from braze-inc.github.io/braze-swift-sdk/tutorials/braze/b2-rich-push-notifications ... we get this error:

This error seems to be a consequence of the first one. Resolving the first error should fix this one.

nottmey commented 1 year ago

Hi @lowip, sure :)

Podfile ```ruby platform :ios, '12.0' ENV['COCOAPODS_DISABLE_STATS'] = 'true' project 'Runner', { 'Debug' => :debug, 'Profile' => :release, 'Release' => :release, } def flutter_root generated_xcode_build_settings_path = File.expand_path(File.join('..', 'Flutter', 'Generated.xcconfig'), __FILE__) unless File.exist?(generated_xcode_build_settings_path) raise "#{generated_xcode_build_settings_path} must exist. If you're running pod install manually, make sure flutter pub get is executed first" end File.foreach(generated_xcode_build_settings_path) do |line| matches = line.match(/FLUTTER_ROOT\=(.*)/) return matches[1].strip if matches end raise "FLUTTER_ROOT not found in #{generated_xcode_build_settings_path}. Try deleting Generated.xcconfig, then run flutter pub get" end require File.expand_path(File.join('packages', 'flutter_tools', 'bin', 'podhelper'), flutter_root) flutter_ios_podfile_setup target 'Runner' do use_frameworks! use_modular_headers! flutter_install_all_ios_pods File.dirname(File.realpath(__FILE__)) target 'RunnerTests' do inherit! :search_paths end end post_install do |installer| installer.pods_project.targets.each do |target| flutter_additional_ios_build_settings(target) # Start of the permission_handler configuration target.build_configurations.each do |config| # Preprocessor definitions can be found in: https://github.com/Baseflow/flutter-permission-handler/blob/master/permission_handler_apple/ios/Classes/PermissionHandlerEnums.h config.build_settings['GCC_PREPROCESSOR_DEFINITIONS'] ||= [ '$(inherited)', 'PERMISSION_NOTIFICATIONS=1', 'PERMISSION_APP_TRACKING_TRANSPARENCY=1', ] end end end ```

When we add the following (changing iOS Version doesn't change the result),

target 'PushServiceExtension' do
  platform :ios, '10.0'
  pod 'BrazeNotificationService'
end
this error occurs ``` Launching lib/main.dart on iPhone 14 in debug mode... Running pod install... CocoaPods' output: ↳ Preparing Analyzing dependencies Inspecting targets to integrate Using `ARCHS` setting to build architectures of target `Pods-Runner`: (``) Using `ARCHS` setting to build architectures of target `Pods-PushServiceExtension`: (``) Using `ARCHS` setting to build architectures of target `Pods-RunnerTests`: (``) Finding Podfile changes A BrazeNotificationService - Flutter - adjust_sdk - braze_plugin - connectivity_plus - device_info_plus - firebase_analytics - firebase_core - firebase_crashlytics - firebase_performance - flutter_inappwebview - flutter_keyboard_visibility - flutter_native_splash - integration_test - onetrust_publishers_native_cmp - package_info_plus - path_provider_ios - permission_handler_apple - share_plus - shared_preferences_ios - store_redirect - url_launcher_ios Fetching external sources -> Fetching podspec for `Flutter` from `Flutter` -> Fetching podspec for `adjust_sdk` from `.symlinks/plugins/adjust_sdk/ios` -> Fetching podspec for `braze_plugin` from `.symlinks/plugins/braze_plugin/ios` -> Fetching podspec for `connectivity_plus` from `.symlinks/plugins/connectivity_plus/ios` -> Fetching podspec for `device_info_plus` from `.symlinks/plugins/device_info_plus/ios` -> Fetching podspec for `firebase_analytics` from `.symlinks/plugins/firebase_analytics/ios` firebase_analytics: Using Firebase SDK version '10.3.0' defined in 'firebase_core' -> Fetching podspec for `firebase_core` from `.symlinks/plugins/firebase_core/ios` firebase_core: Using Firebase SDK version '10.3.0' defined in 'firebase_core' -> Fetching podspec for `firebase_crashlytics` from `.symlinks/plugins/firebase_crashlytics/ios` Run script to upload symbols already exists. firebase_crashlytics: Using Firebase SDK version '10.3.0' defined in 'firebase_core' -> Fetching podspec for `firebase_performance` from `.symlinks/plugins/firebase_performance/ios` firebase_performance: Using Firebase SDK version '10.3.0' defined in 'firebase_core' -> Fetching podspec for `flutter_inappwebview` from `.symlinks/plugins/flutter_inappwebview/ios` -> Fetching podspec for `flutter_keyboard_visibility` from `.symlinks/plugins/flutter_keyboard_visibility/ios` -> Fetching podspec for `flutter_native_splash` from `.symlinks/plugins/flutter_native_splash/ios` -> Fetching podspec for `integration_test` from `.symlinks/plugins/integration_test/ios` -> Fetching podspec for `onetrust_publishers_native_cmp` from `.symlinks/plugins/onetrust_publishers_native_cmp/ios` -> Fetching podspec for `package_info_plus` from `.symlinks/plugins/package_info_plus/ios` -> Fetching podspec for `path_provider_ios` from `.symlinks/plugins/path_provider_ios/ios` -> Fetching podspec for `permission_handler_apple` from `.symlinks/plugins/permission_handler_apple/ios` -> Fetching podspec for `share_plus` from `.symlinks/plugins/share_plus/ios` -> Fetching podspec for `shared_preferences_ios` from `.symlinks/plugins/shared_preferences_ios/ios` -> Fetching podspec for `store_redirect` from `.symlinks/plugins/store_redirect/ios` -> Fetching podspec for `url_launcher_ios` from `.symlinks/plugins/url_launcher_ios/ios` Resolving dependencies of `Podfile` CDN: trunk Relative path: CocoaPods-version.yml exists! Returning local because checking is only performed in repo update CDN: trunk Relative path: all_pods_versions_5_2_4.txt exists! Returning local because checking is only performed in repo update CDN: trunk Relative path: Specs/5/2/4/BrazeNotificationService/5.10.1/BrazeNotificationService.podspec.json exists! Returning local because checking is only performed in repo update CDN: trunk Relative path: all_pods_versions_5_1_d.txt exists! Returning local because checking is only performed in repo update CDN: trunk Relative path: Specs/5/1/d/Adjust/4.33.4/Adjust.podspec.json exists! Returning local because checking is only performed in repo update CDN: trunk Relative path: all_pods_versions_d_d_6.txt exists! Returning local because checking is only performed in repo update CDN: trunk Relative path: Specs/d/d/6/ReachabilitySwift/5.0.0/ReachabilitySwift.podspec.json exists! Returning local because checking is only performed in repo update CDN: trunk Relative path: all_pods_versions_0_3_5.txt exists! Returning local because checking is only performed in repo update CDN: trunk Relative path: Specs/0/3/5/Firebase/10.5.0/Firebase.podspec.json exists! Returning local because checking is only performed in repo update CDN: trunk Relative path: Specs/0/3/5/Firebase/10.3.0/Firebase.podspec.json exists! Returning local because checking is only performed in repo update CDN: trunk Relative path: Specs/0/3/5/Firebase/10.3.0/Firebase.podspec.json exists! Returning local because checking is only performed in repo update CDN: trunk Relative path: all_pods_versions_6_8_6.txt exists! Returning local because checking is only performed in repo update CDN: trunk Relative path: Specs/6/8/6/OrderedSet/5.0.0/OrderedSet.podspec.json exists! Returning local because checking is only performed in repo update CDN: trunk Relative path: all_pods_versions_b_4_0.txt exists! Returning local because checking is only performed in repo update CDN: trunk Relative path: Specs/b/4/0/OneTrust-CMP-XCFramework/202302.1.0.0/OneTrust-CMP-XCFramework.podspec.json exists! Returning local because checking is only performed in repo update CDN: trunk Relative path: all_pods_versions_4_0_b.txt exists! Returning local because checking is only performed in repo update CDN: trunk Relative path: Specs/4/0/b/BrazeKit/5.10.1/BrazeKit.podspec.json exists! Returning local because checking is only performed in repo update CDN: trunk Relative path: all_pods_versions_3_a_e.txt exists! Returning local because checking is only performed in repo update CDN: trunk Relative path: Specs/3/a/e/BrazeLocation/5.10.1/BrazeLocation.podspec.json exists! Returning local because checking is only performed in repo update CDN: trunk Relative path: all_pods_versions_1_2_7.txt exists! Returning local because checking is only performed in repo update CDN: trunk Relative path: Specs/1/2/7/BrazeUI/5.10.1/BrazeUI.podspec.json exists! Returning local because checking is only performed in repo update CDN: trunk Relative path: Specs/0/3/5/Firebase/10.3.0/Firebase.podspec.json exists! Returning local because checking is only performed in repo update CDN: trunk Relative path: Specs/0/3/5/Firebase/10.3.0/Firebase.podspec.json exists! Returning local because checking is only performed in repo update CDN: trunk Relative path: all_pods_versions_8_b_d.txt exists! Returning local because checking is only performed in repo update CDN: trunk Relative path: Specs/8/b/d/FirebaseCore/10.5.0/FirebaseCore.podspec.json exists! Returning local because checking is only performed in repo update CDN: trunk Relative path: Specs/8/b/d/FirebaseCore/10.3.0/FirebaseCore.podspec.json exists! Returning local because checking is only performed in repo update CDN: trunk Relative path: all_pods_versions_0_8_4.txt exists! Returning local because checking is only performed in repo update CDN: trunk Relative path: Specs/0/8/4/GoogleUtilities/7.11.0/GoogleUtilities.podspec.json exists! Returning local because checking is only performed in repo update CDN: trunk Relative path: Specs/0/8/4/GoogleUtilities/7.10.0/GoogleUtilities.podspec.json exists! Returning local because checking is only performed in repo update CDN: trunk Relative path: Specs/0/8/4/GoogleUtilities/7.10.0/GoogleUtilities.podspec.json exists! Returning local because checking is only performed in repo update CDN: trunk Relative path: all_pods_versions_7_9_1.txt exists! Returning local because checking is only performed in repo update CDN: trunk Relative path: Specs/7/9/1/FirebaseCoreInternal/10.5.0/FirebaseCoreInternal.podspec.json exists! Returning local because checking is only performed in repo update CDN: trunk Relative path: Specs/7/9/1/FirebaseCoreInternal/10.3.0/FirebaseCoreInternal.podspec.json exists! Returning local because checking is only performed in repo update CDN: trunk Relative path: Specs/0/8/4/GoogleUtilities/7.10.0/GoogleUtilities.podspec.json exists! Returning local because checking is only performed in repo update CDN: trunk Relative path: all_pods_versions_e_5_6.txt exists! Returning local because checking is only performed in repo update CDN: trunk Relative path: Specs/e/5/6/FirebasePerformance/10.5.0/FirebasePerformance.podspec.json exists! Returning local because checking is only performed in repo update CDN: trunk Relative path: all_pods_versions_e_7_d.txt exists! Returning local because checking is only performed in repo update CDN: trunk Relative path: Specs/e/7/d/FirebaseCrashlytics/10.5.0/FirebaseCrashlytics.podspec.json exists! Returning local because checking is only performed in repo update CDN: trunk Relative path: Specs/d/d/6/ReachabilitySwift/5.0.0/ReachabilitySwift.podspec.json exists! Returning local because checking is only performed in repo update CDN: trunk Relative path: Specs/6/8/6/OrderedSet/5.0.0/OrderedSet.podspec.json exists! Returning local because checking is only performed in repo update CDN: trunk Relative path: Specs/3/a/e/BrazeLocation/5.9.1/BrazeLocation.podspec.json exists! Returning local because checking is only performed in repo update CDN: trunk Relative path: Specs/4/0/b/BrazeKit/5.9.1/BrazeKit.podspec.json exists! Returning local because checking is only performed in repo update CDN: trunk Relative path: all_pods_versions_0_b_5.txt exists! Returning local because checking is only performed in repo update CDN: trunk Relative path: Specs/0/b/5/PromisesObjC/2.2.0/PromisesObjC.podspec.json exists! Returning local because checking is only performed in repo update CDN: trunk Relative path: Specs/4/0/b/BrazeKit/5.9.1/BrazeKit.podspec.json exists! Returning local because checking is only performed in repo update CDN: trunk Relative path: Specs/5/1/d/Adjust/4.33.2/Adjust.podspec.json exists! Returning local because checking is only performed in repo update CDN: trunk Relative path: Specs/5/1/d/Adjust/4.33.2/Adjust.podspec.json exists! Returning local because checking is only performed in repo update CDN: trunk Relative path: Specs/e/7/d/FirebaseCrashlytics/10.3.0/FirebaseCrashlytics.podspec.json exists! Returning local because checking is only performed in repo update CDN: trunk Relative path: all_pods_versions_2_f_7.txt exists! Returning local because checking is only performed in repo update CDN: trunk Relative path: Specs/2/f/7/FirebaseInstallations/10.5.0/FirebaseInstallations.podspec.json exists! Returning local because checking is only performed in repo update CDN: trunk Relative path: all_pods_versions_0_6_a.txt exists! Returning local because checking is only performed in repo update CDN: trunk Relative path: Specs/0/6/a/GoogleDataTransport/9.2.1/GoogleDataTransport.podspec.json exists! Returning local because checking is only performed in repo update CDN: trunk Relative path: all_pods_versions_6_1_e.txt exists! Returning local because checking is only performed in repo update CDN: trunk Relative path: Specs/6/1/e/nanopb/2.30909.0/nanopb.podspec.json exists! Returning local because checking is only performed in repo update CDN: trunk Relative path: Specs/8/b/d/FirebaseCore/10.3.0/FirebaseCore.podspec.json exists! Returning local because checking is only performed in repo update CDN: trunk Relative path: Specs/1/2/7/BrazeUI/5.9.1/BrazeUI.podspec.json exists! Returning local because checking is only performed in repo update CDN: trunk Relative path: Specs/0/8/4/GoogleUtilities/7.10.0/GoogleUtilities.podspec.json exists! Returning local because checking is only performed in repo update CDN: trunk Relative path: Specs/2/f/7/FirebaseInstallations/10.3.0/FirebaseInstallations.podspec.json exists! Returning local because checking is only performed in repo update CDN: trunk Relative path: Specs/0/8/4/GoogleUtilities/7.10.0/GoogleUtilities.podspec.json exists! Returning local because checking is only performed in repo update CDN: trunk Relative path: Specs/0/3/5/Firebase/10.3.0/Firebase.podspec.json exists! Returning local because checking is only performed in repo update CDN: trunk Relative path: all_pods_versions_e_2_1.txt exists! Returning local because checking is only performed in repo update CDN: trunk Relative path: Specs/e/2/1/FirebaseAnalytics/10.5.0/FirebaseAnalytics.podspec.json exists! Returning local because checking is only performed in repo update CDN: trunk Relative path: Specs/0/6/a/GoogleDataTransport/9.2.0/GoogleDataTransport.podspec.json exists! Returning local because checking is only performed in repo update CDN: trunk Relative path: Specs/0/8/4/GoogleUtilities/7.10.0/GoogleUtilities.podspec.json exists! Returning local because checking is only performed in repo update CDN: trunk Relative path: Specs/0/8/4/GoogleUtilities/7.10.0/GoogleUtilities.podspec.json exists! Returning local because checking is only performed in repo update CDN: trunk Relative path: Specs/0/b/5/PromisesObjC/2.1.1/PromisesObjC.podspec.json exists! Returning local because checking is only performed in repo update CDN: trunk Relative path: Specs/b/4/0/OneTrust-CMP-XCFramework/202211.2.0.0/OneTrust-CMP-XCFramework.podspec.json exists! Returning local because checking is only performed in repo update CDN: trunk Relative path: Specs/e/2/1/FirebaseAnalytics/10.3.0/FirebaseAnalytics.podspec.json exists! Returning local because checking is only performed in repo update CDN: trunk Relative path: Specs/0/8/4/GoogleUtilities/7.10.0/GoogleUtilities.podspec.json exists! Returning local because checking is only performed in repo update CDN: trunk Relative path: Specs/0/8/4/GoogleUtilities/7.10.0/GoogleUtilities.podspec.json exists! Returning local because checking is only performed in repo update CDN: trunk Relative path: Specs/0/8/4/GoogleUtilities/7.10.0/GoogleUtilities.podspec.json exists! Returning local because checking is only performed in repo update CDN: trunk Relative path: Specs/e/2/1/FirebaseAnalytics/10.3.0/FirebaseAnalytics.podspec.json exists! Returning local because checking is only performed in repo update CDN: trunk Relative path: Specs/0/b/5/PromisesObjC/2.1.1/PromisesObjC.podspec.json exists! Returning local because checking is only performed in repo update CDN: trunk Relative path: all_pods_versions_e_3_b.txt exists! Returning local because checking is only performed in repo update CDN: trunk Relative path: Specs/e/3/b/GoogleAppMeasurement/10.5.0/GoogleAppMeasurement.podspec.json exists! Returning local because checking is only performed in repo update CDN: trunk Relative path: Specs/e/5/6/FirebasePerformance/10.3.0/FirebasePerformance.podspec.json exists! Returning local because checking is only performed in repo update CDN: trunk Relative path: all_pods_versions_f_2_a.txt exists! Returning local because checking is only performed in repo update CDN: trunk Relative path: Specs/f/2/a/FirebaseRemoteConfig/10.5.0/FirebaseRemoteConfig.podspec.json exists! Returning local because checking is only performed in repo update CDN: trunk Relative path: Specs/0/8/4/GoogleUtilities/7.10.0/GoogleUtilities.podspec.json exists! Returning local because checking is only performed in repo update CDN: trunk Relative path: Specs/e/3/b/GoogleAppMeasurement/10.3.0/GoogleAppMeasurement.podspec.json exists! Returning local because checking is only performed in repo update CDN: trunk Relative path: Specs/e/3/b/GoogleAppMeasurement/10.3.0/GoogleAppMeasurement.podspec.json exists! Returning local because checking is only performed in repo update CDN: trunk Relative path: Specs/0/8/4/GoogleUtilities/7.10.0/GoogleUtilities.podspec.json exists! Returning local because checking is only performed in repo update CDN: trunk Relative path: Specs/0/8/4/GoogleUtilities/7.10.0/GoogleUtilities.podspec.json exists! Returning local because checking is only performed in repo update CDN: trunk Relative path: Specs/6/1/e/nanopb/2.30909.0/nanopb.podspec.json exists! Returning local because checking is only performed in repo update CDN: trunk Relative path: Specs/6/1/e/nanopb/2.30909.0/nanopb.podspec.json exists! Returning local because checking is only performed in repo update CDN: trunk Relative path: Specs/6/1/e/nanopb/2.30909.0/nanopb.podspec.json exists! Returning local because checking is only performed in repo update CDN: trunk Relative path: Specs/f/2/a/FirebaseRemoteConfig/10.3.0/FirebaseRemoteConfig.podspec.json exists! Returning local because checking is only performed in repo update CDN: trunk Relative path: all_pods_versions_d_c_1.txt exists! Returning local because checking is only performed in repo update CDN: trunk Relative path: Specs/d/c/1/FirebaseABTesting/10.5.0/FirebaseABTesting.podspec.json exists! Returning local because checking is only performed in repo update CDN: trunk Relative path: Specs/d/c/1/FirebaseABTesting/10.3.0/FirebaseABTesting.podspec.json exists! Returning local because checking is only performed in repo update CDN: trunk Relative path: Specs/0/8/4/GoogleUtilities/7.10.0/GoogleUtilities.podspec.json exists! Returning local because checking is only performed in repo update CDN: trunk Relative path: Specs/e/3/b/GoogleAppMeasurement/10.3.0/GoogleAppMeasurement.podspec.json exists! Returning local because checking is only performed in repo update CDN: trunk Relative path: Specs/5/2/4/BrazeNotificationService/5.10.1/BrazeNotificationService.podspec.json exists! Returning local because checking is only performed in repo update CDN: trunk Relative path: Specs/5/2/4/BrazeNotificationService/5.10.0/BrazeNotificationService.podspec.json exists! Returning local because checking is only performed in repo update CDN: trunk Relative path: Specs/5/2/4/BrazeNotificationService/5.9.1/BrazeNotificationService.podspec.json exists! Returning local because checking is only performed in repo update CDN: trunk Relative path: Specs/5/2/4/BrazeNotificationService/5.9.0/BrazeNotificationService.podspec.json exists! Returning local because checking is only performed in repo update CDN: trunk Relative path: Specs/5/2/4/BrazeNotificationService/5.8.1/BrazeNotificationService.podspec.json exists! Returning local because checking is only performed in repo update CDN: trunk Relative path: Specs/5/2/4/BrazeNotificationService/5.8.0/BrazeNotificationService.podspec.json exists! Returning local because checking is only performed in repo update CDN: trunk Relative path: Specs/5/2/4/BrazeNotificationService/5.7.0/BrazeNotificationService.podspec.json exists! Returning local because checking is only performed in repo update CDN: trunk Relative path: Specs/5/2/4/BrazeNotificationService/5.6.4/BrazeNotificationService.podspec.json exists! Returning local because checking is only performed in repo update CDN: trunk Relative path: Specs/5/2/4/BrazeNotificationService/5.6.3/BrazeNotificationService.podspec.json exists! Returning local because checking is only performed in repo update CDN: trunk Relative path: Specs/5/2/4/BrazeNotificationService/5.6.2/BrazeNotificationService.podspec.json exists! Returning local because checking is only performed in repo update CDN: trunk Relative path: Specs/5/2/4/BrazeNotificationService/5.6.1/BrazeNotificationService.podspec.json exists! Returning local because checking is only performed in repo update CDN: trunk Relative path: Specs/5/2/4/BrazeNotificationService/5.6.0/BrazeNotificationService.podspec.json exists! Returning local because checking is only performed in repo update CDN: trunk Relative path: Specs/5/2/4/BrazeNotificationService/5.5.1/BrazeNotificationService.podspec.json exists! Returning local because checking is only performed in repo update CDN: trunk Relative path: Specs/5/2/4/BrazeNotificationService/5.5.0/BrazeNotificationService.podspec.json exists! Returning local because checking is only performed in repo update CDN: trunk Relative path: Specs/5/2/4/BrazeNotificationService/5.4.0/BrazeNotificationService.podspec.json exists! Returning local because checking is only performed in repo update CDN: trunk Relative path: Specs/5/2/4/BrazeNotificationService/5.3.2/BrazeNotificationService.podspec.json exists! Returning local because checking is only performed in repo update CDN: trunk Relative path: Specs/5/2/4/BrazeNotificationService/5.3.1/BrazeNotificationService.podspec.json exists! Returning local because checking is only performed in repo update CDN: trunk Relative path: Specs/5/2/4/BrazeNotificationService/5.3.0/BrazeNotificationService.podspec.json exists! Returning local because checking is only performed in repo update CDN: trunk Relative path: Specs/5/2/4/BrazeNotificationService/5.2.0/BrazeNotificationService.podspec.json exists! Returning local because checking is only performed in repo update CDN: trunk Relative path: Specs/5/2/4/BrazeNotificationService/5.1.0/BrazeNotificationService.podspec.json exists! Returning local because checking is only performed in repo update [!] Unable to integrate the following embedded targets with their respective host targets (a host target is a "parent" target which embeds a "child" target like a framework or extension): - Runner (true) and PushServiceExtension (false) do not both set use_frameworks!. /opt/homebrew/Cellar/cocoapods/1.11.3/libexec/gems/cocoapods-1.11.3/lib/cocoapods/installer/analyzer.rb:413:in `analyze_host_targets_in_podfile' /opt/homebrew/Cellar/cocoapods/1.11.3/libexec/gems/cocoapods-1.11.3/lib/cocoapods/installer/analyzer.rb:467:in `generate_targets' /opt/homebrew/Cellar/cocoapods/1.11.3/libexec/gems/cocoapods-1.11.3/lib/cocoapods/installer/analyzer.rb:127:in `analyze' /opt/homebrew/Cellar/cocoapods/1.11.3/libexec/gems/cocoapods-1.11.3/lib/cocoapods/installer.rb:416:in `analyze' /opt/homebrew/Cellar/cocoapods/1.11.3/libexec/gems/cocoapods-1.11.3/lib/cocoapods/installer.rb:241:in `block in resolve_dependencies' /opt/homebrew/Cellar/cocoapods/1.11.3/libexec/gems/cocoapods-1.11.3/lib/cocoapods/user_interface.rb:64:in `section' /opt/homebrew/Cellar/cocoapods/1.11.3/libexec/gems/cocoapods-1.11.3/lib/cocoapods/installer.rb:240:in `resolve_dependencies' /opt/homebrew/Cellar/cocoapods/1.11.3/libexec/gems/cocoapods-1.11.3/lib/cocoapods/installer.rb:161:in `install!' /opt/homebrew/Cellar/cocoapods/1.11.3/libexec/gems/cocoapods-1.11.3/lib/cocoapods/command/install.rb:52:in `run' /opt/homebrew/lib/ruby/gems/3.1.0/gems/claide-1.1.0/lib/claide/command.rb:334:in `run' /opt/homebrew/Cellar/cocoapods/1.11.3/libexec/gems/cocoapods-1.11.3/lib/cocoapods/command.rb:52:in `run' /opt/homebrew/Cellar/cocoapods/1.11.3/libexec/gems/cocoapods-1.11.3/bin/pod:55:in `' /opt/homebrew/Cellar/cocoapods/1.11.3/libexec/bin/pod:25:in `load' /opt/homebrew/Cellar/cocoapods/1.11.3/libexec/bin/pod:25:in `
' Error running pod install Error launching application on iPhone 14. ```

When we then use

target 'PushServiceExtension' do
  use_frameworks!

  platform :ios, '10.0'
  pod 'BrazeNotificationService'
end
another error occurs ``` Launching lib/main.dart on iPhone 14 in debug mode... Running pod install... Running Xcode build... Xcode build done. 34.4s Failed to build iOS app Error output from Xcode build: ↳ ** BUILD FAILED ** Xcode's output: ↳ Writing result bundle at path: /var/folders/lk/jvgtn55s31v2c28w2splnqh40000gn/T/flutter_tools.tF2swf/flutter_ios_build_temp_dirs4GTHq/temporary_xcresult_bundle 1 warning generated. 1 warning generated. /Users/m/.pub-cache/hosted/pub.dartlang.org/permission_handler_apple-9.0.7/ios/Classes/strategies/NotificationPermissionStrategy.m:48:7: warning: 'UIUserNotificationType' is deprecated: first deprecated in iOS 10.0 - Use UserNotifications Framework's UNAuthorizationOptions [-Wdeprecated-declarations] UIUserNotificationType notificationTypes = 0; ^ In module 'UIKit' imported from /Users/m/Projects/ayo-app/ios/Pods/Target Support Files/permission_handler_apple/permission_handler_apple-prefix.pch:2: /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator16.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIUserNotificationSettings.h:17:32: note: 'UIUserNotificationType' has been explicitly marked deprecated here typedef NS_OPTIONS(NSUInteger, UIUserNotificationType) { ^ /Users/m/.pub-cache/hosted/pub.dartlang.org/permission_handler_apple-9.0.7/ios/Classes/strategies/NotificationPermissionStrategy.m:49:28: warning: 'UIUserNotificationTypeSound' is deprecated: first deprecated in iOS 10.0 - Use UserNotifications Framework's UNAuthorizationOptions [-Wdeprecated-declarations] notificationTypes |= UIUserNotificationTypeSound; ^ In module 'UIKit' imported from /Users/m/Projects/ayo-app/ios/Pods/Target Support Files/permission_handler_apple/permission_handler_apple-prefix.pch:2: /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator16.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIUserNotificationSettings.h:17:32: note: 'UIUserNotificationType' has been explicitly marked deprecated here typedef NS_OPTIONS(NSUInteger, UIUserNotificationType) { ^ /Users/m/.pub-cache/hosted/pub.dartlang.org/permission_handler_apple-9.0.7/ios/Classes/strategies/NotificationPermissionStrategy.m:50:28: warning: 'UIUserNotificationTypeAlert' is deprecated: first deprecated in iOS 10.0 - Use UserNotifications Framework's UNAuthorizationOptions [-Wdeprecated-declarations] notificationTypes |= UIUserNotificationTypeAlert; ^ In module 'UIKit' imported from /Users/m/Projects/ayo-app/ios/Pods/Target Support Files/permission_handler_apple/permission_handler_apple-prefix.pch:2: /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator16.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIUserNotificationSettings.h:17:32: note: 'UIUserNotificationType' has been explicitly marked deprecated here typedef NS_OPTIONS(NSUInteger, UIUserNotificationType) { ^ /Users/m/.pub-cache/hosted/pub.dartlang.org/permission_handler_apple-9.0.7/ios/Classes/strategies/NotificationPermissionStrategy.m:51:28: warning: 'UIUserNotificationTypeBadge' is deprecated: first deprecated in iOS 10.0 - Use UserNotifications Framework's UNAuthorizationOptions [-Wdeprecated-declarations] notificationTypes |= UIUserNotificationTypeBadge; ^ In module 'UIKit' imported from /Users/m/Projects/ayo-app/ios/Pods/Target Support Files/permission_handler_apple/permission_handler_apple-prefix.pch:2: /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator16.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIUserNotificationSettings.h:17:32: note: 'UIUserNotificationType' has been explicitly marked deprecated here typedef NS_OPTIONS(NSUInteger, UIUserNotificationType) { ^ /Users/m/.pub-cache/hosted/pub.dartlang.org/permission_handler_apple-9.0.7/ios/Classes/strategies/NotificationPermissionStrategy.m:52:7: warning: 'UIUserNotificationSettings' is deprecated: first deprecated in iOS 10.0 - Use UserNotifications Framework's UNNotificationSettings [-Wdeprecated-declarations] UIUserNotificationSettings *settings = [UIUserNotificationSettings settingsForTypes:notificationTypes categories:nil]; ^ In module 'UIKit' imported from /Users/m/Projects/ayo-app/ios/Pods/Target Support Files/permission_handler_apple/permission_handler_apple-prefix.pch:2: /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator16.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIUserNotificationSettings.h:44:12: note: 'UIUserNotificationSettings' has been explicitly marked deprecated here @interface UIUserNotificationSettings : NSObject ^ /Users/m/.pub-cache/hosted/pub.dartlang.org/permission_handler_apple-9.0.7/ios/Classes/strategies/NotificationPermissionStrategy.m:52:74: warning: 'UIUserNotificationSettings' is deprecated: first deprecated in iOS 10.0 - Use UserNotifications Framework's UNNotificationSettings [-Wdeprecated-declarations] UIUserNotificationSettings *settings = [UIUserNotificationSettings settingsForTypes:notificationTypes categories:nil]; ^ In module 'UIKit' imported from /Users/m/Projects/ayo-app/ios/Pods/Target Support Files/permission_handler_apple/permission_handler_apple-prefix.pch:2: /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator16.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIUserNotificationSettings.h:44:12: note: 'UIUserNotificationSettings' has been explicitly marked deprecated here @interface UIUserNotificationSettings : NSObject ^ /Users/m/.pub-cache/hosted/pub.dartlang.org/permission_handler_apple-9.0.7/ios/Classes/strategies/NotificationPermissionStrategy.m:53:42: warning: 'registerUserNotificationSettings:' is deprecated: first deprecated in iOS 10.0 - Use UserNotifications Framework's -[UNUserNotificationCenter requestAuthorizationWithOptions:completionHandler:] and -[UNUserNotificationCenter setNotificationCategories:] [-Wdeprecated-declarations] [[UIApplication sharedApplication] registerUserNotificationSettings:settings]; ^ In module 'UIKit' imported from /Users/m/Projects/ayo-app/ios/Pods/Target Support Files/permission_handler_apple/permission_handler_apple-prefix.pch:2: /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator16.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIApplication.h:251:1: note: 'registerUserNotificationSettings:' has been explicitly marked deprecated here - (void)registerUserNotificationSettings:(UIUserNotificationSettings *)notificationSettings API_DEPRECATED("Use UserNotifications Framework's -[UNUserNotificationCenter requestAuthorizationWithOptions:completionHandler:] and -[UNUserNotificationCenter setNotificationCategories:]", ios(8.0, 10.0)) API_UNAVAILABLE(tvos); ^ /Users/m/.pub-cache/hosted/pub.dartlang.org/permission_handler_apple-9.0.7/ios/Classes/strategies/NotificationPermissionStrategy.m:75:5: warning: 'UIUserNotificationSettings' is deprecated: first deprecated in iOS 10.0 - Use UserNotifications Framework's UNNotificationSettings [-Wdeprecated-declarations] UIUserNotificationSettings * setting = [[UIApplication sharedApplication] currentUserNotificationSettings]; ^ In module 'UIKit' imported from /Users/m/Projects/ayo-app/ios/Pods/Target Support Files/permission_handler_apple/permission_handler_apple-prefix.pch:2: /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator16.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIUserNotificationSettings.h:44:12: note: 'UIUserNotificationSettings' has been explicitly marked deprecated here @interface UIUserNotificationSettings : NSObject ^ /Users/m/.pub-cache/hosted/pub.dartlang.org/permission_handler_apple-9.0.7/ios/Classes/strategies/NotificationPermissionStrategy.m:75:79: warning: 'currentUserNotificationSettings' is deprecated: first deprecated in iOS 10.0 - Use UserNotifications Framework's -[UNUserNotificationCenter getNotificationSettingsWithCompletionHandler:] and -[UNUserNotificationCenter getNotificationCategoriesWithCompletionHandler:] [-Wdeprecated-declarations] UIUserNotificationSettings * setting = [[UIApplication sharedApplication] currentUserNotificationSettings]; ^ In module 'UIKit' imported from /Users/m/Projects/ayo-app/ios/Pods/Target Support Files/permission_handler_apple/permission_handler_apple-prefix.pch:2: /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator16.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIApplication.h:254:70: note: property 'currentUserNotificationSettings' is declared deprecated here @property(nonatomic, readonly, nullable) UIUserNotificationSettings *currentUserNotificationSettings API_DEPRECATED("Use UserNotifications Framework's -[UNUserNotificationCenter getNotificationSettingsWithCompletionHandler:] and -[UNUserNotificationCenter getNotificationCategoriesWithCompletionHandler:]", ios(8.0, 10.0)) API_UNAVAILABLE(tvos); ^ /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator16.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIApplication.h:254:70: note: 'currentUserNotificationSettings' has been explicitly marked deprecated here /Users/m/.pub-cache/hosted/pub.dartlang.org/permission_handler_apple-9.0.7/ios/Classes/strategies/NotificationPermissionStrategy.m:76:26: warning: 'UIUserNotificationTypeNone' is deprecated: first deprecated in iOS 10.0 - Use UserNotifications Framework's UNAuthorizationOptions [-Wdeprecated-declarations] if (setting.types == UIUserNotificationTypeNone) permissionStatus = PermissionStatusDenied; ^ In module 'UIKit' imported from /Users/m/Projects/ayo-app/ios/Pods/Target Support Files/permission_handler_apple/permission_handler_apple-prefix.pch:2: /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator16.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIUserNotificationSettings.h:17:32: note: 'UIUserNotificationType' has been explicitly marked deprecated here typedef NS_OPTIONS(NSUInteger, UIUserNotificationType) { ^ 10 warnings generated. ld: warning: dylib (/Users/m/fvm/versions/3.3.9/bin/cache/artifacts/engine/ios/Flutter.xcframework/ios-arm64_x86_64-simulator/Flutter.framework/Flutter) was built for newer iOS Simulator version (11.0) than being linked (10.0) ld: warning: dylib (/Users/m/fvm/versions/3.3.9/bin/cache/artifacts/engine/ios/Flutter.xcframework/ios-arm64_x86_64-simulator/Flutter.framework/Flutter) was built for newer iOS Simulator version (11.0) than being linked (10.0) ld: warning: dylib (/Users/m/fvm/versions/3.3.9/bin/cache/artifacts/engine/ios/Flutter.xcframework/ios-arm64_x86_64-simulator/Flutter.framework/Flutter) was built for newer iOS Simulator version (11.0) than being linked (10.0) error: the following command failed with exit code 0 but produced no further output Ld /Users/m/Library/Developer/Xcode/DerivedData/Runner-ahmcbkbwjktbxbghdyhcxwqbjyld/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/store_redirect.build/Objects-normal/x86_64/Binary/store_redirect normal x86_64 (in target 'store_redirect' from project 'Pods') ld: warning: dylib (/Users/m/fvm/versions/3.3.9/bin/cache/artifacts/engine/ios/Flutter.xcframework/ios-arm64_x86_64-simulator/Flutter.framework/Flutter) was built for newer iOS Simulator version (11.0) than being linked (10.0) error: the following command failed with exit code 0 but produced no further output Ld /Users/m/Library/Developer/Xcode/DerivedData/Runner-ahmcbkbwjktbxbghdyhcxwqbjyld/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/share_plus.build/Objects-normal/x86_64/Binary/share_plus normal x86_64 (in target 'share_plus' from project 'Pods') /Users/m/.pub-cache/hosted/pub.dartlang.org/permission_handler_apple-9.0.7/ios/Classes/strategies/NotificationPermissionStrategy.m:48:7: warning: 'UIUserNotificationType' is deprecated: first deprecated in iOS 10.0 - Use UserNotifications Framework's UNAuthorizationOptions [-Wdeprecated-declarations] UIUserNotificationType notificationTypes = 0; ^ In module 'UIKit' imported from /Users/m/Projects/ayo-app/ios/Pods/Target Support Files/permission_handler_apple/permission_handler_apple-prefix.pch:2: /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator16.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIUserNotificationSettings.h:17:32: note: 'UIUserNotificationType' has been explicitly marked deprecated here typedef NS_OPTIONS(NSUInteger, UIUserNotificationType) { ^ /Users/m/.pub-cache/hosted/pub.dartlang.org/permission_handler_apple-9.0.7/ios/Classes/strategies/NotificationPermissionStrategy.m:49:28: warning: 'UIUserNotificationTypeSound' is deprecated: first deprecated in iOS 10.0 - Use UserNotifications Framework's UNAuthorizationOptions [-Wdeprecated-declarations] notificationTypes |= UIUserNotificationTypeSound; ^ In module 'UIKit' imported from /Users/m/Projects/ayo-app/ios/Pods/Target Support Files/permission_handler_apple/permission_handler_apple-prefix.pch:2: /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator16.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIUserNotificationSettings.h:17:32: note: 'UIUserNotificationType' has been explicitly marked deprecated here typedef NS_OPTIONS(NSUInteger, UIUserNotificationType) { ^ /Users/m/.pub-cache/hosted/pub.dartlang.org/permission_handler_apple-9.0.7/ios/Classes/strategies/NotificationPermissionStrategy.m:50:28: warning: 'UIUserNotificationTypeAlert' is deprecated: first deprecated in iOS 10.0 - Use UserNotifications Framework's UNAuthorizationOptions [-Wdeprecated-declarations] notificationTypes |= UIUserNotificationTypeAlert; ^ In module 'UIKit' imported from /Users/m/Projects/ayo-app/ios/Pods/Target Support Files/permission_handler_apple/permission_handler_apple-prefix.pch:2: /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator16.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIUserNotificationSettings.h:17:32: note: 'UIUserNotificationType' has been explicitly marked deprecated here typedef NS_OPTIONS(NSUInteger, UIUserNotificationType) { ^ /Users/m/.pub-cache/hosted/pub.dartlang.org/permission_handler_apple-9.0.7/ios/Classes/strategies/NotificationPermissionStrategy.m:51:28: warning: 'UIUserNotificationTypeBadge' is deprecated: first deprecated in iOS 10.0 - Use UserNotifications Framework's UNAuthorizationOptions [-Wdeprecated-declarations] notificationTypes |= UIUserNotificationTypeBadge; ^ In module 'UIKit' imported from /Users/m/Projects/ayo-app/ios/Pods/Target Support Files/permission_handler_apple/permission_handler_apple-prefix.pch:2: /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator16.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIUserNotificationSettings.h:17:32: note: 'UIUserNotificationType' has been explicitly marked deprecated here typedef NS_OPTIONS(NSUInteger, UIUserNotificationType) { ^ /Users/m/.pub-cache/hosted/pub.dartlang.org/permission_handler_apple-9.0.7/ios/Classes/strategies/NotificationPermissionStrategy.m:52:7: warning: 'UIUserNotificationSettings' is deprecated: first deprecated in iOS 10.0 - Use UserNotifications Framework's UNNotificationSettings [-Wdeprecated-declarations] UIUserNotificationSettings *settings = [UIUserNotificationSettings settingsForTypes:notificationTypes categories:nil]; ^ In module 'UIKit' imported from /Users/m/Projects/ayo-app/ios/Pods/Target Support Files/permission_handler_apple/permission_handler_apple-prefix.pch:2: /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator16.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIUserNotificationSettings.h:44:12: note: 'UIUserNotificationSettings' has been explicitly marked deprecated here @interface UIUserNotificationSettings : NSObject ^ /Users/m/.pub-cache/hosted/pub.dartlang.org/permission_handler_apple-9.0.7/ios/Classes/strategies/NotificationPermissionStrategy.m:52:74: warning: 'UIUserNotificationSettings' is deprecated: first deprecated in iOS 10.0 - Use UserNotifications Framework's UNNotificationSettings [-Wdeprecated-declarations] UIUserNotificationSettings *settings = [UIUserNotificationSettings settingsForTypes:notificationTypes categories:nil]; ^ In module 'UIKit' imported from /Users/m/Projects/ayo-app/ios/Pods/Target Support Files/permission_handler_apple/permission_handler_apple-prefix.pch:2: /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator16.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIUserNotificationSettings.h:44:12: note: 'UIUserNotificationSettings' has been explicitly marked deprecated here @interface UIUserNotificationSettings : NSObject ^ /Users/m/.pub-cache/hosted/pub.dartlang.org/permission_handler_apple-9.0.7/ios/Classes/strategies/NotificationPermissionStrategy.m:53:42: warning: 'registerUserNotificationSettings:' is deprecated: first deprecated in iOS 10.0 - Use UserNotifications Framework's -[UNUserNotificationCenter requestAuthorizationWithOptions:completionHandler:] and -[UNUserNotificationCenter setNotificationCategories:] [-Wdeprecated-declarations] [[UIApplication sharedApplication] registerUserNotificationSettings:settings]; ^ In module 'UIKit' imported from /Users/m/Projects/ayo-app/ios/Pods/Target Support Files/permission_handler_apple/permission_handler_apple-prefix.pch:2: /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator16.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIApplication.h:251:1: note: 'registerUserNotificationSettings:' has been explicitly marked deprecated here - (void)registerUserNotificationSettings:(UIUserNotificationSettings *)notificationSettings API_DEPRECATED("Use UserNotifications Framework's -[UNUserNotificationCenter requestAuthorizationWithOptions:completionHandler:] and -[UNUserNotificationCenter setNotificationCategories:]", ios(8.0, 10.0)) API_UNAVAILABLE(tvos); ^ /Users/m/.pub-cache/hosted/pub.dartlang.org/permission_handler_apple-9.0.7/ios/Classes/strategies/NotificationPermissionStrategy.m:75:5: warning: 'UIUserNotificationSettings' is deprecated: first deprecated in iOS 10.0 - Use UserNotifications Framework's UNNotificationSettings [-Wdeprecated-declarations] UIUserNotificationSettings * setting = [[UIApplication sharedApplication] currentUserNotificationSettings]; ^ In module 'UIKit' imported from /Users/m/Projects/ayo-app/ios/Pods/Target Support Files/permission_handler_apple/permission_handler_apple-prefix.pch:2: /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator16.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIUserNotificationSettings.h:44:12: note: 'UIUserNotificationSettings' has been explicitly marked deprecated here @interface UIUserNotificationSettings : NSObject ^ /Users/m/.pub-cache/hosted/pub.dartlang.org/permission_handler_apple-9.0.7/ios/Classes/strategies/NotificationPermissionStrategy.m:75:79: warning: 'currentUserNotificationSettings' is deprecated: first deprecated in iOS 10.0 - Use UserNotifications Framework's -[UNUserNotificationCenter getNotificationSettingsWithCompletionHandler:] and -[UNUserNotificationCenter getNotificationCategoriesWithCompletionHandler:] [-Wdeprecated-declarations] UIUserNotificationSettings * setting = [[UIApplication sharedApplication] currentUserNotificationSettings]; ^ In module 'UIKit' imported from /Users/m/Projects/ayo-app/ios/Pods/Target Support Files/permission_handler_apple/permission_handler_apple-prefix.pch:2: /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator16.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIApplication.h:254:70: note: property 'currentUserNotificationSettings' is declared deprecated here @property(nonatomic, readonly, nullable) UIUserNotificationSettings *currentUserNotificationSettings API_DEPRECATED("Use UserNotifications Framework's -[UNUserNotificationCenter getNotificationSettingsWithCompletionHandler:] and -[UNUserNotificationCenter getNotificationCategoriesWithCompletionHandler:]", ios(8.0, 10.0)) API_UNAVAILABLE(tvos); ^ /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator16.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIApplication.h:254:70: note: 'currentUserNotificationSettings' has been explicitly marked deprecated here /Users/m/.pub-cache/hosted/pub.dartlang.org/permission_handler_apple-9.0.7/ios/Classes/strategies/NotificationPermissionStrategy.m:76:26: warning: 'UIUserNotificationTypeNone' is deprecated: first deprecated in iOS 10.0 - Use UserNotifications Framework's UNAuthorizationOptions [-Wdeprecated-declarations] if (setting.types == UIUserNotificationTypeNone) permissionStatus = PermissionStatusDenied; ^ In module 'UIKit' imported from /Users/m/Projects/ayo-app/ios/Pods/Target Support Files/permission_handler_apple/permission_handler_apple-prefix.pch:2: /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator16.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIUserNotificationSettings.h:17:32: note: 'UIUserNotificationType' has been explicitly marked deprecated here typedef NS_OPTIONS(NSUInteger, UIUserNotificationType) { ^ 10 warnings generated. ld: warning: dylib (/Users/m/fvm/versions/3.3.9/bin/cache/artifacts/engine/ios/Flutter.xcframework/ios-arm64_x86_64-simulator/Flutter.framework/Flutter) was built for newer iOS Simulator version (11.0) than being linked (10.0) error: the following command failed with exit code 0 but produced no further output Ld /Users/m/Library/Developer/Xcode/DerivedData/Runner-ahmcbkbwjktbxbghdyhcxwqbjyld/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/path_provider_ios.build/Objects-normal/x86_64/Binary/path_provider_ios normal x86_64 (in target 'path_provider_ios' from project 'Pods') ld: warning: dylib (/Users/m/fvm/versions/3.3.9/bin/cache/artifacts/engine/ios/Flutter.xcframework/ios-arm64_x86_64-simulator/Flutter.framework/Flutter) was built for newer iOS Simulator version (11.0) than being linked (10.0) ld: warning: dylib (/Users/m/fvm/versions/3.3.9/bin/cache/artifacts/engine/ios/Flutter.xcframework/ios-arm64_x86_64-simulator/Flutter.framework/Flutter) was built for newer iOS Simulator version (11.0) than being linked (10.0) ld: warning: dylib (/Users/m/fvm/versions/3.3.9/bin/cache/artifacts/engine/ios/Flutter.xcframework/ios-arm64_x86_64-simulator/Flutter.framework/Flutter) was built for newer iOS Simulator version (11.0) than being linked (10.0) /Users/m/.pub-cache/hosted/pub.dartlang.org/flutter_inappwebview-5.7.2+2/ios/Classes/InAppBrowser/InAppBrowserWebViewController.swift:565:13: warning: setter for 'statusBarStyle' was deprecated in iOS 9.0: Use -[UIViewController preferredStatusBarStyle] UIApplication.shared.statusBarStyle = UIStatusBarStyle(rawValue: previousStatusBarStyle)! ^ /Users/m/.pub-cache/hosted/pub.dartlang.org/flutter_inappwebview-5.7.2+2/ios/Classes/Types/URLCredential.swift:14:25: warning: comparing non-optional value of type '[Any]' to 'nil' always returns true if certificates != nil { ~~~~~~~~~~~~ ^ ~~~ /Users/m/.pub-cache/hosted/pub.dartlang.org/flutter_inappwebview-5.7.2+2/ios/Classes/Util.swift:86:25: warning: 'spotlightSuggestion' was deprecated in iOS 10.0: renamed to 'WKDataDetectorTypes.lookupSuggestion' return .spotlightSuggestion ^ /Users/m/.pub-cache/hosted/pub.dartlang.org/flutter_inappwebview-5.7.2+2/ios/Classes/Util.swift:86:25: note: use 'WKDataDetectorTypes.lookupSuggestion' instead return .spotlightSuggestion ^~~~~~~~~~~~~~~~~~~ WKDataDetectorTypes.lookupSuggestion /Users/m/.pub-cache/hosted/pub.dartlang.org/flutter_inappwebview-5.7.2+2/ios/Classes/Util.swift:121:31: warning: 'spotlightSuggestion' was deprecated in iOS 10.0: renamed to 'WKDataDetectorTypes.lookupSuggestion' if type.contains(.spotlightSuggestion) { ^ /Users/m/.pub-cache/hosted/pub.dartlang.org/flutter_inappwebview-5.7.2+2/ios/Classes/Util.swift:121:31: note: use 'WKDataDetectorTypes.lookupSuggestion' instead if type.contains(.spotlightSuggestion) { ^~~~~~~~~~~~~~~~~~~ WKDataDetectorTypes.lookupSuggestion /Users/m/.pub-cache/hosted/pub.dartlang.org/flutter_inappwebview-5.7.2+2/ios/Classes/Util.swift:216:21: warning: immutable value 'j' was never used; consider replacing with '_' or removing it for j in ipv6.count...8 { ^ _ ld: warning: dylib (/Users/m/fvm/versions/3.3.9/bin/cache/artifacts/engine/ios/Flutter.xcframework/ios-arm64_x86_64-simulator/Flutter.framework/Flutter) was built for newer iOS Simulator version (11.0) than being linked (10.0) ld: warning: dylib (/Users/m/fvm/versions/3.3.9/bin/cache/artifacts/engine/ios/Flutter.xcframework/ios-arm64_x86_64-simulator/Flutter.framework/Flutter) was built for newer iOS Simulator version (11.0) than being linked (10.0) While building module 'OTPublishersHeadlessSDK' imported from /Users/m/Projects/ayo-app/build/ios/Debug-iphonesimulator/onetrust_publishers_native_cmp/onetrust_publishers_native_cmp.framework/Headers/onetrust_publishers_native_cmp-Swift.h:234: In file included from :2: /Users/m/Projects/ayo-app/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/OneTrust-CMP-XCFramework/OTPublishersHeadlessSDK.framework/Headers/OTPublishersHeadlessSDK-Swift.h:457:12: warning: parameter 'enabled' not found in the function declaration [-Wdocumentation] /// \param enabled Boolean to state if cross device sync should be enabled or not. ^~~~~~~ /Users/m/Projects/ayo-app/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/OneTrust-CMP-XCFramework/OTPublishersHeadlessSDK.framework/Headers/OTPublishersHeadlessSDK-Swift.h:457:12: note: did you mean 'syncProfile'? /// \param enabled Boolean to state if cross device sync should be enabled or not. ^~~~~~~ syncProfile /Users/m/Projects/ayo-app/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/OneTrust-CMP-XCFramework/OTPublishersHeadlessSDK.framework/Headers/OTPublishersHeadlessSDK-Swift.h:699:12: warning: parameter 'Note' not found in the function declaration [-Wdocumentation] /// \param Note Once this operation is complete, a notification will be posted with the updated legitimate interest value. ^~~~ /Users/m/Projects/ayo-app/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/OneTrust-CMP-XCFramework/OTPublishersHeadlessSDK.framework/Headers/OTPublishersHeadlessSDK-Swift.h:859:12: warning: parameter 'debugLog' not found in the function declaration [-Wdocumentation] /// \param debugLog enable write debug logs to file. Default status is false. ^~~~~~~~ /Users/m/Projects/ayo-app/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/OneTrust-CMP-XCFramework/OTPublishersHeadlessSDK.framework/Headers/OTPublishersHeadlessSDK-Swift.h:859:12: note: did you mean 'enableVerbose'? /// \param debugLog enable write debug logs to file. Default status is false. ^~~~~~~~ enableVerbose /Users/m/Projects/ayo-app/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/OneTrust-CMP-XCFramework/OTPublishersHeadlessSDK.framework/Headers/OTPublishersHeadlessSDK-Swift.h:950:12: warning: parameter 'enabled' not found in the function declaration [-Wdocumentation] /// \param enabled Boolean to state if cross device sync should be enabled or not. ^~~~~~~ /Users/m/Projects/ayo-app/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/OneTrust-CMP-XCFramework/OTPublishersHeadlessSDK.framework/Headers/OTPublishersHeadlessSDK-Swift.h:950:12: note: did you mean 'crossDeviceParams'? /// \param enabled Boolean to state if cross device sync should be enabled or not. ^~~~~~~ crossDeviceParams /Users/m/Projects/ayo-app/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/OneTrust-CMP-XCFramework/OTPublishersHeadlessSDK.framework/Headers/OTPublishersHeadlessSDK-Swift.h:954:12: warning: parameter 'enabled' not found in the function declaration [-Wdocumentation] /// \param enabled Boolean to state if profile creation should be enabled or not. ^~~~~~~ /Users/m/Projects/ayo-app/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/OneTrust-CMP-XCFramework/OTPublishersHeadlessSDK.framework/Headers/OTPublishersHeadlessSDK-Swift.h:954:12: note: did you mean 'shouldCreateProfile'? /// \param enabled Boolean to state if profile creation should be enabled or not. ^~~~~~~ shouldCreateProfile 5 warnings generated. 5 warnings generated. /* com.apple.ibtool.document.warnings */ /Users/m/.pub-cache/hosted/pub.dartlang.org/flutter_inappwebview-5.7.2+2/ios/Storyboards/WebView.storyboard:global: warning: This file is set to build for a version older than the deployment target. Functionality may be limited. [9] /Users/m/.pub-cache/hosted/pub.dartlang.org/onetrust_publishers_native_cmp-202211.2.0/ios/Classes/SwiftOneTrustPublishersNativeCmpPlugin.swift:110:57: warning: 'dataSubjectIdentifier' is deprecated: This variable will be removed in a couple of releases (6.37.0). Please use OTPublisherHeadlessSDK.shared.renameProfile(from:to:) for overrding the data subject identifier and use OTPublisherHeadlessSDK.shared.currentActiveProfile for retrieving the current active data subject/profile identifier. result(OTPublishersHeadlessSDK.shared.cache.dataSubjectIdentifier) ^ ld: warning: dylib (/Users/m/fvm/versions/3.3.9/bin/cache/artifacts/engine/ios/Flutter.xcframework/ios-arm64_x86_64-simulator/Flutter.framework/Flutter) was built for newer iOS Simulator version (11.0) than being linked (10.0) While building module 'OTPublishersHeadlessSDK' imported from /Users/m/Projects/ayo-app/build/ios/Debug-iphonesimulator/onetrust_publishers_native_cmp/onetrust_publishers_native_cmp.framework/Headers/onetrust_publishers_native_cmp-Swift.h:529: In file included from :2: /Users/m/Projects/ayo-app/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/OneTrust-CMP-XCFramework/OTPublishersHeadlessSDK.framework/Headers/OTPublishersHeadlessSDK-Swift.h:1565:12: warning: parameter 'enabled' not found in the function declaration [-Wdocumentation] /// \param enabled Boolean to state if cross device sync should be enabled or not. ^~~~~~~ /Users/m/Projects/ayo-app/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/OneTrust-CMP-XCFramework/OTPublishersHeadlessSDK.framework/Headers/OTPublishersHeadlessSDK-Swift.h:1565:12: note: did you mean 'syncProfile'? /// \param enabled Boolean to state if cross device sync should be enabled or not. ^~~~~~~ syncProfile /Users/m/Projects/ayo-app/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/OneTrust-CMP-XCFramework/OTPublishersHeadlessSDK.framework/Headers/OTPublishersHeadlessSDK-Swift.h:1807:12: warning: parameter 'Note' not found in the function declaration [-Wdocumentation] /// \param Note Once this operation is complete, a notification will be posted with the updated legitimate interest value. ^~~~ /Users/m/Projects/ayo-app/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/OneTrust-CMP-XCFramework/OTPublishersHeadlessSDK.framework/Headers/OTPublishersHeadlessSDK-Swift.h:1967:12: warning: parameter 'debugLog' not found in the function declaration [-Wdocumentation] /// \param debugLog enable write debug logs to file. Default status is false. ^~~~~~~~ /Users/m/Projects/ayo-app/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/OneTrust-CMP-XCFramework/OTPublishersHeadlessSDK.framework/Headers/OTPublishersHeadlessSDK-Swift.h:1967:12: note: did you mean 'enableVerbose'? /// \param debugLog enable write debug logs to file. Default status is false. ^~~~~~~~ enableVerbose /Users/m/Projects/ayo-app/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/OneTrust-CMP-XCFramework/OTPublishersHeadlessSDK.framework/Headers/OTPublishersHeadlessSDK-Swift.h:2058:12: warning: parameter 'enabled' not found in the function declaration [-Wdocumentation] /// \param enabled Boolean to state if cross device sync should be enabled or not. ^~~~~~~ /Users/m/Projects/ayo-app/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/OneTrust-CMP-XCFramework/OTPublishersHeadlessSDK.framework/Headers/OTPublishersHeadlessSDK-Swift.h:2058:12: note: did you mean 'crossDeviceParams'? /// \param enabled Boolean to state if cross device sync should be enabled or not. ^~~~~~~ crossDeviceParams /Users/m/Projects/ayo-app/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/OneTrust-CMP-XCFramework/OTPublishersHeadlessSDK.framework/Headers/OTPublishersHeadlessSDK-Swift.h:2062:12: warning: parameter 'enabled' not found in the function declaration [-Wdocumentation] /// \param enabled Boolean to state if profile creation should be enabled or not. ^~~~~~~ /Users/m/Projects/ayo-app/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/OneTrust-CMP-XCFramework/OTPublishersHeadlessSDK.framework/Headers/OTPublishersHeadlessSDK-Swift.h:2062:12: note: did you mean 'shouldCreateProfile'? /// \param enabled Boolean to state if profile creation should be enabled or not. ^~~~~~~ shouldCreateProfile 5 warnings generated. 5 warnings generated. /Users/m/.pub-cache/hosted/pub.dartlang.org/onetrust_publishers_native_cmp-202211.2.0/ios/Classes/SwiftOneTrustPublishersNativeCmpPlugin.swift:110:57: warning: 'dataSubjectIdentifier' is deprecated: This variable will be removed in a couple of releases (6.37.0). Please use OTPublisherHeadlessSDK.shared.renameProfile(from:to:) for overrding the data subject identifier and use OTPublisherHeadlessSDK.shared.currentActiveProfile for retrieving the current active data subject/profile identifier. result(OTPublishersHeadlessSDK.shared.cache.dataSubjectIdentifier) ^ /Users/m/.pub-cache/hosted/pub.dartlang.org/flutter_inappwebview-5.7.2+2/ios/Classes/Types/URLCredential.swift:14:25: warning: comparing non-optional value of type '[Any]' to 'nil' always returns true if certificates != nil { ~~~~~~~~~~~~ ^ ~~~ /Users/m/.pub-cache/hosted/pub.dartlang.org/flutter_inappwebview-5.7.2+2/ios/Classes/Util.swift:86:25: warning: 'spotlightSuggestion' was deprecated in iOS 10.0: renamed to 'WKDataDetectorTypes.lookupSuggestion' return .spotlightSuggestion ^ /Users/m/.pub-cache/hosted/pub.dartlang.org/flutter_inappwebview-5.7.2+2/ios/Classes/Util.swift:86:25: note: use 'WKDataDetectorTypes.lookupSuggestion' instead return .spotlightSuggestion ^~~~~~~~~~~~~~~~~~~ WKDataDetectorTypes.lookupSuggestion /Users/m/.pub-cache/hosted/pub.dartlang.org/flutter_inappwebview-5.7.2+2/ios/Classes/Util.swift:121:31: warning: 'spotlightSuggestion' was deprecated in iOS 10.0: renamed to 'WKDataDetectorTypes.lookupSuggestion' if type.contains(.spotlightSuggestion) { ^ /Users/m/.pub-cache/hosted/pub.dartlang.org/flutter_inappwebview-5.7.2+2/ios/Classes/Util.swift:121:31: note: use 'WKDataDetectorTypes.lookupSuggestion' instead if type.contains(.spotlightSuggestion) { ^~~~~~~~~~~~~~~~~~~ WKDataDetectorTypes.lookupSuggestion /Users/m/.pub-cache/hosted/pub.dartlang.org/flutter_inappwebview-5.7.2+2/ios/Classes/Util.swift:216:21: warning: immutable value 'j' was never used; consider replacing with '_' or removing it for j in ipv6.count...8 { ^ _ /Users/m/.pub-cache/hosted/pub.dartlang.org/flutter_inappwebview-5.7.2+2/ios/Classes/InAppBrowser/InAppBrowserWebViewController.swift:565:13: warning: setter for 'statusBarStyle' was deprecated in iOS 9.0: Use -[UIViewController preferredStatusBarStyle] UIApplication.shared.statusBarStyle = UIStatusBarStyle(rawValue: previousStatusBarStyle)! ^ ld: warning: dylib (/Users/m/fvm/versions/3.3.9/bin/cache/artifacts/engine/ios/Flutter.xcframework/ios-arm64_x86_64-simulator/Flutter.framework/Flutter) was built for newer iOS Simulator version (11.0) than being linked (10.0) ld: warning: dylib (/Users/m/fvm/versions/3.3.9/bin/cache/artifacts/engine/ios/Flutter.xcframework/ios-arm64_x86_64-simulator/Flutter.framework/Flutter) was built for newer iOS Simulator version (11.0) than being linked (10.0) duplicate symbol '_$s11_BrazeUtils10StringPathV4pathSSvM' in: /Users/m/Projects/ayo-app/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/BrazeKit/BrazeKit.framework/BrazeKit(BrazeKit-arm64-master.o) /Users/m/Projects/ayo-app/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/BrazeNotificationService/BrazeNotificationService.framework/BrazeNotificationService(BrazeNotificationService-arm64-master.o) duplicate symbol '_$s11_BrazeUtils10StringPathV4pathSSvg' in: /Users/m/Projects/ayo-app/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/BrazeKit/BrazeKit.framework/BrazeKit(BrazeKit-arm64-master.o) /Users/m/Projects/ayo-app/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/BrazeNotificationService/BrazeNotificationService.framework/BrazeNotificationService(BrazeNotificationService-arm64-master.o) duplicate symbol '_$s11_BrazeUtils10StringPathV4pathSSvpMV' in: /Users/m/Projects/ayo-app/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/BrazeKit/BrazeKit.framework/BrazeKit(BrazeKit-arm64-master.o) /Users/m/Projects/ayo-app/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/BrazeNotificationService/BrazeNotificationService.framework/BrazeNotificationService(BrazeNotificationService-arm64-master.o) duplicate symbol '_$s11_BrazeUtils10StringPathV4pathSSvs' in: /Users/m/Projects/ayo-app/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/BrazeKit/BrazeKit.framework/BrazeKit(BrazeKit-arm64-master.o) /Users/m/Projects/ayo-app/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/BrazeNotificationService/BrazeNotificationService.framework/BrazeNotificationService(BrazeNotificationService-arm64-master.o) duplicate symbol '_$s11_BrazeUtils10StringPathV8rawValueACSS_tcfC' in: /Users/m/Projects/ayo-app/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/BrazeKit/BrazeKit.framework/BrazeKit(BrazeKit-arm64-master.o) /Users/m/Projects/ayo-app/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/BrazeNotificationService/BrazeNotificationService.framework/BrazeNotificationService(BrazeNotificationService-arm64-master.o) duplicate symbol '_$s11_BrazeUtils10StringPathV8rawValueSSvg' in: /Users/m/Projects/ayo-app/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/BrazeKit/BrazeKit.framework/BrazeKit(BrazeKit-arm64-master.o) /Users/m/Projects/ayo-app/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/BrazeNotificationService/BrazeNotificationService.framework/BrazeNotificationService(BrazeNotificationService-arm64-master.o) duplicate symbol '_$s11_BrazeUtils10StringPathV8rawValueSSvpMV' in: /Users/m/Projects/ayo-app/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/BrazeKit/BrazeKit.framework/BrazeKit(BrazeKit-arm64-master.o) /Users/m/Projects/ayo-app/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/BrazeNotificationService/BrazeNotificationService.framework/BrazeNotificationService(BrazeNotificationService-arm64-master.o) duplicate symbol '_$s11_BrazeUtils10StringPathVMa' in: /Users/m/Projects/ayo-app/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/BrazeKit/BrazeKit.framework/BrazeKit(BrazeKit-arm64-master.o) /Users/m/Projects/ayo-app/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/BrazeNotificationService/BrazeNotificationService.framework/BrazeNotificationService(BrazeNotificationService-arm64-master.o) duplicate symbol '_$s11_BrazeUtils10StringPathVMn' in: /Users/m/Projects/ayo-app/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/BrazeKit/BrazeKit.framework/BrazeKit(BrazeKit-arm64-master.o) /Users/m/Projects/ayo-app/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/BrazeNotificationService/BrazeNotificationService.framework/BrazeNotificationService(BrazeNotificationService-arm64-master.o) duplicate symbol '_$s11_BrazeUtils10StringPathVN' in: /Users/m/Projects/ayo-app/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/BrazeKit/BrazeKit.framework/BrazeKit(BrazeKit-arm64-master.o) /Users/m/Projects/ayo-app/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/BrazeNotificationService/BrazeNotificationService.framework/BrazeNotificationService(BrazeNotificationService-arm64-master.o) duplicate symbol '_$s11_BrazeUtils10StringPathVSYAAMc' in: /Users/m/Projects/ayo-app/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/BrazeKit/BrazeKit.framework/BrazeKit(BrazeKit-arm64-master.o) /Users/m/Projects/ayo-app/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/BrazeNotificationService/BrazeNotificationService.framework/BrazeNotificationService(BrazeNotificationService-arm64-master.o) duplicate symbol '_$s18_BrazeAssetsClient0bC0V11FetchPolicyO13cacheElseLoadyA2EmFWC' in: /Users/m/Projects/ayo-app/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/BrazeKit/BrazeKit.framework/BrazeKit(BrazeKit-arm64-master.o) /Users/m/Projects/ayo-app/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/BrazeNotificationService/BrazeNotificationService.framework/BrazeNotificationService(BrazeNotificationService-arm64-master.o) duplicate symbol '_$s18_BrazeAssetsClient0bC0V11FetchPolicyO2eeoiySbAE_AEtFZ' in: /Users/m/Projects/ayo-app/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/BrazeKit/BrazeKit.framework/BrazeKit(BrazeKit-arm64-master.o) /Users/m/Projects/ayo-app/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/BrazeNotificationService/BrazeNotificationService.framework/BrazeNotificationService(BrazeNotificationService-arm64-master.o) duplicate symbol '_$s18_BrazeAssetsClient0bC0V11FetchPolicyO4hash4intoys6HasherVz_tF' in: /Users/m/Projects/ayo-app/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/BrazeKit/BrazeKit.framework/BrazeKit(BrazeKit-arm64-master.o) /Users/m/Projects/ayo-app/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/BrazeNotificationService/BrazeNotificationService.framework/BrazeNotificationService(BrazeNotificationService-arm64-master.o) duplicate symbol '_$s18_BrazeAssetsClient0bC0V11FetchPolicyO6policySo017NSURLRequestCacheE0Vvg' in: /Users/m/Projects/ayo-app/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/BrazeKit/BrazeKit.framework/BrazeKit(BrazeKit-arm64-master.o) /Users/m/Projects/ayo-app/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/BrazeNotificationService/BrazeNotificationService.framework/BrazeNotificationService(BrazeNotificationService-arm64-master.o) duplicate symbol '_$s18_BrazeAssetsClient0bC0V11FetchPolicyO6policySo017NSURLRequestCacheE0VvpMV' in: /Users/m/Projects/ayo-app/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/BrazeKit/BrazeKit.framework/BrazeKit(BrazeKit-arm64-master.o) /Users/m/Projects/ayo-app/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/BrazeNotificationService/BrazeNotificationService.framework/BrazeNotificationService(BrazeNotificationService-arm64-master.o) duplicate symbol '_$s18_BrazeAssetsClient0bC0V11FetchPolicyO8standardyA2EmFWC' in: /Users/m/Projects/ayo-app/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/BrazeKit/BrazeKit.framework/BrazeKit(BrazeKit-arm64-master.o) /Users/m/Projects/ayo-app/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/BrazeNotificationService/BrazeNotificationService.framework/BrazeNotificationService(BrazeNotificationService-arm64-master.o) duplicate symbol '_$s18_BrazeAssetsClient0bC0V11FetchPolicyO9cacheOnlyyA2EmFWC' in: /Users/m/Projects/ayo-app/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/BrazeKit/BrazeKit.framework/BrazeKit(BrazeKit-arm64-master.o) /Users/m/Projects/ayo-app/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/BrazeNotificationService/BrazeNotificationService.framework/BrazeNotificationService(BrazeNotificationService-arm64-master.o) duplicate symbol '_$s18_BrazeAssetsClient0bC0V11FetchPolicyO9hashValueSivg' in: /Users/m/Projects/ayo-app/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/BrazeKit/BrazeKit.framework/BrazeKit(BrazeKit-arm64-master.o) /Users/m/Projects/ayo-app/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/BrazeNotificationService/BrazeNotificationService.framework/BrazeNotificationService(BrazeNotificationService-arm64-master.o) duplicate symbol '_$s18_BrazeAssetsClient0bC0V11FetchPolicyO9hashValueSivpMV' in: /Users/m/Projects/ayo-app/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/BrazeKit/BrazeKit.framework/BrazeKit(BrazeKit-arm64-master.o) /Users/m/Projects/ayo-app/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/BrazeNotificationService/BrazeNotificationService.framework/BrazeNotificationService(BrazeNotificationService-arm64-master.o) duplicate symbol '_$s18_BrazeAssetsClient0bC0V11FetchPolicyOMa' in: /Users/m/Projects/ayo-app/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/BrazeKit/BrazeKit.framework/BrazeKit(BrazeKit-arm64-master.o) /Users/m/Projects/ayo-app/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/BrazeNotificationService/BrazeNotificationService.framework/BrazeNotificationService(BrazeNotificationService-arm64-master.o) duplicate symbol '_$s18_BrazeAssetsClient0bC0V11FetchPolicyOMn' in: /Users/m/Projects/ayo-app/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/BrazeKit/BrazeKit.framework/BrazeKit(BrazeKit-arm64-master.o) /Users/m/Projects/ayo-app/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/BrazeNotificationService/BrazeNotificationService.framework/BrazeNotificationService(BrazeNotificationService-arm64-master.o) duplicate symbol '_$s18_BrazeAssetsClient0bC0V11FetchPolicyON' in: /Users/m/Projects/ayo-app/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/BrazeKit/BrazeKit.framework/BrazeKit(BrazeKit-arm64-master.o) /Users/m/Projects/ayo-app/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/BrazeNotificationService/BrazeNotificationService.framework/BrazeNotificationService(BrazeNotificationService-arm64-master.o) duplicate symbol '_$s18_BrazeAssetsClient0bC0V11FetchPolicyOSHAAMc' in: /Users/m/Projects/ayo-app/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/BrazeKit/BrazeKit.framework/BrazeKit(BrazeKit-arm64-master.o) /Users/m/Projects/ayo-app/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/BrazeNotificationService/BrazeNotificationService.framework/BrazeNotificationService(BrazeNotificationService-arm64-master.o) duplicate symbol '_$s18_BrazeAssetsClient0bC0V11FetchPolicyOSQAAMc' in: /Users/m/Projects/ayo-app/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/BrazeKit/BrazeKit.framework/BrazeKit(BrazeKit-arm64-master.o) /Users/m/Projects/ayo-app/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/BrazeNotificationService/BrazeNotificationService.framework/BrazeNotificationService(BrazeNotificationService-arm64-master.o) duplicate symbol '_$s18_BrazeAssetsClient0bC0V4LiveC11resultQueueSo17OS_dispatch_queueCvg' in: /Users/m/Projects/ayo-app/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/BrazeKit/BrazeKit.framework/BrazeKit(BrazeKit-arm64-master.o) /Users/m/Projects/ayo-app/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/BrazeNotificationService/BrazeNotificationService.framework/BrazeNotificationService(BrazeNotificationService-arm64-master.o) duplicate symbol '_$s18_BrazeAssetsClient0bC0V4LiveC11resultQueueSo17OS_dispatch_queueCvpMV' in: /Users/m/Projects/ayo-app/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/BrazeKit/BrazeKit.framework/BrazeKit(BrazeKit-arm64-master.o) /Users/m/Projects/ayo-app/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/BrazeNotificationService/BrazeNotificationService.framework/BrazeNotificationService(BrazeNotificationService-arm64-master.o) duplicate symbol '_$s18_BrazeAssetsClient0bC0V4LiveC11resultQueueSo17OS_dispatch_queueCvpWvd' in: /Users/m/Projects/ayo-app/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/BrazeKit/BrazeKit.framework/BrazeKit(BrazeKit-arm64-master.o) /Users/m/Projects/ayo-app/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/BrazeNotificationService/BrazeNotificationService.framework/BrazeNotificationService(BrazeNotificationService-arm64-master.o) duplicate symbol '_$s18_BrazeAssetsClient0bC0V4LiveC12createCancel33_E074D3CC2BD38A1FB40D882E711C5600LL3key2idyycAE7TaskKeyV_10Foundation4UUIDVtF' in: /Users/m/Projects/ayo-app/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/BrazeKit/BrazeKit.framework/BrazeKit(BrazeKit-arm64-master.o) /Users/m/Projects/ayo-app/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/BrazeNotificationService/BrazeNotificationService.framework/BrazeNotificationService(BrazeNotificationService-arm64-master.o) duplicate symbol '_$s18_BrazeAssetsClient0bC0V4LiveC4lockSo15NSRecursiveLockCvg' in: /Users/m/Projects/ayo-app/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/BrazeKit/BrazeKit.framework/BrazeKit(BrazeKit-arm64-master.o) /Users/m/Projects/ayo-app/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/BrazeNotificationService/BrazeNotificationService.framework/BrazeNotificationService(BrazeNotificationService-arm64-master.o) duplicate symbol '_$s18_BrazeAssetsClient0bC0V4LiveC4lockSo15NSRecursiveLockCvpMV' in: /Users/m/Projects/ayo-app/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/BrazeKit/BrazeKit.framework/BrazeKit(BrazeKit-arm64-master.o) /Users/m/Projects/ayo-app/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/BrazeNotificationService/BrazeNotificationService.framework/BrazeNotificationService(BrazeNotificationService-arm64-master.o) duplicate symbol '_$s18_BrazeAssetsClient0bC0V4LiveC4lockSo15NSRecursiveLockCvpWvd' in: /Users/m/Projects/ayo-app/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/BrazeKit/BrazeKit.framework/BrazeKit(BrazeKit-arm64-master.o) /Users/m/Projects/ayo-app/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/BrazeNotificationService/BrazeNotificationService.framework/BrazeNotificationService(BrazeNotificationService-arm64-master.o) duplicate symbol '_$s18_BrazeAssetsClient0bC0V4LiveC6remove3urly10Foundation3URLV_tF' in: /Users/m/Projects/ayo-app/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/BrazeKit/BrazeKit.framework/BrazeKit(BrazeKit-arm64-master.o) /Users/m/Projects/ayo-app/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/BrazeNotificationService/BrazeNotificationService.framework/BrazeNotificationService(BrazeNotificationService-arm64-master.o) duplicate symbol '_$s18_BrazeAssetsClient0bC0V4LiveC6remove3urly10Foundation3URLV_tFTq' in: /Users/m/Projects/ayo-app/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/BrazeKit/BrazeKit.framework/BrazeKit(BrazeKit-arm64-master.o) /Users/m/Projects/ayo-app/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/BrazeNotificationService/BrazeNotificationService.framework/BrazeNotificationService(BrazeNotificationService-arm64-master.o) duplicate symbol '_$s18_BrazeAssetsClient0bC0V4LiveC7TaskKeyV11fetchPolicyAC05FetchH0OvM' in: /Users/m/Projects/ayo-app/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/BrazeKit/BrazeKit.framework/BrazeKit(BrazeKit-arm64-master.o) /Users/m/Projects/ayo-app/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/BrazeNotificationService/BrazeNotificationService.framework/BrazeNotificationService(BrazeNotificationService-arm64-master.o) duplicate symbol '_$s18_BrazeAssetsClient0bC0V4LiveC7TaskKeyV11fetchPolicyAC05FetchH0Ovg' in: /Users/m/Projects/ayo-app/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/BrazeKit/BrazeKit.framework/BrazeKit(BrazeKit-arm64-master.o) /Users/m/Projects/ayo-app/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/BrazeNotificationService/BrazeNotificationService.framework/BrazeNotificationService(BrazeNotificationService-arm64-master.o) duplicate symbol '_$s18_BrazeAssetsClient0bC0V4LiveC7TaskKeyV11fetchPolicyAC05FetchH0OvpMV' in: /Users/m/Projects/ayo-app/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/BrazeKit/BrazeKit.framework/BrazeKit(BrazeKit-arm64-master.o) /Users/m/Projects/ayo-app/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/BrazeNotificationService/BrazeNotificationService.framework/BrazeNotificationService(BrazeNotificationService-arm64-master.o) duplicate symbol '_$s18_BrazeAssetsClient0bC0V4LiveC7TaskKeyV11fetchPolicyAC05FetchH0Ovs' in: /Users/m/Projects/ayo-app/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/BrazeKit/BrazeKit.framework/BrazeKit(BrazeKit-arm64-master.o) /Users/m/Projects/ayo-app/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/BrazeNotificationService/BrazeNotificationService.framework/BrazeNotificationService(BrazeNotificationService-arm64-master.o) duplicate symbol '_$s18_BrazeAssetsClient0bC0V4LiveC7TaskKeyV2eeoiySbAG_AGtFZ' in: /Users/m/Projects/ayo-app/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/BrazeKit/BrazeKit.framework/BrazeKit(BrazeKit-arm64-master.o) /Users/m/Projects/ayo-app/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/BrazeNotificationService/BrazeNotificationService.framework/BrazeNotificationService(BrazeNotificationService-arm64-master.o) duplicate symbol '_$s18_BrazeAssetsClient0bC0V4LiveC7TaskKeyV3url10Foundation3URLVvM' in: /Users/m/Projects/ayo-app/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/BrazeKit/BrazeKit.framework/BrazeKit(BrazeKit-arm64-master.o) /Users/m/Projects/ayo-app/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/BrazeNotificationService/BrazeNotificationService.framework/BrazeNotificationService(BrazeNotificationService-arm64-master.o) duplicate symbol '_$s18_BrazeAssetsClient0bC0V4LiveC7TaskKeyV3url10Foundation3URLVvg' in: /Users/m/Projects/ayo-app/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/BrazeKit/BrazeKit.framework/BrazeKit(BrazeKit-arm64-master.o) /Users/m/Projects/ayo-app/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/BrazeNotificationService/BrazeNotificationService.framework/BrazeNotificationService(BrazeNotificationService-arm64-master.o) duplicate symbol '_$s18_BrazeAssetsClient0bC0V4LiveC7TaskKeyV3url10Foundation3URLVvpMV' in: /Users/m/Projects/ayo-app/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/BrazeKit/BrazeKit.framework/BrazeKit(BrazeKit-arm64-master.o) /Users/m/Projects/ayo-app/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/BrazeNotificationService/BrazeNotificationService.framework/BrazeNotificationService(BrazeNotificationService-arm64-master.o) duplicate symbol '_$s18_BrazeAssetsClient0bC0V4LiveC7TaskKeyV3url10Foundation3URLVvs' in: /Users/m/Projects/ayo-app/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/BrazeKit/BrazeKit.framework/BrazeKit(BrazeKit-arm64-master.o) /Users/m/Projects/ayo-app/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/BrazeNotificationService/BrazeNotificationService.framework/BrazeNotificationService(BrazeNotificationService-arm64-master.o) duplicate symbol '_$s18_BrazeAssetsClient0bC0V4LiveC7TaskKeyV3url11fetchPolicyAG10Foundation3URLV_AC05FetchI0OtcfC' in: /Users/m/Projects/ayo-app/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/BrazeKit/BrazeKit.framework/BrazeKit(BrazeKit-arm64-master.o) /Users/m/Projects/ayo-app/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/BrazeNotificationService/BrazeNotificationService.framework/BrazeNotificationService(BrazeNotificationService-arm64-master.o) duplicate symbol '_$s18_BrazeAssetsClient0bC0V4LiveC7TaskKeyV4hash4intoys6HasherVz_tF' in: /Users/m/Projects/ayo-app/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/BrazeKit/BrazeKit.framework/BrazeKit(BrazeKit-arm64-master.o) /Users/m/Projects/ayo-app/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/BrazeNotificationService/BrazeNotificationService.framework/BrazeNotificationService(BrazeNotificationService-arm64-master.o) duplicate symbol '_$s18_BrazeAssetsClient0bC0V4LiveC7TaskKeyV9hashValueSivg' in: /Users/m/Projects/ayo-app/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/BrazeKit/BrazeKit.framework/BrazeKit(BrazeKit-arm64-master.o) /Users/m/Projects/ayo-app/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/BrazeNotificationService/BrazeNotificationService.framework/BrazeNotificationService(BrazeNotificationService-arm64-master.o) duplicate symbol '_$s18_BrazeAssetsClient0bC0V4LiveC7TaskKeyV9hashValueSivpMV' in: /Users/m/Projects/ayo-app/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/BrazeKit/BrazeKit.framework/BrazeKit(BrazeKit-arm64-master.o) /Users/m/Projects/ayo-app/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/BrazeNotificationService/BrazeNotificationService.framework/BrazeNotificationService(BrazeNotificationService-arm64-master.o) duplicate symbol '_$s18_BrazeAssetsClient0bC0V4LiveC7TaskKeyVMa' in: /Users/m/Projects/ayo-app/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/BrazeKit/BrazeKit.framework/BrazeKit(BrazeKit-arm64-master.o) /Users/m/Projects/ayo-app/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/BrazeNotificationService/BrazeNotificationService.framework/BrazeNotificationService(BrazeNotificationService-arm64-master.o) duplicate symbol '_$s18_BrazeAssetsClient0bC0V4LiveC7TaskKeyVMn' in: /Users/m/Projects/ayo-app/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/BrazeKit/BrazeKit.framework/BrazeKit(BrazeKit-arm64-master.o) /Users/m/Projects/ayo-app/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/BrazeNotificationService/BrazeNotificationService.framework/BrazeNotificationService(BrazeNotificationService-arm64-master.o) duplicate symbol '_$s18_BrazeAssetsClient0bC0V4LiveC7TaskKeyVN' in: /Users/m/Projects/ayo-app/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/BrazeKit/BrazeKit.framework/BrazeKit(BrazeKit-arm64-master.o) /Users/m/Projects/ayo-app/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/BrazeNotificationService/BrazeNotificationService.framework/BrazeNotificationService(BrazeNotificationService-arm64-master.o) duplicate symbol '_$s18_BrazeAssetsClient0bC0V4LiveC7TaskKeyVSHAAMc' in: /Users/m/Projects/ayo-app/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/BrazeKit/BrazeKit.framework/BrazeKit(BrazeKit-arm64-master.o) /Users/m/Projects/ayo-app/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/BrazeNotificationService/BrazeNotificationService.framework/BrazeNotificationService(BrazeNotificationService-arm64-master.o) duplicate symbol '_$s18_BrazeAssetsClient0bC0V4LiveC7TaskKeyVSQAAMc' in: /Users/m/Projects/ayo-app/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/BrazeKit/BrazeKit.framework/BrazeKit(BrazeKit-arm64-master.o) /Users/m/Projects/ayo-app/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/BrazeNotificationService/BrazeNotificationService.framework/BrazeNotificationService(BrazeNotificationService-arm64-master.o) duplicate symbol '_$s18_BrazeAssetsClient0bC0V4LiveC7getData3url8priority11fetchPolicy10completionyyc10Foundation3URLV_AC8PriorityOAC05FetchJ0Oys6ResultOyAK0F0Vs5Error_pGctF' in: /Users/m/Projects/ayo-app/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/BrazeKit/BrazeKit.framework/BrazeKit(BrazeKit-arm64-master.o) /Users/m/Projects/ayo-app/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/BrazeNotificationService/BrazeNotificationService.framework/BrazeNotificationService(BrazeNotificationService-arm64-master.o) duplicate symbol '_$s18_BrazeAssetsClient0bC0V4LiveC7getData3url8priority11fetchPolicy10completionyyc10Foundation3URLV_AC8PriorityOAC05FetchJ0Oys6ResultOyAK0F0Vs5Error_pGctFTq' in: /Users/m/Projects/ayo-app/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/BrazeKit/BrazeKit.framework/BrazeKit(BrazeKit-arm64-master.o) /Users/m/Projects/ayo-app/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/BrazeNotificationService/BrazeNotificationService.framework/BrazeNotificationService(BrazeNotificationService-arm64-master.o) duplicate symbol '_$s18_BrazeAssetsClient0bC0V4LiveC7getData3url8priority11fetchPolicy10completionyyc10Foundation3URLV_AC8PriorityOAC05FetchJ0Oys6ResultOyAK0F0Vs5Error_pGctFfA0_' in: /Users/m/Projects/ayo-app/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/BrazeKit/BrazeKit.framework/BrazeKit(BrazeKit-arm64-master.o) /Users/m/Projects/ayo-app/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/BrazeNotificationService/BrazeNotificationService.framework/BrazeNotificationService(BrazeNotificationService-arm64-master.o) duplicate symbol '_$s18_BrazeAssetsClient0bC0V4LiveC7getData3url8priority11fetchPolicy10completionyyc10Foundation3URLV_AC8PriorityOAC05FetchJ0Oys6ResultOyAK0F0Vs5Error_pGctFfA1_' in: /Users/m/Projects/ayo-app/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/BrazeKit/BrazeKit.framework/BrazeKit(BrazeKit-arm64-master.o) /Users/m/Projects/ayo-app/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/BrazeNotificationService/BrazeNotificationService.framework/BrazeNotificationService(BrazeNotificationService-arm64-master.o) duplicate symbol '_$s18_BrazeAssetsClient0bC0V4LiveC7getFile3url14destinationURL8priority11fetchPolicy10completionyyc10Foundation0I0V_AnC8PriorityOAC05FetchL0Oys6ResultOyANs5Error_pGctF' in: /Users/m/Projects/ayo-app/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/BrazeKit/BrazeKit.framework/BrazeKit(BrazeKit-arm64-master.o) /Users/m/Projects/ayo-app/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/BrazeNotificationService/BrazeNotificationService.framework/BrazeNotificationService(BrazeNotificationService-arm64-master.o) duplicate symbol '_$s18_BrazeAssetsClient0bC0V4LiveC7getFile3url14destinationURL8priority11fetchPolicy10completionyyc10Foundation0I0V_AnC8PriorityOAC05FetchL0Oys6ResultOyANs5Error_pGctFTq' in: /Users/m/Projects/ayo-app/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/BrazeKit/BrazeKit.framework/BrazeKit(BrazeKit-arm64-master.o) /Users/m/Projects/ayo-app/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/BrazeNotificationService/BrazeNotificationService.framework/BrazeNotificationService(BrazeNotificationService-arm64-master.o) duplicate symbol '_$s18_BrazeAssetsClient0bC0V4LiveC7getFile3url14destinationURL8priority11fetchPolicy10completionyyc10Foundation0I0V_AnC8PriorityOAC05FetchL0Oys6ResultOyANs5Error_pGctFfA1_' in: /Users/m/Projects/ayo-app/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/BrazeKit/BrazeKit.framework/BrazeKit(BrazeKit-arm64-master.o) /Users/m/Projects/ayo-app/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/BrazeNotificationService/BrazeNotificationService.framework/BrazeNotificationService(BrazeNotificationService-arm64-master.o) duplicate symbol '_$s18_BrazeAssetsClient0bC0V4LiveC7getFile3url14destinationURL8priority11fetchPolicy10completionyyc10Foundation0I0V_AnC8PriorityOAC05FetchL0Oys6ResultOyANs5Error_pGctFfA2_' in: /Users/m/Projects/ayo-app/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/BrazeKit/BrazeKit.framework/BrazeKit(BrazeKit-arm64-master.o) /Users/m/Projects/ayo-app/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/BrazeNotificationService/BrazeNotificationService.framework/BrazeNotificationService(BrazeNotificationService-arm64-master.o) duplicate symbol '_$s18_BrazeAssetsClient0bC0V4LiveC7session11resultQueueAESo12NSURLSessionC_So17OS_dispatch_queueCtcfC' in: /Users/m/Projects/ayo-app/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/BrazeKit/BrazeKit.framework/BrazeKit(BrazeKit-arm64-master.o) /Users/m/Projects/ayo-app/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/BrazeNotificationService/BrazeNotificationService.framework/BrazeNotificationService(BrazeNotificationService-arm64-master.o) duplicate symbol '_$s18_BrazeAssetsClient0bC0V4LiveC7session11resultQueueAESo12NSURLSessionC_So17OS_dispatch_queueCtcfCTq' in: /Users/m/Projects/ayo-app/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/BrazeKit/BrazeKit.framework/BrazeKit(BrazeKit-arm64-master.o) /Users/m/Projects/ayo-app/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/BrazeNotificationService/BrazeNotificationService.framework/BrazeNotificationService(BrazeNotificationService-arm64-master.o) duplicate symbol '_$s18_BrazeAssetsClient0bC0V4LiveC7session11resultQueueAESo12NSURLSessionC_So17OS_dispatch_queueCtcfc' in: /Users/m/Projects/ayo-app/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/BrazeKit/BrazeKit.framework/BrazeKit(BrazeKit-arm64-master.o) /Users/m/Projects/ayo-app/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/BrazeNotificationService/BrazeNotificationService.framework/BrazeNotificationService(BrazeNotificationService-arm64-master.o) duplicate symbol '_$s18_BrazeAssetsClient0bC0V4LiveC7sessionSo12NSURLSessionCvg' in: /Users/m/Projects/ayo-app/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/BrazeKit/BrazeKit.framework/BrazeKit(BrazeKit-arm64-master.o) /Users/m/Projects/ayo-app/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/BrazeNotificationService/BrazeNotificationService.framework/BrazeNotificationService(BrazeNotificationService-arm64-master.o) duplicate symbol '_$s18_BrazeAssetsClient0bC0V4LiveC7sessionSo12NSURLSessionCvpMV' in: /Users/m/Projects/ayo-app/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/BrazeKit/BrazeKit.framework/BrazeKit(BrazeKit-arm64-master.o) /Users/m/Projects/ayo-app/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/BrazeNotificationService/BrazeNotificationService.framework/BrazeNotificationService(BrazeNotificationService-arm64-master.o) duplicate symbol '_$s18_BrazeAssetsClient0bC0V4LiveC7sessionSo12NSURLSessionCvpWvd' in: /Users/m/Projects/ayo-app/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/BrazeKit/BrazeKit.framework/BrazeKit(BrazeKit-arm64-master.o) /Users/m/Projects/ayo-app/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/BrazeNotificationService/BrazeNotificationService.framework/BrazeNotificationService(BrazeNotificationService-arm64-master.o) duplicate symbol '_$s18_BrazeAssetsClient0bC0V4LiveC8dataTask33_E074D3CC2BD38A1FB40D882E711C5600LL3url8priority11fetchPolicy10completionyyc10Foundation3URLV_AC8PriorityOAC05FetchS0Oys6ResultOyAL4DataV_So13NSURLResponseCts5Error_pGctF' in: /Users/m/Projects/ayo-app/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/BrazeKit/BrazeKit.framework/BrazeKit(BrazeKit-arm64-master.o) /Users/m/Projects/ayo-app/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/BrazeNotificationService/BrazeNotificationService.framework/BrazeNotificationService(BrazeNotificationService-arm64-master.o) duplicate symbol '_$s18_BrazeAssetsClient0bC0V4LiveC8inFlight33_E074D3CC2BD38A1FB40D882E711C5600LLSDyAE7TaskKeyVSo016NSURLSessionDataP0C4task_SDy10Foundation4UUIDVys6ResultOyAM0S0V_So13NSURLResponseCts5Error_pGcG8metadatatGvM' in: /Users/m/Projects/ayo-app/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/BrazeKit/BrazeKit.framework/BrazeKit(BrazeKit-arm64-master.o) /Users/m/Projects/ayo-app/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/BrazeNotificationService/BrazeNotificationService.framework/BrazeNotificationService(BrazeNotificationService-arm64-master.o) duplicate symbol '_$s18_BrazeAssetsClient0bC0V4LiveC8inFlight33_E074D3CC2BD38A1FB40D882E711C5600LLSDyAE7TaskKeyVSo016NSURLSessionDataP0C4task_SDy10Foundation4UUIDVys6ResultOyAM0S0V_So13NSURLResponseCts5Error_pGcG8metadatatGvg' in: /Users/m/Projects/ayo-app/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/BrazeKit/BrazeKit.framework/BrazeKit(BrazeKit-arm64-master.o) /Users/m/Projects/ayo-app/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/BrazeNotificationService/BrazeNotificationService.framework/BrazeNotificationService(BrazeNotificationService-arm64-master.o) duplicate symbol '_$s18_BrazeAssetsClient0bC0V4LiveC8inFlight33_E074D3CC2BD38A1FB40D882E711C5600LLSDyAE7TaskKeyVSo016NSURLSessionDataP0C4task_SDy10Foundation4UUIDVys6ResultOyAM0S0V_So13NSURLResponseCts5Error_pGcG8metadatatGvs' in: /Users/m/Projects/ayo-app/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/BrazeKit/BrazeKit.framework/BrazeKit(BrazeKit-arm64-master.o) /Users/m/Projects/ayo-app/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/BrazeNotificationService/BrazeNotificationService.framework/BrazeNotificationService(BrazeNotificationService-arm64-master.o) duplicate symbol '_$s18_BrazeAssetsClient0bC0V4LiveC9removeAllyyF' in: /Users/m/Projects/ayo-app/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/BrazeKit/BrazeKit.framework/BrazeKit(BrazeKit-arm64-master.o) /Users/m/Projects/ayo-app/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/BrazeNotificationService/BrazeNotificationService.framework/BrazeNotificationService(BrazeNotificationService-arm64-master.o) duplicate symbol '_$s18_BrazeAssetsClient0bC0V4LiveC9removeAllyyFTq' in: /Users/m/Projects/ayo-app/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/BrazeKit/BrazeKit.framework/BrazeKit(BrazeKit-arm64-master.o) /Users/m/Projects/ayo-app/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/BrazeNotificationService/BrazeNotificationService.framework/BrazeNotificationService(BrazeNotificationService-arm64-master.o) duplicate symbol '_$s18_BrazeAssetsClient0bC0V4LiveCMa' in: /Users/m/Projects/ayo-app/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/BrazeKit/BrazeKit.framework/BrazeKit(BrazeKit-arm64-master.o) /Users/m/Projects/ayo-app/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/BrazeNotificationService/BrazeNotificationService.framework/BrazeNotificationService(BrazeNotificationService-arm64-master.o) duplicate symbol '_$s18_BrazeAssetsClient0bC0V4LiveCMm' in: /Users/m/Projects/ayo-app/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/BrazeKit/BrazeKit.framework/BrazeKit(BrazeKit-arm64-master.o) /Users/m/Projects/ayo-app/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/BrazeNotificationService/BrazeNotificationService.framework/BrazeNotificationService(BrazeNotificationService-arm64-master.o) duplicate symbol '_$s18_BrazeAssetsClient0bC0V4LiveCMn' in: /Users/m/Projects/ayo-app/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/BrazeKit/BrazeKit.framework/BrazeKit(BrazeKit-arm64-master.o) /Users/m/Projects/ayo-app/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/BrazeNotificationService/BrazeNotificationService.framework/BrazeNotificationService(BrazeNotificationService-arm64-master.o) duplicate symbol '_$s18_BrazeAssetsClient0bC0V4LiveCN' in: /Users/m/Projects/ayo-app/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/BrazeKit/BrazeKit.framework/BrazeKit(BrazeKit-arm64-master.o) /Users/m/Projects/ayo-app/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/BrazeNotificationService/BrazeNotificationService.framework/BrazeNotificationService(BrazeNotificationService-arm64-master.o) duplicate symbol '_$s18_BrazeAssetsClient0bC0V4LiveCfD' in: /Users/m/Projects/ayo-app/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/BrazeKit/BrazeKit.framework/BrazeKit(BrazeKit-arm64-master.o) /Users/m/Projects/ayo-app/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/BrazeNotificationService/BrazeNotificationService.framework/BrazeNotificationService(BrazeNotificationService-arm64-master.o) duplicate symbol '_$s18_BrazeAssetsClient0bC0V4LiveCfd' in: /Users/m/Projects/ayo-app/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/BrazeKit/BrazeKit.framework/BrazeKit(BrazeKit-arm64-master.o) /Users/m/Projects/ayo-app/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/BrazeNotificationService/BrazeNotificationService.framework/BrazeNotificationService(BrazeNotificationService-arm64-master.o) duplicate symbol '_$s18_BrazeAssetsClient0bC0V4data3url8priority11fetchPolicy10completionyyc10Foundation3URLV_AC8PriorityOAC05FetchH0Oys6ResultOyAI4DataVs5Error_pGctF' in: /Users/m/Projects/ayo-app/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/BrazeKit/BrazeKit.framework/BrazeKit(BrazeKit-arm64-master.o) /Users/m/Projects/ayo-app/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/BrazeNotificationService/BrazeNotificationService.framework/BrazeNotificationService(BrazeNotificationService-arm64-master.o) duplicate symbol '_$s18_BrazeAssetsClient0bC0V4file3url14destinationURL8priority11fetchPolicy10completionyyc10Foundation0G0V_AlC8PriorityOAC05FetchJ0Oys6ResultOyALs5Error_pGctF' in: /Users/m/Projects/ayo-app/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/BrazeKit/BrazeKit.framework/BrazeKit(BrazeKit-arm64-master.o) /Users/m/Projects/ayo-app/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/BrazeNotificationService/BrazeNotificationService.framework/BrazeNotificationService(BrazeNotificationService-arm64-master.o) duplicate symbol '_$s18_BrazeAssetsClient0bC0V4live7session11resultQueueACSo12NSURLSessionC_So17OS_dispatch_queueCtFZ' in: /Users/m/Projects/ayo-app/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/BrazeKit/BrazeKit.framework/BrazeKit(BrazeKit-arm64-master.o) /Users/m/Projects/ayo-app/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/BrazeNotificationService/BrazeNotificationService.framework/BrazeNotificationService(BrazeNotificationService-arm64-master.o) duplicate symbol '_$s18_BrazeAssetsClient0bC0V5ErrorO11noCacheDatayA2EmFWC' in: /Users/m/Projects/ayo-app/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/BrazeKit/BrazeKit.framework/BrazeKit(BrazeKit-arm64-master.o) /Users/m/Projects/ayo-app/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/BrazeNotificationService/BrazeNotificationService.framework/BrazeNotificationService(BrazeNotificationService-arm64-master.o) duplicate symbol '_$s18_BrazeAssetsClient0bC0V5ErrorO2eeoiySbAE_AEtFZ' in: /Users/m/Projects/ayo-app/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/BrazeKit/BrazeKit.framework/BrazeKit(BrazeKit-arm64-master.o) /Users/m/Projects/ayo-app/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/BrazeNotificationService/BrazeNotificationService.framework/BrazeNotificationService(BrazeNotificationService-arm64-master.o) duplicate symbol '_$s18_BrazeAssetsClient0bC0V5ErrorO4hash4intoys6HasherVz_tF' in: /Users/m/Projects/ayo-app/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/BrazeKit/BrazeKit.framework/BrazeKit(BrazeKit-arm64-master.o) /Users/m/Projects/ayo-app/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/BrazeNotificationService/BrazeNotificationService.framework/BrazeNotificationService(BrazeNotificationService-arm64-master.o) duplicate symbol '_$s18_BrazeAssetsClient0bC0V5ErrorO9hashValueSivg' in: /Users/m/Projects/ayo-app/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/BrazeKit/BrazeKit.framework/BrazeKit(BrazeKit-arm64-master.o) /Users/m/Projects/ayo-app/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/BrazeNotificationService/BrazeNotificationService.framework/BrazeNotificationService(BrazeNotificationService-arm64-master.o) duplicate symbol '_$s18_BrazeAssetsClient0bC0V5ErrorO9hashValueSivpMV' in: /Users/m/Projects/ayo-app/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/BrazeKit/BrazeKit.framework/BrazeKit(BrazeKit-arm64-master.o) /Users/m/Projects/ayo-app/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/BrazeNotificationService/BrazeNotificationService.framework/BrazeNotificationService(BrazeNotificationService-arm64-master.o) duplicate symbol '_$s18_BrazeAssetsClient0bC0V5ErrorOMa' in: /Users/m/Projects/ayo-app/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/BrazeKit/BrazeKit.framework/BrazeKit(BrazeKit-arm64-master.o) /Users/m/Projects/ayo-app/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/BrazeNotificationService/BrazeNotificationService.framework/BrazeNotificationService(BrazeNotificationService-arm64-master.o) duplicate symbol '_$s18_BrazeAssetsClient0bC0V5ErrorOMn' in: /Users/m/Projects/ayo-app/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/BrazeKit/BrazeKit.framework/BrazeKit(BrazeKit-arm64-master.o) /Users/m/Projects/ayo-app/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/BrazeNotificationService/BrazeNotificationService.framework/BrazeNotificationService(BrazeNotificationService-arm64-master.o) duplicate symbol '_$s18_BrazeAssetsClient0bC0V5ErrorON' in: /Users/m/Projects/ayo-app/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/BrazeKit/BrazeKit.framework/BrazeKit(BrazeKit-arm64-master.o) /Users/m/Projects/ayo-app/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/BrazeNotificationService/BrazeNotificationService.framework/BrazeNotificationService(BrazeNotificationService-arm64-master.o) duplicate symbol '_$s18_BrazeAssetsClient0bC0V5ErrorOSHAAMc' in: /Users/m/Projects/ayo-app/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/BrazeKit/BrazeKit.framework/BrazeKit(BrazeKit-arm64-master.o) /Users/m/Projects/ayo-app/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/BrazeNotificationService/BrazeNotificationService.framework/BrazeNotificationService(BrazeNotificationService-arm64-master.o) duplicate symbol '_$s18_BrazeAssetsClient0bC0V5ErrorOSQAAMc' in: /Users/m/Projects/ayo-app/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/BrazeKit/BrazeKit.framework/BrazeKit(BrazeKit-arm64-master.o) /Users/m/Projects/ayo-app/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/BrazeNotificationService/BrazeNotificationService.framework/BrazeNotificationService(BrazeNotificationService-arm64-master.o) duplicate symbol '_$s18_BrazeAssetsClient0bC0V5ErrorOsAdAMc' in: /Users/m/Projects/ayo-app/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/BrazeKit/BrazeKit.framework/BrazeKit(BrazeKit-arm64-master.o) /Users/m/Projects/ayo-app/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/BrazeNotificationService/BrazeNotificationService.framework/BrazeNotificationService(BrazeNotificationService-arm64-master.o) duplicate symbol '_$s18_BrazeAssetsClient0bC0V6removeyy10Foundation3URLVcvM' in: /Users/m/Projects/ayo-app/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/BrazeKit/BrazeKit.framework/BrazeKit(BrazeKit-arm64-master.o) /Users/m/Projects/ayo-app/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/BrazeNotificationService/BrazeNotificationService.framework/BrazeNotificationService(BrazeNotificationService-arm64-master.o) duplicate symbol '_$s18_BrazeAssetsClient0bC0V6removeyy10Foundation3URLVcvg' in: /Users/m/Projects/ayo-app/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/BrazeKit/BrazeKit.framework/BrazeKit(BrazeKit-arm64-master.o) /Users/m/Projects/ayo-app/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/BrazeNotificationService/BrazeNotificationService.framework/BrazeNotificationService(BrazeNotificationService-arm64-master.o) duplicate symbol '_$s18_BrazeAssetsClient0bC0V6removeyy10Foundation3URLVcvpMV' in: /Users/m/Projects/ayo-app/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/BrazeKit/BrazeKit.framework/BrazeKit(BrazeKit-arm64-master.o) /Users/m/Projects/ayo-app/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/BrazeNotificationService/BrazeNotificationService.framework/BrazeNotificationService(BrazeNotificationService-arm64-master.o) duplicate symbol '_$s18_BrazeAssetsClient0bC0V6removeyy10Foundation3URLVcvs' in: /Users/m/Projects/ayo-app/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/BrazeKit/BrazeKit.framework/BrazeKit(BrazeKit-arm64-master.o) /Users/m/Projects/ayo-app/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/BrazeNotificationService/BrazeNotificationService.framework/BrazeNotificationService(BrazeNotificationService-arm64-master.o) duplicate symbol '_$s18_BrazeAssetsClient0bC0V7getDatayyyc10Foundation3URLV_AC8PriorityOAC11FetchPolicyOys6ResultOyAE0E0Vs5Error_pGctcvM' in: /Users/m/Projects/ayo-app/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/BrazeKit/BrazeKit.framework/BrazeKit(BrazeKit-arm64-master.o) /Users/m/Projects/ayo-app/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/BrazeNotificationService/BrazeNotificationService.framework/BrazeNotificationService(BrazeNotificationService-arm64-master.o) duplicate symbol '_$s18_BrazeAssetsClient0bC0V7getDatayyyc10Foundation3URLV_AC8PriorityOAC11FetchPolicyOys6ResultOyAE0E0Vs5Error_pGctcvg' in: /Users/m/Projects/ayo-app/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/BrazeKit/BrazeKit.framework/BrazeKit(BrazeKit-arm64-master.o) /Users/m/Projects/ayo-app/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/BrazeNotificationService/BrazeNotificationService.framework/BrazeNotificationService(BrazeNotificationService-arm64-master.o) duplicate symbol '_$s18_BrazeAssetsClient0bC0V7getDatayyyc10Foundation3URLV_AC8PriorityOAC11FetchPolicyOys6ResultOyAE0E0Vs5Error_pGctcvpMV' in: /Users/m/Projects/ayo-app/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/BrazeKit/BrazeKit.framework/BrazeKit(BrazeKit-arm64-master.o) /Users/m/Projects/ayo-app/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/BrazeNotificationService/BrazeNotificationService.framework/BrazeNotificationService(BrazeNotificationService-arm64-master.o) duplicate symbol '_$s18_BrazeAssetsClient0bC0V7getDatayyyc10Foundation3URLV_AC8PriorityOAC11FetchPolicyOys6ResultOyAE0E0Vs5Error_pGctcvs' in: /Users/m/Projects/ayo-app/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/BrazeKit/BrazeKit.framework/BrazeKit(BrazeKit-arm64-master.o) /Users/m/Projects/ayo-app/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/BrazeNotificationService/BrazeNotificationService.framework/BrazeNotificationService(BrazeNotificationService-arm64-master.o) duplicate symbol '_$s18_BrazeAssetsClient0bC0V7getFile0D4Data6remove0G3AllACyyc10Foundation3URLV_AjC8PriorityOAC11FetchPolicyOys6ResultOyAJs5Error_pGctc_yycAJ_AlNyAPyAH0F0VsAQ_pGctcyAJcyyctcfC' in: /Users/m/Projects/ayo-app/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/BrazeKit/BrazeKit.framework/BrazeKit(BrazeKit-arm64-master.o) /Users/m/Projects/ayo-app/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/BrazeNotificationService/BrazeNotificationService.framework/BrazeNotificationService(BrazeNotificationService-arm64-master.o) duplicate symbol '_$s18_BrazeAssetsClient0bC0V7getFileyyyc10Foundation3URLV_AgC8PriorityOAC11FetchPolicyOys6ResultOyAGs5Error_pGctcvM' in: /Users/m/Projects/ayo-app/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/BrazeKit/BrazeKit.framework/BrazeKit(BrazeKit-arm64-master.o) /Users/m/Projects/ayo-app/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/BrazeNotificationService/BrazeNotificationService.framework/BrazeNotificationService(BrazeNotificationService-arm64-master.o) duplicate symbol '_$s18_BrazeAssetsClient0bC0V7getFileyyyc10Foundation3URLV_AgC8PriorityOAC11FetchPolicyOys6ResultOyAGs5Error_pGctcvg' in: /Users/m/Projects/ayo-app/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/BrazeKit/BrazeKit.framework/BrazeKit(BrazeKit-arm64-master.o) /Users/m/Projects/ayo-app/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/BrazeNotificationService/BrazeNotificationService.framework/BrazeNotificationService(BrazeNotificationService-arm64-master.o) duplicate symbol '_$s18_BrazeAssetsClient0bC0V7getFileyyyc10Foundation3URLV_AgC8PriorityOAC11FetchPolicyOys6ResultOyAGs5Error_pGctcvpMV' in: /Users/m/Projects/ayo-app/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/BrazeKit/BrazeKit.framework/BrazeKit(BrazeKit-arm64-master.o) /Users/m/Projects/ayo-app/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/BrazeNotificationService/BrazeNotificationService.framework/BrazeNotificationService(BrazeNotificationService-arm64-master.o) duplicate symbol '_$s18_BrazeAssetsClient0bC0V7getFileyyyc10Foundation3URLV_AgC8PriorityOAC11FetchPolicyOys6ResultOyAGs5Error_pGctcvs' in: /Users/m/Projects/ayo-app/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/BrazeKit/BrazeKit.framework/BrazeKit(BrazeKit-arm64-master.o) /Users/m/Projects/ayo-app/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/BrazeNotificationService/BrazeNotificationService.framework/BrazeNotificationService(BrazeNotificationService-arm64-master.o) duplicate symbol '_$s18_BrazeAssetsClient0bC0V8PriorityO10backgroundyA2EmFWC' in: /Users/m/Projects/ayo-app/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/BrazeKit/BrazeKit.framework/BrazeKit(BrazeKit-arm64-master.o) /Users/m/Projects/ayo-app/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/BrazeNotificationService/BrazeNotificationService.framework/BrazeNotificationService(BrazeNotificationService-arm64-master.o) duplicate symbol '_$s18_BrazeAssetsClient0bC0V8PriorityO13userInitiatedyA2EmFWC' in: /Users/m/Projects/ayo-app/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/BrazeKit/BrazeKit.framework/BrazeKit(BrazeKit-arm64-master.o) /Users/m/Projects/ayo-app/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/BrazeNotificationService/BrazeNotificationService.framework/BrazeNotificationService(BrazeNotificationService-arm64-master.o) duplicate symbol '_$s18_BrazeAssetsClient0bC0V8PriorityO8rawValueAESgSf_tcfC' in: /Users/m/Projects/ayo-app/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/BrazeKit/BrazeKit.framework/BrazeKit(BrazeKit-arm64-master.o) /Users/m/Projects/ayo-app/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/BrazeNotificationService/BrazeNotificationService.framework/BrazeNotificationService(BrazeNotificationService-arm64-master.o) duplicate symbol '_$s18_BrazeAssetsClient0bC0V8PriorityO8rawValueSfvg' in: /Users/m/Projects/ayo-app/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/BrazeKit/BrazeKit.framework/BrazeKit(BrazeKit-arm64-master.o) /Users/m/Projects/ayo-app/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/BrazeNotificationService/BrazeNotificationService.framework/BrazeNotificationService(BrazeNotificationService-arm64-master.o) duplicate symbol '_$s18_BrazeAssetsClient0bC0V8PriorityO8rawValueSfvpMV' in: /Users/m/Projects/ayo-app/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/BrazeKit/BrazeKit.framework/BrazeKit(BrazeKit-arm64-master.o) /Users/m/Projects/ayo-app/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/BrazeNotificationService/BrazeNotificationService.framework/BrazeNotificationService(BrazeNotificationService-arm64-master.o) duplicate symbol '_$s18_BrazeAssetsClient0bC0V8PriorityOMa' in: /Users/m/Projects/ayo-app/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/BrazeKit/BrazeKit.framework/BrazeKit(BrazeKit-arm64-master.o) /Users/m/Projects/ayo-app/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/BrazeNotificationService/BrazeNotificationService.framework/BrazeNotificationService(BrazeNotificationService-arm64-master.o) duplicate symbol '_$s18_BrazeAssetsClient0bC0V8PriorityOMn' in: /Users/m/Projects/ayo-app/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/BrazeKit/BrazeKit.framework/BrazeKit(BrazeKit-arm64-master.o) /Users/m/Projects/ayo-app/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/BrazeNotificationService/BrazeNotificationService.framework/BrazeNotificationService(BrazeNotificationService-arm64-master.o) duplicate symbol '_$s18_BrazeAssetsClient0bC0V8PriorityON' in: /Users/m/Projects/ayo-app/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/BrazeKit/BrazeKit.framework/BrazeKit(BrazeKit-arm64-master.o) /Users/m/Projects/ayo-app/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/BrazeNotificationService/BrazeNotificationService.framework/BrazeNotificationService(BrazeNotificationService-arm64-master.o) duplicate symbol '_$s18_BrazeAssetsClient0bC0V8PriorityOSHAAMc' in: /Users/m/Projects/ayo-app/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/BrazeKit/BrazeKit.framework/BrazeKit(BrazeKit-arm64-master.o) /Users/m/Projects/ayo-app/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/BrazeNotificationService/BrazeNotificationService.framework/BrazeNotificationService(BrazeNotificationService-arm64-master.o) duplicate symbol '_$s18_BrazeAssetsClient0bC0V8PriorityOSQAAMc' in: /Users/m/Projects/ayo-app/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/BrazeKit/BrazeKit.framework/BrazeKit(BrazeKit-arm64-master.o) /Users/m/Projects/ayo-app/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/BrazeNotificationService/BrazeNotificationService.framework/BrazeNotificationService(BrazeNotificationService-arm64-master.o) duplicate symbol '_$s18_BrazeAssetsClient0bC0V8PriorityOSYAAMc' in: /Users/m/Projects/ayo-app/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/BrazeKit/BrazeKit.framework/BrazeKit(BrazeKit-arm64-master.o) /Users/m/Projects/ayo-app/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/BrazeNotificationService/BrazeNotificationService.framework/BrazeNotificationService(BrazeNotificationService-arm64-master.o) duplicate symbol '_$s18_BrazeAssetsClient0bC0V9removeAllyycvM' in: /Users/m/Projects/ayo-app/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/BrazeKit/BrazeKit.framework/BrazeKit(BrazeKit-arm64-master.o) /Users/m/Projects/ayo-app/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/BrazeNotificationService/BrazeNotificationService.framework/BrazeNotificationService(BrazeNotificationService-arm64-master.o) duplicate symbol '_$s18_BrazeAssetsClient0bC0V9removeAllyycvg' in: /Users/m/Projects/ayo-app/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/BrazeKit/BrazeKit.framework/BrazeKit(BrazeKit-arm64-master.o) /Users/m/Projects/ayo-app/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/BrazeNotificationService/BrazeNotificationService.framework/BrazeNotificationService(BrazeNotificationService-arm64-master.o) duplicate symbol '_$s18_BrazeAssetsClient0bC0V9removeAllyycvpMV' in: /Users/m/Projects/ayo-app/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/BrazeKit/BrazeKit.framework/BrazeKit(BrazeKit-arm64-master.o) /Users/m/Projects/ayo-app/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/BrazeNotificationService/BrazeNotificationService.framework/BrazeNotificationService(BrazeNotificationService-arm64-master.o) duplicate symbol '_$s18_BrazeAssetsClient0bC0V9removeAllyycvs' in: /Users/m/Projects/ayo-app/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/BrazeKit/BrazeKit.framework/BrazeKit(BrazeKit-arm64-master.o) /Users/m/Projects/ayo-app/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/BrazeNotificationService/BrazeNotificationService.framework/BrazeNotificationService(BrazeNotificationService-arm64-master.o) duplicate symbol '_$s18_BrazeAssetsClient0bC0VMa' in: /Users/m/Projects/ayo-app/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/BrazeKit/BrazeKit.framework/BrazeKit(BrazeKit-arm64-master.o) /Users/m/Projects/ayo-app/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/BrazeNotificationService/BrazeNotificationService.framework/BrazeNotificationService(BrazeNotificationService-arm64-master.o) duplicate symbol '_$s18_BrazeAssetsClient0bC0VMn' in: /Users/m/Projects/ayo-app/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/BrazeKit/BrazeKit.framework/BrazeKit(BrazeKit-arm64-master.o) /Users/m/Projects/ayo-app/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/BrazeNotificationService/BrazeNotificationService.framework/BrazeNotificationService(BrazeNotificationService-arm64-master.o) duplicate symbol '_$s18_BrazeAssetsClient0bC0VN' in: /Users/m/Projects/ayo-app/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/BrazeKit/BrazeKit.framework/BrazeKit(BrazeKit-arm64-master.o) /Users/m/Projects/ayo-app/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/BrazeNotificationService/BrazeNotificationService.framework/BrazeNotificationService(BrazeNotificationService-arm64-master.o) duplicate symbol '_$sSD11_BrazeUtilsE3digyypSgqd__SYRd__SS8RawValueRtd__lF' in: /Users/m/Projects/ayo-app/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/BrazeKit/BrazeKit.framework/BrazeKit(BrazeKit-arm64-master.o) /Users/m/Projects/ayo-app/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/BrazeNotificationService/BrazeNotificationService.framework/BrazeNotificationService(BrazeNotificationService-arm64-master.o) duplicate symbol '_$sSD11_BrazeUtilsSSRszypRs_rlE3set_4pathyypSg_qd__tSYRd__SS8RawValueRtd__lF' in: /Users/m/Projects/ayo-app/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/BrazeKit/BrazeKit.framework/BrazeKit(BrazeKit-arm64-master.o) /Users/m/Projects/ayo-app/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/BrazeNotificationService/BrazeNotificationService.framework/BrazeNotificationService(BrazeNotificationService-arm64-master.o) duplicate symbol '_$sSS11_BrazeUtilsE6sha256SSyF' in: /Users/m/Projects/ayo-app/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/BrazeKit/BrazeKit.framework/BrazeKit(BrazeKit-arm64-master.o) /Users/m/Projects/ayo-app/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/BrazeNotificationService/BrazeNotificationService.framework/BrazeNotificationService(BrazeNotificationService-arm64-master.o) duplicate symbol '_$sSl11_BrazeUtilsE4safe7ElementQzSg5IndexQz_tcig' in: /Users/m/Projects/ayo-app/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/BrazeKit/BrazeKit.framework/BrazeKit(BrazeKit-arm64-master.o) /Users/m/Projects/ayo-app/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/BrazeNotificationService/BrazeNotificationService.framework/BrazeNotificationService(BrazeNotificationService-arm64-master.o) duplicate symbol '_$sSl11_BrazeUtilsE4safe7ElementQzSg5IndexQz_tcipMV' in: /Users/m/Projects/ayo-app/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/BrazeKit/BrazeKit.framework/BrazeKit(BrazeKit-arm64-master.o) /Users/m/Projects/ayo-app/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/BrazeNotificationService/BrazeNotificationService.framework/BrazeNotificationService(BrazeNotificationService-arm64-master.o) duplicate symbol '_$sSo12NSURLSessionC18_BrazeAssetsClientE6cached4name13configuration14memoryCapacity04diskI0ABXDSS_So0A13ConfigurationCS2itFZ' in: /Users/m/Projects/ayo-app/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/BrazeKit/BrazeKit.framework/BrazeKit(BrazeKit-arm64-master.o) /Users/m/Projects/ayo-app/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/BrazeNotificationService/BrazeNotificationService.framework/BrazeNotificationService(BrazeNotificationService-arm64-master.o) duplicate symbol '_$sSo12NSURLSessionC18_BrazeAssetsClientE8uncached13configurationABXDSo0A13ConfigurationC_tFZ' in: /Users/m/Projects/ayo-app/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/BrazeKit/BrazeKit.framework/BrazeKit(BrazeKit-arm64-master.o) /Users/m/Projects/ayo-app/build/ios/Debug-iphonesimulator/XCFrameworkIntermediates/BrazeNotificationService/BrazeNotificationService.framework/BrazeNotificationService(BrazeNotificationService-arm64-master.o) ld: 130 duplicate symbols for architecture arm64 clang: error: linker command failed with exit code 1 (use -v to see invocation) note: Building targets in dependency order note: Removed stale file '/Users/m/Library/Developer/Xcode/DerivedData/Runner-ahmcbkbwjktbxbghdyhcxwqbjyld/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/FirebaseAnalytics.build/InputFileList-7A4783CD594347ECF8549B578AC13DE0-FirebaseAnalytics-xcframeworks-input-files-8cd9a152d26f3a3b35446f992a46c417-resolved.xcfilelist' note: Removed stale file '/Users/m/Library/Developer/Xcode/DerivedData/Runner-ahmcbkbwjktbxbghdyhcxwqbjyld/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/GoogleAppMeasurement.build/InputFileList-FFC97F92F008DD1FC8E9E64C17A89C9D-GoogleAppMeasurement-xcframeworks-input-files-82fab5889ff638ef5d0cca2209241462-resolved.xcfilelist' note: Removed stale file '/Users/m/Library/Developer/Xcode/DerivedData/Runner-ahmcbkbwjktbxbghdyhcxwqbjyld/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/FirebaseAnalytics.build/OutputFileList-7A4783CD594347ECF8549B578AC13DE0-FirebaseAnalytics-xcframeworks-output-files-ea74bb939eb5e3a85231fcb3758ff88b-resolved.xcfilelist' note: Removed stale file '/Users/m/Library/Developer/Xcode/DerivedData/Runner-ahmcbkbwjktbxbghdyhcxwqbjyld/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/FirebaseAnalytics.build/Script-7A4783CD594347ECF8549B578AC13DE0.sh' note: Removed stale file '/Users/m/Library/Developer/Xcode/DerivedData/Runner-ahmcbkbwjktbxbghdyhcxwqbjyld/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/GoogleAppMeasurement.build/OutputFileList-FFC97F92F008DD1FC8E9E64C17A89C9D-GoogleAppMeasurement-xcframeworks-output-files-6967c45a7c20fa63f6e81a6a7f701c20-resolved.xcfilelist' note: Removed stale file '/Users/m/Library/Developer/Xcode/DerivedData/Runner-ahmcbkbwjktbxbghdyhcxwqbjyld/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/GoogleAppMeasurement.build/Script-FFC97F92F008DD1FC8E9E64C17A89C9D.sh' /Users/m/Projects/ayo-app/ios/Pods/Pods.xcodeproj: warning: The iOS Simulator deployment target 'IPHONEOS_DEPLOYMENT_TARGET' is set to 9.0, but the range of supported deployment target versions is 11.0 to 16.2.99. (in target 'PromisesObjC' from project 'Pods') /Users/m/Projects/ayo-app/ios/Pods/Pods.xcodeproj: warning: The iOS Simulator deployment target 'IPHONEOS_DEPLOYMENT_TARGET' is set to 8.0, but the range of supported deployment target versions is 11.0 to 16.2.99. (in target 'ReachabilitySwift' from project 'Pods') /Users/m/Projects/ayo-app/ios/Pods/Pods.xcodeproj: warning: The iOS Simulator deployment target 'IPHONEOS_DEPLOYMENT_TARGET' is set to 8.0, but the range of supported deployment target versions is 11.0 to 16.2.99. (in target 'OrderedSet' from project 'Pods') /Users/m/Projects/ayo-app/ios/Pods/Pods.xcodeproj: warning: The iOS Simulator deployment target 'IPHONEOS_DEPLOYMENT_TARGET' is set to 9.0, but the range of supported deployment target versions is 11.0 to 16.2.99. (in target 'Adjust' from project 'Pods') /Users/m/Projects/ayo-app/ios/Pods/Pods.xcodeproj: warning: The iOS Simulator deployment target 'IPHONEOS_DEPLOYMENT_TARGET' is set to 9.0, but the range of supported deployment target versions is 11.0 to 16.2.99. (in target 'nanopb' from project 'Pods') /Users/m/Projects/ayo-app/ios/Pods/Pods.xcodeproj: warning: The iOS Simulator deployment target 'IPHONEOS_DEPLOYMENT_TARGET' is set to 10.0, but the range of supported deployment target versions is 11.0 to 16.2.99. (in target 'shared_preferences_ios' from project 'Pods') /Users/m/Projects/ayo-app/ios/Pods/Pods.xcodeproj: warning: The iOS Simulator deployment target 'IPHONEOS_DEPLOYMENT_TARGET' is set to 10.0, but the range of supported deployment target versions is 11.0 to 16.2.99. (in target 'permission_handler_apple' from project 'Pods') /Users/m/Projects/ayo-app/ios/Pods/Pods.xcodeproj: warning: The iOS Simulator deployment target 'IPHONEOS_DEPLOYMENT_TARGET' is set to 10.0, but the range of supported deployment target versions is 11.0 to 16.2.99. (in target 'share_plus' from project 'Pods') /Users/m/Projects/ayo-app/ios/Pods/Pods.xcodeproj: warning: The iOS Simulator deployment target 'IPHONEOS_DEPLOYMENT_TARGET' is set to 10.0, but the range of supported deployment target versions is 11.0 to 16.2.99. (in target 'path_provider_ios' from project 'Pods') /Users/m/Projects/ayo-app/ios/Pods/Pods.xcodeproj: warning: The iOS Simulator deployment target 'IPHONEOS_DEPLOYMENT_TARGET' is set to 10.0, but the range of supported deployment target versions is 11.0 to 16.2.99. (in target 'url_launcher_ios' from project 'Pods') /Users/m/Projects/ayo-app/ios/Pods/Pods.xcodeproj: warning: The iOS Simulator deployment target 'IPHONEOS_DEPLOYMENT_TARGET' is set to 10.0, but the range of supported deployment target versions is 11.0 to 16.2.99. (in target 'package_info_plus' from project 'Pods') /Users/m/Projects/ayo-app/ios/Pods/Pods.xcodeproj: warning: The iOS Simulator deployment target 'IPHONEOS_DEPLOYMENT_TARGET' is set to 10.0, but the range of supported deployment target versions is 11.0 to 16.2.99. (in target 'integration_test' from project 'Pods') /Users/m/Projects/ayo-app/ios/Pods/Pods.xcodeproj: warning: The iOS Simulator deployment target 'IPHONEOS_DEPLOYMENT_TARGET' is set to 10.0, but the range of supported deployment target versions is 11.0 to 16.2.99. (in target 'store_redirect' from project 'Pods') /Users/m/Projects/ayo-app/ios/Pods/Pods.xcodeproj: warning: The iOS Simulator deployment target 'IPHONEOS_DEPLOYMENT_TARGET' is set to 10.0, but the range of supported deployment target versions is 11.0 to 16.2.99. (in target 'flutter_native_splash' from project 'Pods') /Users/m/Projects/ayo-app/ios/Pods/Pods.xcodeproj: warning: The iOS Simulator deployment target 'IPHONEOS_DEPLOYMENT_TARGET' is set to 10.0, but the range of supported deployment target versions is 11.0 to 16.2.99. (in target 'flutter_keyboard_visibility' from project 'Pods') /Users/m/Projects/ayo-app/ios/Pods/Pods.xcodeproj: warning: The iOS Simulator deployment target 'IPHONEOS_DEPLOYMENT_TARGET' is set to 10.0, but the range of supported deployment target versions is 11.0 to 16.2.99. (in target 'device_info_plus' from project 'Pods') /Users/m/Projects/ayo-app/ios/Pods/Pods.xcodeproj: warning: The iOS Simulator deployment target 'IPHONEOS_DEPLOYMENT_TARGET' is set to 10.0, but the range of supported deployment target versions is 11.0 to 16.2.99. (in target 'Pods-PushServiceExtension' from project 'Pods') /Users/m/Projects/ayo-app/ios/Pods/Pods.xcodeproj: warning: The iOS Simulator deployment target 'IPHONEOS_DEPLOYMENT_TARGET' is set to 10.0, but the range of supported deployment target versions is 11.0 to 16.2.99. (in target 'BrazeNotificationService' from project 'Pods') /Users/m/Projects/ayo-app/ios/Pods/Pods.xcodeproj: warning: The iOS Simulator deployment target 'IPHONEOS_DEPLOYMENT_TARGET' is set to 10.0, but the range of supported deployment target versions is 11.0 to 16.2.99. (in target 'flutter_inappwebview' from project 'Pods') /Users/m/Projects/ayo-app/ios/Pods/Pods.xcodeproj: warning: The iOS Simulator deployment target 'IPHONEOS_DEPLOYMENT_TARGET' is set to 10.0, but the range of supported deployment target versions is 11.0 to 16.2.99. (in target 'connectivity_plus' from project 'Pods') /Users/m/Projects/ayo-app/ios/Pods/Pods.xcodeproj: warning: The iOS Simulator deployment target 'IPHONEOS_DEPLOYMENT_TARGET' is set to 10.0, but the range of supported deployment target versions is 11.0 to 16.2.99. (in target 'adjust_sdk' from project 'Pods') /Users/m/Projects/ayo-app/ios/Pods/Pods.xcodeproj: warning: The iOS Simulator deployment target 'IPHONEOS_DEPLOYMENT_TARGET' is set to 9.0, but the range of supported deployment target versions is 11.0 to 16.2.99. (in target 'GoogleUtilities' from project 'Pods') /Users/m/Projects/ayo-app/ios/Pods/Pods.xcodeproj: warning: The iOS Simulator deployment target 'IPHONEOS_DEPLOYMENT_TARGET' is set to 9.0, but the range of supported deployment target versions is 11.0 to 16.2.99. (in target 'GoogleDataTransport' from project 'Pods') /Users/m/Projects/ayo-app/ios/Pods/Pods.xcodeproj: warning: The iOS Simulator deployment target 'IPHONEOS_DEPLOYMENT_TARGET' is set to 10.0, but the range of supported deployment target versions is 11.0 to 16.2.99. (in target 'FirebaseCoreInternal' from project 'Pods') /Users/m/Projects/ayo-app/ios/Pods/Pods.xcodeproj: warning: The iOS Simulator deployment target 'IPHONEOS_DEPLOYMENT_TARGET' is set to 10.0, but the range of supported deployment target versions is 11.0 to 16.2.99. (in target 'GoogleAppMeasurement' from project 'Pods') /Users/m/Projects/ayo-app/ios/Pods/Pods.xcodeproj: warning: The iOS Simulator deployment target 'IPHONEOS_DEPLOYMENT_TARGET' is set to 10.0, but the range of supported deployment target versions is 11.0 to 16.2.99. (in target 'FirebaseCore' from project 'Pods') /Users/m/Projects/ayo-app/ios/Pods/Pods.xcodeproj: warning: The iOS Simulator deployment target 'IPHONEOS_DEPLOYMENT_TARGET' is set to 10.0, but the range of supported deployment target versions is 11.0 to 16.2.99. (in target 'FirebaseInstallations' from project 'Pods') /Users/m/Projects/ayo-app/ios/Pods/Pods.xcodeproj: warning: The iOS Simulator deployment target 'IPHONEOS_DEPLOYMENT_TARGET' is set to 10.0, but the range of supported deployment target versions is 11.0 to 16.2.99. (in target 'FirebaseAnalytics' from project 'Pods') warning: Run script build phase 'Run Script' will be run during every build because it does not specify any outputs. To address this warning, either add output dependencies to the script phase, or configure it to run in every build by unchecking "Based on dependency analysis" in the script phase. (in target 'Runner' from project 'Runner') warning: Run script build phase 'Thin Binary' will be run during every build because it does not specify any outputs. To address this warning, either add output dependencies to the script phase, or configure it to run in every build by unchecking "Based on dependency analysis" in the script phase. (in target 'Runner' from project 'Runner') warning: Run script build phase '[firebase_crashlytics] Crashlytics Upload Symbols' will be run during every build because it does not specify any outputs. To address this warning, either add output dependencies to the script phase, or configure it to run in every build by unchecking "Based on dependency analysis" in the script phase. (in target 'Runner' from project 'Runner') Result bundle written to path: /var/folders/lk/jvgtn55s31v2c28w2splnqh40000gn/T/flutter_tools.tF2swf/flutter_ios_build_temp_dirs4GTHq/temporary_xcresult_bundle Error (Xcode): 130 duplicate symbols for architecture arm64 Could not build the application for the simulator. Error launching application on iPhone 14. ```

(see all the duplicate symbol messages)

nottmey commented 1 year ago

When I remove use_frameworks! from target 'Runner' it seems like the app starts, but I don't know whether this causes any issues (is Swift code even working then?). I'll need to check tomorrow, whether that would work out fine for us.

lowip commented 1 year ago

@nottmey,

Can you confirm that:

target 'PushServiceExtension' do
  platform :ios, '10.0'
  pod 'BrazeNotificationService'
end

is added at the root level of your Podfile? Adding it inside the target Runner leads to it being compiled in the same compilation unit.

We're sharing some code between our main SDK (BrazeKit) and the additional libraries (BrazeNotificationService / BrazePushStory). Normally, those libraries should never be compiled in the same compilation target. Nesting a target inside another one in your Podfile implicitly mean that the child target is part of the same compilation unit as the parent target.

Additionally:

nottmey commented 1 year ago

Yes @lowip,

our erroring Podfile with the snippet applied looks like this:

Podfile with new target ```ruby # Uncomment this line to define a global platform for your project platform :ios, '12.0' # CocoaPods analytics sends network stats synchronously affecting flutter build latency. ENV['COCOAPODS_DISABLE_STATS'] = 'true' project 'Runner', { 'Debug' => :debug, 'Profile' => :release, 'Release' => :release, } def flutter_root generated_xcode_build_settings_path = File.expand_path(File.join('..', 'Flutter', 'Generated.xcconfig'), __FILE__) unless File.exist?(generated_xcode_build_settings_path) raise "#{generated_xcode_build_settings_path} must exist. If you're running pod install manually, make sure flutter pub get is executed first" end File.foreach(generated_xcode_build_settings_path) do |line| matches = line.match(/FLUTTER_ROOT\=(.*)/) return matches[1].strip if matches end raise "FLUTTER_ROOT not found in #{generated_xcode_build_settings_path}. Try deleting Generated.xcconfig, then run flutter pub get" end require File.expand_path(File.join('packages', 'flutter_tools', 'bin', 'podhelper'), flutter_root) flutter_ios_podfile_setup target 'Runner' do use_frameworks! use_modular_headers! flutter_install_all_ios_pods File.dirname(File.realpath(__FILE__)) target 'RunnerTests' do inherit! :search_paths end end post_install do |installer| installer.pods_project.targets.each do |target| flutter_additional_ios_build_settings(target) # Start of the permission_handler configuration target.build_configurations.each do |config| # Preprocessor definitions can be found in: https://github.com/Baseflow/flutter-permission-handler/blob/master/permission_handler_apple/ios/Classes/PermissionHandlerEnums.h config.build_settings['GCC_PREPROCESSOR_DEFINITIONS'] ||= [ '$(inherited)', ## dart: PermissionGroup.calendar # 'PERMISSION_EVENTS=1', ## dart: PermissionGroup.reminders # 'PERMISSION_REMINDERS=1', ## dart: PermissionGroup.contacts # 'PERMISSION_CONTACTS=1', ## dart: PermissionGroup.camera # 'PERMISSION_CAMERA=1', ## dart: PermissionGroup.microphone # 'PERMISSION_MICROPHONE=1', ## dart: PermissionGroup.speech # 'PERMISSION_SPEECH_RECOGNIZER=1', ## dart: PermissionGroup.photos # 'PERMISSION_PHOTOS=1', ## dart: [PermissionGroup.location, PermissionGroup.locationAlways, PermissionGroup.locationWhenInUse] # 'PERMISSION_LOCATION=1', ## dart: PermissionGroup.notification 'PERMISSION_NOTIFICATIONS=1', ## dart: PermissionGroup.mediaLibrary # 'PERMISSION_MEDIA_LIBRARY=1', ## dart: PermissionGroup.sensors # 'PERMISSION_SENSORS=1', ## dart: PermissionGroup.bluetooth # 'PERMISSION_BLUETOOTH=1', ## dart: PermissionGroup.appTrackingTransparency 'PERMISSION_APP_TRACKING_TRANSPARENCY=1', ## dart: PermissionGroup.criticalAlerts # 'PERMISSION_CRITICAL_ALERTS=1' ] end end end target 'PushServiceExtension' do platform :ios, '12.0' pod 'BrazeNotificationService' end ```
Podfile with both targets using `use_frameworks!` ```ruby # Uncomment this line to define a global platform for your project platform :ios, '12.0' # CocoaPods analytics sends network stats synchronously affecting flutter build latency. ENV['COCOAPODS_DISABLE_STATS'] = 'true' project 'Runner', { 'Debug' => :debug, 'Profile' => :release, 'Release' => :release, } def flutter_root generated_xcode_build_settings_path = File.expand_path(File.join('..', 'Flutter', 'Generated.xcconfig'), __FILE__) unless File.exist?(generated_xcode_build_settings_path) raise "#{generated_xcode_build_settings_path} must exist. If you're running pod install manually, make sure flutter pub get is executed first" end File.foreach(generated_xcode_build_settings_path) do |line| matches = line.match(/FLUTTER_ROOT\=(.*)/) return matches[1].strip if matches end raise "FLUTTER_ROOT not found in #{generated_xcode_build_settings_path}. Try deleting Generated.xcconfig, then run flutter pub get" end require File.expand_path(File.join('packages', 'flutter_tools', 'bin', 'podhelper'), flutter_root) flutter_ios_podfile_setup target 'Runner' do use_frameworks! use_modular_headers! flutter_install_all_ios_pods File.dirname(File.realpath(__FILE__)) target 'RunnerTests' do inherit! :search_paths end end post_install do |installer| installer.pods_project.targets.each do |target| flutter_additional_ios_build_settings(target) # Start of the permission_handler configuration target.build_configurations.each do |config| # Preprocessor definitions can be found in: https://github.com/Baseflow/flutter-permission-handler/blob/master/permission_handler_apple/ios/Classes/PermissionHandlerEnums.h config.build_settings['GCC_PREPROCESSOR_DEFINITIONS'] ||= [ '$(inherited)', ## dart: PermissionGroup.calendar # 'PERMISSION_EVENTS=1', ## dart: PermissionGroup.reminders # 'PERMISSION_REMINDERS=1', ## dart: PermissionGroup.contacts # 'PERMISSION_CONTACTS=1', ## dart: PermissionGroup.camera # 'PERMISSION_CAMERA=1', ## dart: PermissionGroup.microphone # 'PERMISSION_MICROPHONE=1', ## dart: PermissionGroup.speech # 'PERMISSION_SPEECH_RECOGNIZER=1', ## dart: PermissionGroup.photos # 'PERMISSION_PHOTOS=1', ## dart: [PermissionGroup.location, PermissionGroup.locationAlways, PermissionGroup.locationWhenInUse] # 'PERMISSION_LOCATION=1', ## dart: PermissionGroup.notification 'PERMISSION_NOTIFICATIONS=1', ## dart: PermissionGroup.mediaLibrary # 'PERMISSION_MEDIA_LIBRARY=1', ## dart: PermissionGroup.sensors # 'PERMISSION_SENSORS=1', ## dart: PermissionGroup.bluetooth # 'PERMISSION_BLUETOOTH=1', ## dart: PermissionGroup.appTrackingTransparency 'PERMISSION_APP_TRACKING_TRANSPARENCY=1', ## dart: PermissionGroup.criticalAlerts # 'PERMISSION_CRITICAL_ALERTS=1' ] end end end target 'PushServiceExtension' do use_frameworks! platform :ios, '12.0' pod 'BrazeNotificationService' end ```
Podfile without `use_frameworks!`, which seems to compile ```ruby # Uncomment this line to define a global platform for your project platform :ios, '12.0' # CocoaPods analytics sends network stats synchronously affecting flutter build latency. ENV['COCOAPODS_DISABLE_STATS'] = 'true' project 'Runner', { 'Debug' => :debug, 'Profile' => :release, 'Release' => :release, } def flutter_root generated_xcode_build_settings_path = File.expand_path(File.join('..', 'Flutter', 'Generated.xcconfig'), __FILE__) unless File.exist?(generated_xcode_build_settings_path) raise "#{generated_xcode_build_settings_path} must exist. If you're running pod install manually, make sure flutter pub get is executed first" end File.foreach(generated_xcode_build_settings_path) do |line| matches = line.match(/FLUTTER_ROOT\=(.*)/) return matches[1].strip if matches end raise "FLUTTER_ROOT not found in #{generated_xcode_build_settings_path}. Try deleting Generated.xcconfig, then run flutter pub get" end require File.expand_path(File.join('packages', 'flutter_tools', 'bin', 'podhelper'), flutter_root) flutter_ios_podfile_setup target 'Runner' do use_modular_headers! flutter_install_all_ios_pods File.dirname(File.realpath(__FILE__)) target 'RunnerTests' do inherit! :search_paths end end post_install do |installer| installer.pods_project.targets.each do |target| flutter_additional_ios_build_settings(target) # Start of the permission_handler configuration target.build_configurations.each do |config| # Preprocessor definitions can be found in: https://github.com/Baseflow/flutter-permission-handler/blob/master/permission_handler_apple/ios/Classes/PermissionHandlerEnums.h config.build_settings['GCC_PREPROCESSOR_DEFINITIONS'] ||= [ '$(inherited)', ## dart: PermissionGroup.calendar # 'PERMISSION_EVENTS=1', ## dart: PermissionGroup.reminders # 'PERMISSION_REMINDERS=1', ## dart: PermissionGroup.contacts # 'PERMISSION_CONTACTS=1', ## dart: PermissionGroup.camera # 'PERMISSION_CAMERA=1', ## dart: PermissionGroup.microphone # 'PERMISSION_MICROPHONE=1', ## dart: PermissionGroup.speech # 'PERMISSION_SPEECH_RECOGNIZER=1', ## dart: PermissionGroup.photos # 'PERMISSION_PHOTOS=1', ## dart: [PermissionGroup.location, PermissionGroup.locationAlways, PermissionGroup.locationWhenInUse] # 'PERMISSION_LOCATION=1', ## dart: PermissionGroup.notification 'PERMISSION_NOTIFICATIONS=1', ## dart: PermissionGroup.mediaLibrary # 'PERMISSION_MEDIA_LIBRARY=1', ## dart: PermissionGroup.sensors # 'PERMISSION_SENSORS=1', ## dart: PermissionGroup.bluetooth # 'PERMISSION_BLUETOOTH=1', ## dart: PermissionGroup.appTrackingTransparency 'PERMISSION_APP_TRACKING_TRANSPARENCY=1', ## dart: PermissionGroup.criticalAlerts # 'PERMISSION_CRITICAL_ALERTS=1' ] end end end target 'PushServiceExtension' do platform :ios, '12.0' pod 'BrazeNotificationService' end ```
nottmey commented 1 year ago

Do you know whether leaving out use_framework! (which was in the initial project setup from the flutter cli) has any unwanted side-effects?

lowip commented 1 year ago

Thanks @nottmey for the different Podfiles.

The use_framework! directive makes CocoaPods link against the dependencies dynamically instead of statically. This was a very common setting in the past, as Xcode did not support linking against Swift static libraries until Xcode 9.0 (released in 2018). It also helped to import Objective-C code into Swift projects by automatically generating the necessary headers / module maps to support Clang modules.

Five years later, Swift code is more predominant and the use_framework! directive is less and less needed. The use_modular_headers! directive (already included in your podfiles) also resolves the Objective-C import issue, and Xcode now fully supports linking against Swift static libraries.

Our SDKs are distributed as static libraries, as it is generally the best choice for launch time performance. Adding the use_framework! directive re-package our SDK and all other dependencies into dynamic libraries, which can slow down your app launch time.

In our own testing, we haven't seen any unwanted side effects from linking the pods statically vs dynamically. I would nonetheless recommend a high level QA pass on your app to verify that this is the case on your side as well.

In the meantime, we're investigating possible change to our build process to avoid generating those duplicate symbols and make our integration more flexible.

nottmey commented 1 year ago

Nice, thank you for the background info @lowip.

husnainasghar commented 1 year ago

@nottmey I installed these via Swift Package Manager. You can follow the documentation using this link.

Initially, I was also facing duplicate symbols but then I only selected BrazePushStory and BrazeNotificationService from the checklist and it worked for me. I have attached an image for reference. From the checklist in the image, only BrazePushStory and BrazeNotificationService were selected in my case.

Screenshot 2023-02-22 at 11 20 41 PM