我可以在以后的版本中更改我的 Android 应用程序图标和名称吗?

声明:本页面是StackOverFlow热门问题的中英对照翻译,遵循CC BY-SA 4.0协议,如果您需要使用它,必须同样遵循CC BY-SA许可,注明原文地址和作者信息,同时你必须将它归于原作者(不是我):StackOverFlow 原文地址: http://stackoverflow.com/questions/26093962/
Warning: these are provided under cc-by-sa 4.0 license. You are free to use/share it, But you must attribute it to the original authors (not me): StackOverFlow

提示:将鼠标放在中文语句上可以显示对应的英文。显示中英文
时间:2020-08-20 09:59:47  来源:igfitidea点击:

Can I change my Android app icon and name in later release?

androidgoogle-playandroid-icons

提问by Kraken

This is going to sound stupid in a way, but I want to know if it is possible to change the application logo (icon) and Android name in my subsequent releases?

这在某种程度上听起来很愚蠢,但我想知道是否可以在我的后续版本中更改应用程序徽标(图标)和 Android 名称?

Say, today I push my app in the Android market, and tomorrow I want to change the logo/icon (I know I "should" not do this), but is it possible to do so? Also, what about the application name?

比如说,今天我在 Android 市场上推送我的应用程序,明天我想更改徽标/图标(我知道我“不应该”这样做),但是有可能这样做吗?另外,应用程序名称呢?

Thanks

谢谢

回答by Anand

I got the same question and I asked this to android developer support, got their reply as below

我遇到了同样的问题,我向 android 开发人员支持提出了这个问题,得到了他们的答复如下

You may update your icon displayed in Google Play by uploading the updated icon to the Store Listing tab of the Play Console. However, once the app has been installed on a device, the icon will be displayed from the graphic assets of the APK as defined in the “android:icon=” manifest property. The icon that is displayed in the apps list in the Play Console is also taken from the APK.

您可以通过将更新后的图标上传到 Play 管理中心的商品详情标签来更新您在 Google Play 中显示的图标。但是,一旦应用程序安装到设备上,图标将从 APK 的图形资产中显示,如“android:icon=”清单属性中定义的那样。Play 管理中心的应用列表中显示的图标也取自 APK。

To display a different icon, please update the icon image file in your APK. To find the location of the existing icon, you can use the manifest property or check your APK's “res” folder.

要显示不同的图标,请更新您的 APK 中的图标图像文件。要查找现有图标的位置,您可以使用清单属性或检查您的 APK 的“res”文件夹。

So I got the icon updated at app store without submitting the app again (Note: I have already submitted with the icon change, so what I was looking to is how this can be reflected to App store icon). Please see screenshots attached for getting someone who is needy.

所以我在应用商店更新了图标,而没有再次提交应用(注意:我已经提交了图标更改,所以我想要的是如何将其反映到应用商店图标)。请参阅随附的屏幕截图以获取有需要的人。

Left tabright tab

左侧标签右标签

回答by GabrielAtan

Yes, you can change the name and logo whenever you want by changing android:labeland android:logoattribute of your application tag in AndroidManifest.xml file.

是的,您可以随时更改名称和徽标android:label,方法android:logo是在AndroidManifest.xml file.

But, you can't change Packagename once you uploaded app on play store.

但是,Package一旦您在 Play 商店上传应用程序,您就无法更改名称。

回答by Maveňツ

You can Upload custom brand assets, screenshots, and videos to highlight what's great about your app. Provide a localized description, add notes about the latest version, and more. You can update your store listing at any time.

您可以上传自定义品牌资产、屏幕截图和视频,以突出您的应用程序的优点。提供本地化描述、添加有关最新版本的注释等。您可以随时更新商品详情。

enter image description here

在此处输入图片说明

Upload instantly publish

上传即刻发布

From the Developer Console you can quickly upload and publish a release-ready Android application package file. The app is a draft until you publish it, at which time Google Play makes your store listing page and app available to users—your app appears in the store listings within hours, not weeks.

从开发人员控制台,您可以快速上传和发布可发布的 Android 应用程序包文件。该应用在您发布之前是草稿,届时 Google Play 会向用户提供您的商品详情页面和应用 - 您的应用会在数小时而非数周内出现在商品详情中。

