Multiple IOS Native Extension
Hi everyone,
ok, I'm trying to compile an IOS application in AIR and I have to use 2 differents native extension.
I use ANT to execute the ADT command line but I got an error message that don't seems to happen to anyone!
The console simply says : Conflict in filename : unpack/catalog.xml
I specify the -extdir twice because I use subfolder for each NativeExtension.
ANT look like this:
<target name="ipa">
<exec executable="${sdk.air}/bin/adt" failonerror="true">
<arg value="-package"/>
<arg value="-target"/>
<arg value="ipa-debug-interpreter"/>
<arg value="-provisioning-profile"/>
<arg value="${provision.wildcard}"/>
<arg value="-storetype"/>
<arg value="pkcs12"/>
<arg value="-keystore"/>
<arg value="${keystore.file}"/>
<arg value="-storepass"/>
<arg value="${keystore.password}"/>
<arg value="../${project.name}.ipa"/>
<arg value="${project.name}-app.xml"/>
<arg value="-extdir"/>
<arg value="${extension.camera}"/>
<arg value="-extdir"/>
<arg value="${extension.p2p}"/>
<arg value="${project.name}.swf"/>
<arg value="-platformsdk"/>
<arg value="${sdk.ios}"/>
</exec>
</target>
I think that it's because ADT unzip and move some stuff in the same directory. Does someone have a clue for me ?
Thanks!
