distriqt / ANE-Core

ANE providing a centralised library for native extension common utilities and a notification / delegation system
https://airnativeextensions.com
21 stars 12 forks source link

Compile Error #35

Closed vree closed 1 year ago

vree commented 1 year ago

I'm getting a compile error from Animate/Air SDK for iOS.

Error: Invalid input Error libCore.a, libGameServices.a, libInAppBilling.a are required to have a universal iOS libraries. (see attached image)

I'm using the latest version of Core, GameServices and InApp Billing ane. AIR SDK version: 50.1.1.2 for iOS in Animate 2023 – macOS Big Sur 11.2.1

Error:

Screen Shot 2023-02-19 at 3 07 06 PM

ANE:

Screen Shot 2023-02-19 at 3 12 13 PM

Not sure if I'm missing something or need some additional updates? Thanks for your assistance.

Logs

Device logs if relevant

marchbold commented 1 year ago

Hi,

We have moved all our extensions to the latest Xcode and Apple no longer supports universal libraries.

Instead you should set your minimum os version to 11 and this will avoid this error.

Add the following to your info additions:

<key>MinimumOSVersion</key>
<string>11.0</string>
vree commented 1 year ago

Thanks for your help!