Flash Creating an invalid namespace with AIR 14.0

I am using Flash Develop 4.6.2.5 and I am unable to compile my application with the AIR versions above 3.9

.

I tried with 4.0

, 13.0

and14.0

Packaging: dist\app.apk

project\application.xml: error 102:
Invalid namespace http://ns.adobe.com/air/application/14.0 APK setup creation

FAILED.

      


Here are all the procedures I've already done:

Step 01

Step 02

Step 03

Step 04

+3


source to share


1 answer


After some struggle, here's a solution:

Switch the PATH order to SetupSDK.bat

(line ~ 35):

Original:

:succeed


set PATH=

%PATH%

;%FLEX_SDK%\bin



Modified:

:succeed


set PATH=%FLEX_SDK%\bin;

%PATH%


The problem must be related to something I have set on my system %PATH%

that conflicts with something %FLEX_SDK%

by switching the order that you make the packer prefer the Flex SDK.

+2


source







All Articles