Skip to main content
mingtianjian
Inspiring
February 1, 2019
解決済み

xxx.a are required to have universal ios libraries. please contact the ane developer(s) to get the same

  • February 1, 2019
  • 返信数 2.
  • 1108 ビュー

I have develop a ane,the is the profile (the ane dependent on other project ,it only support arm64)

xxx.a are required to have universal ios libraries. please contact the ane developer(s) to get the same.

このトピックへの返信は締め切られました。
解決に役立った回答 mingtianjian

I have solved this problem. it is my mistake。

thanks

GitHub - tuarua/Swift-IOS-ANE: FlashRuntimeExtensions.swift. Example Air Native Extension written in Swift 4 for iOS, OS…

返信数 2

mingtianjian
mingtianjian作成者解決!
Inspiring
February 5, 2019
Legend
February 1, 2019

If you are targeting arm64 only then you need to target your AIR app to a minimum iOS version that only supports arm64 devices. I believe this is 11.0

platform.xml

<linkerOptions>

    <option>-ios_version_min 11.0</option>

</linkerOptions>

app-xml

<InfoAdditions>

    <![CDATA[

        <key>MinimumOSVersion</key>

        <string>11.0</string>

    ]]>

</InfoAdditions>

mingtianjian
mingtianjian作成者
Inspiring
February 2, 2019

thanks  let me try