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

2023-09-04 06:43:29 作者:ヾ十足娚神范メ」

我提交了一个应用程序到应用程序商店去年,我发现了几个星期前,这个名字被用于类似的东西。有没有办法来改变应用程序的名称?

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的特定部分应用程序标记机器人标签属性,如下所示:

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的属性机器人:标签不允许覆盖。我猜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.

在安卓设备上的名称已被更改。但是,我还没有这个上传到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,但你可以改变名称。我改了名字,创造了一个新的版本,上传到了谷歌应用程序商店,它已经成功地改变了对谷歌的应用程序商店。

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.

推荐答案

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

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.