Sander Saelmans
02/26/2020, 8:55 AMAppCenter
, AppCenterCrashes
, AppCenterAnalytics
, `KeychainWrapper`; And this seems to work well at this point.
However when I try to run the iOS application after interopting this framework: https://github.com/CAAPIM/iOS-MAS-Foundation (which works after modifying the imports in the header files slightly @import SomeFramework;
-> #import <SomeFramework/SomeFramework.h>
, #import <MASFoundation/SomeHeader.h>
-> #import "SomeHeader.h
), I get the following error when trying to boot up the application:
dyld: Library not loaded: /Library/Frameworks/MASFoundation.framework/MASFoundation
Referenced from: /Users/sandersaelmans/Library/Developer/Xcode/DerivedData/iosApp-dbelcoqoqidymygwatjnbtxoifby/Build/Products/Debug-iphonesimulator/app.framework/app
Reason: image not foundThe
.def
file I'm using looks like this:
language = Objective-C
package = com.mas
headers = MASFoundation.h
compilerOpts = \
-Isrc/nativeInterop/cinterop/MASFoundation.framework/Headers \
linkerOpts = \
-Fsrc/nativeInterop/cinterop \
-framework MASFoundation \
-framework Foundation \
-framework UIKit
Can someone spot what I'm doing wrong here? As my other interops work perfectly...Artyom Degtyarev [JB]
02/26/2020, 9:26 AMSander Saelmans
02/26/2020, 10:05 AMSam
02/26/2020, 2:02 PMKris Wong
02/26/2020, 2:59 PMKris Wong
02/26/2020, 2:59 PMSander Saelmans
02/26/2020, 3:17 PMSam
02/26/2020, 3:32 PMSander Saelmans
02/27/2020, 7:37 AM