且构网

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

有没有办法来改变对谷歌Play应用商店的应用程序的名称?

更新时间:2023-12-01 11:14:46

事实证明,我必须要做些什么来改变应用程序的名字改名字属性在应用程序描述符文件。

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>

我改了名字,创造了一个新的构建和打包,上传到谷歌应用程序商店并公布。我改变了谷歌应用商店上市上传几分钟后的名称。当应用程序的变化去住的应用程序名称已更改。该应用程序可能已经在草稿模式下,但我认为我发表它的事故改变商店的名称之前。无论哪种方式,它的更新。

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出现在一些地方和列表,并有你能做到这一点已经提交给某些应用程序商店后,除了提交与该ID的新的应用程序AFAIK去改变它什么都没有。

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.