error:
{
dyld: Library not loaded: @rpath/Realm.framework/Realm
Referenced from: /private/var/containers/Bundle/Application/43190AF8-F437-4B8F-9827-DDEA599AF6
Welp I faced a very similar problem. Did not need to pay my developer account renewal. Yup I'm currently on a free account. Updating to 13.4 and xcode 11.4 still was showing the same issue. So this is what I did:
-Deleted app off phone, cleaned build and removed old profiles(found in
~/Library/MobileDevice/Provisioning Profiles
)
-Deleted everything in "iOS DeviceSupport" file found in
~/Library/Developer
-Cleaned derived data.
-In keychain I deleted all my certificates.
Also removed my account and re-added it upon re-starting xcode (IMO this might have done nothing, but worth adding). Restarted phone and xcode. App is up and running on my phone now! No paid developer account! Oh and podfile...
platform :ios, '13.2'
target 'YourApp' do
use_frameworks!
pod 'Mapbox-iOS-SDK', '~> 5.7.0'
target 'WalkBuddyTests' do
inherit! :search_paths
#pods for testing
end
end