Flex mobile 如何更改应用程序名称?

发布于 2024-12-11 19:18:57 字数 90 浏览 3 评论 0原文

当我完成将程序构建到应用程序并安装它时,应用程序名称(显示在其图标下方)称为“Main”。

如何将“主要”更改为更有意义的内容,例如“我的应用程序”?

When i finish building my program into an app and install it, the app name (appear below its icon) is call "Main".

How do I change the "Main" into something more meaning full like "My App"?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

旧情别恋 2024-12-18 19:18:57

在 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>

At the root in your src folder, there is a corresponding xml file named after your application ending with "-app.xml" that defines meta information of your application. Update the name property (and be sure to check filename and id as well).

<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>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文