英文:
Expo react-native update icon on build app
问题
我想要更新我的移动应用程序的图标。但它不会改变。我已经发布了一个成功的更新,应用内的变化已经改变了。唯一没有改变的是图标。
我该如何更新它?
英文:
So I want to update the icon of my mobile app. But it won't change. I've already published an update that went successful, the in app changes has been changed. The only thing that has not been changed is the icon.
How can I update it?
答案1
得分: 1
根据这里可见,Expo更新仅改变应用程序的非本地部分
(例如:位于应用程序页面内的JS、样式和图像)。
应用程序图标是应用程序的本地部分,因此您需要发布一个新的.ipa
或.aab
文件,并将它们发布到应用商店中的修订版本,以便您的应用程序将更新并更改图标(或任何其他本地部分)。
英文:
As you can read here, expo updates only changes the non-native parts
of the app (eg: JS, styling and images those are inside pages of your app).
App icon is a native part of the app so you'll need to release a new .ipa
or .aab
and publish them to revision inside stores so your app will update and change the icon (or any other native part)
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论