Skip to main content
Known Participant
July 24, 2019
Question

Package AIR 64-bit application (captive runtime bundle) using IntelliJ Idea

  • July 24, 2019
  • 1 reply
  • 1186 views

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.

This topic has been closed for replies.

1 reply

Legend
July 24, 2019

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.

DHL83Author
Known Participant
July 25, 2019

Thanks el111​! I feel kind of stupid now. It compiled perfectly.