Once your app is published, you can update it as often as you want: Change prices, configuration, and distribution options at any time, without needing to update your app binary.

应用发布后,您可以根据需要随时更新:随时更改价格、配置和分发选项,无需更新应用二进制文件。

As you add features or address code issues, you can publish an updated binary at any time. The new version is available almost immediately and existing customers are notified that an update is ready for download. Users can also accept automatic updates to your app, so that your updates are delivered and installed as soon as you publish them. You can unpublish your apps app at any time.

在添加功能或解决代码问题时,您可以随时发布更新的二进制文件。新版本几乎立即可用,现有客户会收到更新可供下载的通知。用户还可以接受对您的应用程序的自动更新,以便您的更新在您发布后立即交付和安装。您可以随时取消发布您的应用。



update

更新

put your image in drawable folder and set in manifest file... like as

将您的图像放在 drawable 文件夹中并设置在清单文件中......就像

 <application android:icon="@drawable/icon" android:label="@string/app_name" >
 .... 
 </application>  

Note:

注意

The 512x512 icon you upload to the developer console (when you publish the app) is the one that will be seen in Google Play. The 36x36, 48x48, 72x72, and 96x96 icons you put in your drawable resource folders are what will show up on the device homescreen/app drawer.

您上传到开发者控制台(发布应用程序时)的 512x512 图标将在 Google Play 中显示。您放入可绘制资源文件夹中的 36x36、48x48、72x72 和 96x96 图标将显示在设备主屏幕/应用程序抽屉中。

回答by Sagar Pilkhwal

Yes, you can change the name by changing android:labelattribute of your application tag in AndroidManifest.xml. and also you can change the application icon, but i would recommend you to add the comment in "Whats New"regarding the new Application Icon when you upload the application.But, you can NOT change Package name once you uploaded app on play store.

是的,您可以通过更改AndroidManifest.xml 中应用程序标签的android:label属性来更改名称。并且您也可以更改应用程序图标,但我建议您在上传应用程序时在“Whats New”中添加有关新应用程序图标的评论。但是,一旦您将应用程序上传到 Play 商店,就无法更改包名称。

Also take a look at this SO Post

也看看这个SO Post

回答by Zia Muhammad

Yes, you can change Store listing on play store whenever you want and there is no limit for this. you can change and improve your listing in terms of Graphics and SEO improvements.

是的,您可以随时更改 Play 商店的商品详情,并且没有限制。您可以在图形和 SEO 改进方面更改和改进您的列表。

According to Google Developer Distribution Agreementyou can change and Modify:

根据谷歌开发者分发协议,您可以更改和修改:

  1. Application Name
  2. Icon/ Screenshots
  3. Graphics/ feature Graphic
  4. Application Policy and agreements
  5. Featured Video
  6. ASO/ Keywords and description
  1. 应用名称
  2. 图标/截图
  3. 图形/特征图形
  4. 申请政策和协议
  5. 精选视频
  6. ASO/ 关键字和描述

There is no harm implementing these changes but this could take a while to implement changes depending on account health and your geographical location...

实施这些更改没有害处,但根据帐户健康状况和您的地理位置,实施更改可能需要一段时间......

This is my application (Play Store Link...). I have released multiple versions and implemented major changes in each version.

这是我的应用程序(Play 商店链接...)。我发布了多个版本,并在每个版本中进行了重大更改。

I changed icon and graphics more than 5 times and improved ASO couple of times. This not just improved my user experience but also increased daily installs.

我更改了 5 次以上的图标和图形并改进了 ASO 几次。这不仅改善了我的用户体验,还增加了每日安装量。

Based on my experience I will recommend continuous changes for best application optimization. and I want to recommend targeting events like:

根据我的经验,我会建议持续更改以获得最佳应用程序优化。我想推荐定位事件,例如:

Christmas and New year, Independence Day, Halloween update, etc...

圣诞节和新年、独立日、万圣节更新等...

These types of updates entertain users and increase engagements and also helpful to build trust with your users.

这些类型的更新娱乐用户并增加参与度,也有助于与用户建立信任。