My Xcode venture has 2 targets: an app and a static library. The library comprises a Swift SDK generated by AWS API Gateway for a REST API, and extends it with some further options. It builds simply high quality.
The library is linked to the app within the construct settings and is referenced within the app code. The app additionally builds simply high quality.
The app crashes instantly once I run it, producing the next error log:
dyld[21035]: Library not loaded: @rpath/AWSAPIGateway.framework/AWSAPIGateway
It seems to be on the lookout for the framework in a number of directories below: Customers/me/Library/Developer/Xcode/DerivedData/, although I have no idea why because the app goal doesn’t rely upon AWSAPIGateway instantly.
Right here is my Podfile:
supply 'https://github.com/CocoaPods/Specs.git'
platform :ios, '12.0'
use_frameworks!
goal 'lib' do
pod 'AWSAPIGateway', '~> 2.6.35'
finish
Any concept what the issue is right here?