any one who knows that use adt to compile flex mobile projcet with air sdk 3.4 crash
[java] # A fatal error has been detected by the Java Runtime Environment:
[java] #
[java] # EXCEPTION_ACCESS_VIOLATION (0xc0000005) at pc=0x101a9871, pid=5004, tid=7544
[java] #
[java] # JRE version: 6.0_16-b01
[java] # Java VM: Java HotSpot(TM) Client VM (14.2-b01 mixed mode windows-x86 )
[java] # Problematic frame:
[java] # C [llvm.dll+0x1a9871]
[java] #
[java] # An error report file with more information is saved as:
[java] # E:\custom\build\deploy\ios\hs_err_pid5004.log
[java] #
[java] # If you would like to submit a bug report, please visit:
[java] # http://java.sun.com/webapps/bugreport/crash.jsp
[java] # The crash happened outside the Java Virtual Machine in native code.
[java] # See problematic frame for where to report the bug.
[java] #
[java] Undefined symbols for architecture armv7:
[java] "_abcMethod_AOTBuildOutput-0000000001_9708_9708_function spark.components.supportClasses::SkinnableTextBase.isOurFocus", referenced from:
[java] _ug_11903 in AOTBuildOutput-0.o
[java] "_abcMethod_AOTBuildOutput-0000000001_9465_9465_function spark.components::List.itemRemoved", referenced from:
[java] _ug_11903 in AOTBuildOutput-0.o
my adt command like that
<target name="7. Package for IOS" depends="6 Collect IOS">
<echo message="Packaging for IOS"/>
<java jar="${ADT}" fork="true" failonerror="true" dir="${publish_dir}/ios">
<arg value="-package"/>
<arg value="-target"/>
<arg value="ipa-test"/>
<arg value="-provisioning-profile"/>
<arg value="${ios_provisioning}"/>
<arg value="-storetype"/>
<arg value="pkcs12"/>
<arg value="-keystore"/>
<arg value="${ios_keystore}"/>
<arg value="-storepass"/>
<arg value="${ios_pass}"/>
<arg value="${ipa_file}"/>
<arg value="${app_name}-app.xml"/>
<arg value="Default.png"/>
<arg value="Default@2x.png"/>
<arg value="Default-Portrait.png"/>
<arg value="Default-Portrait@2x.png"/>
<arg value="${assets_dir_name}/." />
<arg value="${swf_file}" />
<arg line="-platformsdk F:/ios/iPhoneOS6.0.sdk/"/>
</java>
</target>
wating for help, thanks very much