Copy link to clipboard
Copied
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.
I have solved this problem. it is my mistake。
thanks
Copy link to clipboard
Copied
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>
Copy link to clipboard
Copied
thanks let me try
Copy link to clipboard
Copied
I have solved this problem. it is my mistake。
thanks