Reputation: 489
Everything was working fine on both simulator and on real device however now when I try to run my app on my actual device I get a thread 1 error saying:
dyld: Library not loaded: @rpath/EmptyDataSet_Swift.framework/EmptyDataSet_Swift
Referenced from: /private/var/containers/Bundle/Application/EEAF155F-FE7F-491F-87DB-0693F9475F5B/SuperBeans.app/SuperBeans
Reason: no suitable image found.
I have tried many solutions however to no avail. Has anyone got any ideas?
Upvotes: 1
Views: 3408
Reputation: 193
This worked for me on iOS 13.3.1 with xcode 11
Comment use_frameworks! in your Podfile and run pod install
Upvotes: 0