Copy link to clipboard
Copied
Hi, I'm using IntelliJ IDEA Ultimate to develop and package my Adobe AIR application for Windows. How do I package a 64-bit version? I found this thread: How do I create a Captive 64 bit Adobe Air Application For Windows? that mentions the <architecture>64</architecture> tag, but when I add it (below "name") to my .xml file, IntelliJ complains and says "Element architecture is not allowed here".
I'm on a Win 10 Pro x64 laptop.
Copy link to clipboard
Copied
That's the correct tag eg
<?xml version="1.0" encoding="utf-8" standalone="no"?>
<application xmlns="http://ns.adobe.com/air/application/32.0">
<id>com.my.app</id>
<architecture>64</architecture>
That's just a warning in parsing the xml.
You can still do Build > Package AIR application.
I am using AIR32 and IJ 2019 on Windows and packaging for 64bit works fine for me.
Copy link to clipboard
Copied
Thanks el111! I feel kind of stupid now. It compiled perfectly.