Trying to build an adobe air ANE (Native iOS Extension) it fails while packaging the ANE with ADT. The error says conflicting package paths but i don't know which paths are meant?!
The Terminal Input:
adt -package -target ane Output.ane extension.xml -swc iBeacon-ANE_Air.swc -platform iPhone-ARM -C ios . -platformoptions platformoptions.xml . -platform default -C default .
The Terminal Output (Error):
Files "/Volumes/Lion/Users/.../Documents/.../iBeacons/build/ios/libiBeacon-ANE.a" and "/Volumes/Lion/Users/.../Documents/.../iBeacons/build/ios/libiBeacon-ANE.a" have conflicting package paths: /Volumes/Lion/Users/.../Documents/.../iBeacons/build/ios/libiBeacon-ANE.a
("..." in the paths are private parts)
I had the very same problem and I find the problem is the extra " ." in the command line! just change your command from:
to:
and it will work!