Getting the "invalid application descriptor: Unknown namespace: library: //ns.adobe.com/flex/spark"
when using adl (command line debugger) for flash-builder 4.6 project adobe air project
his very simple project
The mxml file starts as follows:
<?xml version="1.0" encoding="utf-8"?>
<s:WindowedApplication xmlns:fx="http://ns.adobe.com/mxml/2009"
xmlns:s="library://ns.adobe.com/flex/spark"
invoke="onInvoke(event)" visible="false"> ...
I read about problems with similer where the solution was to replace xmlns with the value " http://ns.adobe.com/air/application/3.1 " /.
the values ββchange:
"invalid application descriptor: application file name must be non-empty
and
, ,
flash-builder
im, adl
?
:
:
<?xml version="1.0" encoding="utf-8" standalone="no"?>
<application xmlns="http://ns.adobe.com/air/application/3.1">
<id>exporter</id>
<filename>exporter</filename>
<name>exporter</name>
<versionNumber>0.0.0</versionNumber>
<initialWindow>
<content>[This value will be overwritten by Flash Builder in the output app.xml]</content>
<autoOrients>false</autoOrients>
<fullScreen>false</fullScreen>
<visible>false</visible>
</initialWindow>
</application>