-
Notifications
You must be signed in to change notification settings - Fork 19
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Crash on iOS 11.8 #466
Comments
This is an Xcode build setting right? Do you know what that means in terms of actual impact on the compile or link step? |
@britzl I think so. I tried to build plugin in xcode to check, but I failed (I'm writing it and understand that it's easier to build empty project with and without this checkbox and compere). As I understand, this flag includes swift libs as dynamic libs into build: https://stackoverflow.com/questions/26024100/dyld-library-not-loaded-rpath-libswiftcore-dylib I'm not sure if it's something specified in a pod file somewhere or developer should decide himself. |
One more useful link https://stackoverflow.com/questions/63859267/please-explain-the-purpose-of-always-embed-swift-standard-libraries
|
@britzl here I found how it may be specified in pods file (this looks like a workaround, but maybe it will be useful): |
Sure, but that sets a config value for Xcode. We need to figure out how to do the same thing without Xcode. And also how an extension should specify that it is needed (probably in the ext.manifest). |
@britzl it seems like it depends on target ios version + using or not using swift code in framework |
https://developer.apple.com/documentation/xcode-release-notes/swift-5-release-notes-for-xcode-10_2#New-Features |
I agree with @ekharkunov . It seems liek we need to include it automatically if MIN ios version less than 12.2 |
The issue moved from https://github.com/defold/extension-ironsource |
it seems like cocoapods should take into account
ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES
The text was updated successfully, but these errors were encountered: