iOS ANE with Swift framework embedded, XCode 9.4.1
We are trying to embed a Swift framework in our iOS/AIR app.
I'm following the tutorial by Sourabh Gupta
Since XCode 9 one can only build dynamic frameworks for 64 bit processors.
So our Swift framework "DummySwiftLib" is arm64 only.
When I'm building the ANE I get the following error.
"Error: Apple App Store allows only universal applications. "DummySwiftLib" is not a universal binary. Please change build settings in Xcode project to "Standard Architecture" to create universal library/framework."
Since we are unable to build universal dynamic frameworks, how to avoid this error?
ANE build command
adt -package -target ane YoWindowNative.ane extension.xml -swc uiNeLib.swc -platform iPhone-ARM -C ios/out . -platformoptions platformoptions.xml -platform default -C default .
We are building with AIR SDK 28.
Please help!
