Skip to main content
Participant
July 21, 2011
Question

Air 2.7 and MacOs Lion: iPhone packager does not work

  • July 21, 2011
  • 1 reply
  • 1162 views

hi. After upgrading from Snow Leopard to Lion the iPhone packager does not work. It throws an error concerning the Application Version Number. Is this a Know bug? Is there a work- around?  Thanks.  Michael.

This topic has been closed for replies.

1 reply

Participating Frequently
July 21, 2011

I'm getting this issue too, although running on windows 7...

When I try and compile my app adt inserts the following line into my descriptor file, which then results in an error being thrown:

<aaa:versionNumber xmlns:aaa="http://ns.adobe.com/air/application/2.6">0.01</aaa:versionNumber>

Not sure what I'm doing wrong, when I check adt.bat -version it says 2.7.0.20020 so it's not like I'm still on 2.6?

Colin Holgate
Inspiring
July 21, 2011

The start of the descriptor file shouldn't look like that, it should be more like:

<?xml version="1.0" encoding="utf-8" standalone="yes"?>

<application xmlns="http://ns.adobe.com/air/application/2.7">

    <id>AppName</id>

    <versionNumber>1.0.1</versionNumber>

You have an "aaa" namespace thing going on, might that confuse things?

Participating Frequently
July 21, 2011

Yeah sorry, the start of my descriptor looks like this:

<?xml version="1.0" encoding="utf-8" standalone="yes"?>

<application xmlns="http://ns.adobe.com/air/application/2.7">

  <id></id>

  <versionNumber></versionNumber>

  <filename>d</filename>

  <description/>

  <name></name>

When I go to compile the app the compiler inserts that line into my descriptor at the very bottom (just before the application tag closes). It's weird, I tried setting the <application xmlns="http://ns.adobe.com/air/application/2.7"> back to 2.6 and it works and seems to compile in 2.7 (as I noticed the timer bug).

Anyway, I only tried 2.7 because I heard the GPU fullscreen bug had been fixed, but given that the timer issue still remains I'll go back to 2.6 for the time being.

Thanks