且构网

分享程序员开发的那些事...
且构网 - 分享程序员编程开发的那些事

有没有办法在 Google Play 应用商店中更改应用程序的名称?

更新时间:2023-10-25 16:34:46

原来我要更改应用程序的名称所要做的就是更改应用程序描述符文件中的 name 属性.

It turns out that all I had to do to change the name of the app is to change the name property in the application descriptor file.

之前:

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

    <id>com.mycompany.myAppID</id>
    <filename>MyApplicationFile</filename>
    <name>My Application Name</name>

</application>

之后:

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

    <id>com.mycompany.myAppID</id>
    <filename>MyApplicationFile</filename>
    <name>My Shiny New Application Name</name>

</application>

我更改了名称,创建了一个新的构建和包,将其上传到 Google 应用商店并发布.上传几分钟后,我更改了 Google 应用商店列表的名称.当应用程序更改上线时,应用程序名称已更改.该应用程序可能处于草稿模式,但我想我是在更改商店名称之前意外发布的.无论哪种方式,它都已更新.

I changed the name, created a new build and package, uploaded it to Google app store and published. I changed the name of the Google app store listing a few minutes after upload. When the app changes went live the app name was changed. The app may have been in draft mode but I think I published it on accident before changing the name in the store. Either way it's updated.

应用 ID 显示在某些位置和列表中,并且在将其提交到某些应用商店后,您无法通过 AFAIK 对其进行更改,除非使用该 ID 提交新应用.

The app ID shows up in some locations and lists and there is nothing you can do AFAIK to change it after it has been submitted to some app stores except submit a new app with that ID.