danfreeman / in-app-purchase-air-ios

Automatically exported from code.google.com/p/in-app-purchase-air-ios
0 stars 1 forks source link

Flash Builder iOs ANE with Air 3.3 #18

Open GoogleCodeExporter opened 9 years ago

GoogleCodeExporter commented 9 years ago
With Flash Builder 4.6 with Air 3.3, the ANE compiled with a minor version 
cause the ipa not to be generated. It seems that with Air 3.3 linker warnings 
are not suppressed, and Flash Builder/Flash Pro are not able to handle such 
large number of warnings. (specifically on Windows)
(http://blogs.adobe.com/airodynamics/2012/06/12/flash-ide-packaging-issue-with-a
ir-3-3/)

What steps will reproduce the problem?
With Flash Builder 4.6, install the ANE. Generating the Ipa never ends (not in 
fast mode).

What is the expected output? What do you see instead?
Nothing, the ipa is not packed. It gets stuck at about 57%

What version of the product are you using? On what operating system?
Flash Builder 4.6 - Flex SDK 4.6.0 (build 23201) with Air 3.3.
Windows 7 x64

Please provide any additional information below.
It seems that to fix the problem, you just need to add the linkerOption node in 
the platform descriptor file (platform.xml) :
<linkerOptions>
       <option>-w</option>
</linkerOptions>

From Adobe, this would fix the issue by suppressing warnings.

Original issue reported on code.google.com by cecil3...@gmail.com on 30 Jun 2012 at 10:18