0

我做了一个小 Flash 游戏,我正在尝试将它导出到 APK 以在 Android 上使用它,这是我的第一个“项目”,所以这对我来说是全新的,这是我的 XML 文件:

<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<application xmlns="http://ns.adobe.com/air/application/2.5">
    <id>com.rockpaperguitars.test1</id>
    <versionNumber>1.0.0</versionNumber>
    <filename>test1</filename>
    <description>just a test</description>
    <name>tablature game</name>
    <copyright>Ryan S</copyright>
    <initialWindow>
        <content>test1.swf</content>
        <visible>true</visible>
        <fullScreen>true</fullScreen>
        <autoOrients>false</autoOrients>
            <systemChrome>standard</systemChrome>
    <transparent>false</transparent>
        <aspectRatio>landscape</aspectRatio>
        <renderMode>gpu</renderMode>
    </initialWindow>
    <customUpdateUI>false</customUpdateUI>
    <allowBrowserInvocation>false</allowBrowserInvocation>
    <icon>
        <image36x36>icon36.png</image36x36>
        <image48x48>icon48.png</image48x48>
        <image72x72>icon72.png</image72x72>
    </icon>
    <android>
        <manifestAdditions><![CDATA[<manifest>
<uses-permission android:name="android.permission.WAKE_LOCK"/></manifest>
]]></manifestAdditions>
    </android>
    <versionLabel>1</versionLabel>
</application>

然后我尝试使用以下方法打包它:

adt -package -target apk -storetype pkcs12 -keystore TestFlashAndroidApp.p12 Tablature.apk TestflashAndroidApp.xml test1.swf icon36.png icon48.png icon72.png

但我收到此错误:

error 301: application descriptor must be at least namespace 3.0

你能告诉我我做错了什么吗?

4

2 回答 2

2

您在上面发布的 XML 文件称为应用程序描述符。文件格式的命名空间编号显示在第一个节点 -

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

您需要更改此编号以匹配您正在使用的 AIR 编译器的版本。您可能使用的是 3.0 或更高版本,这就是您看到该消息的原因。将数字更改为 3.0 而不是 2.5,它应该可以正常工作。

于 2013-07-05T15:47:52.927 回答
1

将此行更改 <application xmlns="ns.adobe.com/air/application/2.5">;<application xmlns="ns.adobe.com/air/application/3.0">;

看看它是否有效

于 2013-07-05T16:02:59.043 回答