Is there a way to change the name of an application on Google Play app store?(有没有办法在 Google Play 应用商店中更改应用程序的名称?)
问题描述
我去年向应用商店提交了一款应用,几周前我发现该名称被用于类似的用途.有没有办法更改应用程序的名称?
I submitted an app to the app store last year and I found out a few weeks ago the name is being used for something similar. Is there a way to change the name of the app?
更新:
在 AIR 中,您的应用程序有一个应用程序描述符文件.在应用程序描述符文件中是 Android 清单.
UPDATE:
In AIR you an application has an application descriptor file. In the application descriptor file is the Android manifest.
在应用程序描述符文件中更改名称属性(保持 id 相同):
In the application descriptor file change the name attribute (leave the id the same):
<application xmlns="http://ns.adobe.com/air/application/3.6">
<id>com.mycompany.myAppID</id>
<filename>MyApplicationFile</filename>
<name>My Application Name</name>
起初我以为你需要在Android特定部分更改应用程序标签上的android:label"属性,如下所示:
At first I thought that you needed to change the "android:label" attribute on the application tag in the Android specific section as shown:
<android>
<manifestAdditions><![CDATA[
<manifest android:installLocation="auto">
<uses-sdk android:targetSdkVersion="12"/>
<uses-sdk android:minSdkVersion="8"/>
<application android:label="My Application Name"></application>
</manifest>
]]></manifestAdditions>
</android>
但是当我这样做时,我会得到一个错误,错误 404:Android 属性 android:label 不允许被覆盖".我猜 AIR 编译器正在通过 name 属性设置该属性.
But when I did that I would get an error, "error 404: Android attribute android:label is not allowed to be overridden". I'm guessing the AIR compiler is setting that attribute through the name property.
在设备上的 Android 中,名称已更改.但是,我还没有将它上传到 GooglePlay.我想我也需要在那里更改应用程序产品名称.
In Android on the device the name has been changed. However, I have yet to upload this to GooglePlay. I think I need to change the application product name there as well.
更新
答:更改名称属性.
UPDATE
Answer: Change the name property.
<application xmlns="http://ns.adobe.com/air/application/3.6">
<id>com.mycompany.myAppID</id>
<filename>MyApplicationFile</filename>
<name>Application Name Can Change</name>
您无法更改答案中提到的 ID,但可以更改名称.我更改了名称,创建了一个新版本,将其上传到 Google 应用商店,它已成功在 Google 应用商店中更改.
You cannot change the ID as mentioned in an answer but you can change the name. I changed the name, created a new build, uploaded it to the Google app store and it has changed on the Google app store successfully.
推荐答案
原来我要更改应用程序的名称所要做的就是更改应用程序描述符文件中的 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.
这篇关于有没有办法在 Google Play 应用商店中更改应用程序的名称?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!