I’m trying to debug this error
Warning: Error creating LLDB target at path '/Users/samichaudry/Library/Developer/Xcode/DerivedData/Hoddle-gctmhensovsgdacihdqqngupxngb/Build/Products/Staging-iphonesimulator/Hoddle.app'- using an empty LLDB target which can cause slow memory reads from remote devices.
dyld[35857]: Symbol not found: __ZN5swift34swift50override_conformsToProtocolEPKNS_14TargetMetadataINS_9InProcessEEEPKNS_24TargetProtocolDescriptorIS1_EEPFPKNS_18TargetWitnessTableIS1_EES4_S8_E
Referenced from: <245AD559-41AD-30AA-B267-C4410F66298C> /Users/samichaudry/Library/Developer/CoreSimulator/Devices/B036ECB1-D798-4C8F-91CD-AD038AB7B04C/data/Containers/Bundle/Application/A9571056-67F7-4925-9EC4-0C6484CE350C/Hoddle.app/Frameworks/iProov.framework/iProov
Expected in: <96464E22-FA84-33BC-B61B-230361EE475B> /Users/samichaudry/Library/Developer/CoreSimulator/Devices/B036ECB1-D798-4C8F-91CD-AD038AB7B04C/data/Containers/Bundle/Application/A9571056-67F7-4925-9EC4-0C6484CE350C/Hoddle.app/Frameworks/Starscream.framework/Starscream
Message from debugger: Terminated due to signal 6
Here is my podfile
# Uncomment the next line to define a global platform for your project
platform :ios, '15.0'
target 'Hoddle' do
# Comment the next line if you don't want to use dynamic frameworks
use_frameworks!
# Pods for Hoddle
pod 'Firebase/Core', '~> 10.0'
pod 'Firebase/RemoteConfig', '~> 10.0'
pod 'Firebase/Auth', '~> 10.0'
pod 'Firebase/Firestore', '~> 10.0'
pod 'Firebase/Functions', '~> 10.0'
pod 'Firebase/Messaging', '~> 10.0'
# pod 'Firebase/InAppMessagingDisplay', '~> 10.0'
pod 'Firebase/Performance', '~> 10.0'
pod 'Firebase/Analytics', '~> 10.0'
pod 'Firebase/Storage', '~> 10.0'
pod 'Firebase/DynamicLinks', '~> 10.0'
pod 'Firebase/Crashlytics', '~> 10.0'
pod 'SwiftyJSON'
pod 'CryptoSwift'
pod 'Koyomi'
pod 'Segment-Firebase'
pod 'CardScan'
pod 'AlamofireNetworkActivityLogger'
pod 'JumioMobileSDK', '~> 3.9.4'
pod 'JumioMobileSDK/BAMCheckout', '~> 3.9.4'
pod 'Intercom'
pod 'SwiftJWT'
pod 'BottomPopup'
pod 'OAuthSwift', '~> 2.2.0'
pod 'FacebookCore'
pod 'FacebookLogin', '~> 0.9.0'
pod 'FBSDKMessengerShareKit'
pod 'SDWebImageSVGCoder'
pod 'ProgressHUD'
pod 'MercariQRScanner'
pod 'UIImageViewAlignedSwift'
pod 'Charts'
pod 'iProov'
pod 'Starscream', '~> 4.0.6'
target 'HoddleTests' do
inherit! :search_paths
# Pods for testing
end
target 'HoddleUITests' do
# Pods for testing
end
end
post_install do |installer|
installer.pods_project.targets.each do |target|
if ['iProov', 'Socket.IO-Client-Swift', 'Starscream'].include? target.name
target.build_configurations.each do |config|
config.build_settings['BUILD_LIBRARY_FOR_DISTRIBUTION'] = 'YES'
end
end
end
end