当我完成将程序构建到应用程序并安装它时,应用程序名称(显示在其图标下方)称为“Main”。
如何将“主要”更改为更像“我的应用”的意思?
答案 0 :(得分:3)
在src文件夹的根目录下,有一个相应的xml文件,以你的应用程序命名,以“-app.xml”结尾,用于定义应用程序的元信息。更新name属性(并确保同时检查文件名和ID)。
<application xmlns="http://ns.adobe.com/air/application/2.6">
<!-- Adobe AIR Application Descriptor File Template. -->
<!-- A universally unique application identifier. -->
<id>com.myDomain.myName</id>
<!-- Used as the filename for the application. Required. -->
<filename>myFilename</filename>
<!-- The name that is displayed in the AIR application installer.
May have multiple values for each language. See samples or xsd schema file. Optional. -->
<name>myName</name>