英文:
How to change the default language for the App Store Connect and the Google Play Console?
问题
在我的Flutter项目中,我正在使用Fastlane来部署我的应用程序:
- 在App Store Connect上使用
deliver
命令 - 在Google Play控制台上使用
supply
命令。
我的应用目前只提供法语版本(fr-FR
),但现在我已经将其提供了法语和英语版本(en-US
)。
我已为iOS和Android设置了所有的元数据,以便在法语和英语版本中提供所有的文本和截图,但我还遇到了一个问题:如何将英语设置为两个商店的默认语言,以供那些设备既未设置为法语也未设置为英语的用户使用?
对于deliver和supply(尤其是supply
)的文档对我来说并不清晰。
编辑:我可以轻松地在Google Play商店中手动更改默认语言,所以这不再是一个问题。但是,我仍然在苹果上遇到了问题,因为苹果不允许我在App Store Connect中手动更改默认语言...
编辑2:我还尝试了以下命令:fastlane run produce language:"English"
,但没有效果,我得到的答复是:App 'com.myapp' already exists (1666123456), nothing to do on App Store Connect
谢谢。
英文:
In my Flutter project, I'm using Fastlane to deploy my app:
- on the App Store Connect using the
deliver
command - on the Google Play Console using the
supply
command.
My app is currently available in French only (fr-FR
) but now I made it available in both French and English (en-US
).
I setup all my metadata for both iOS and Android so I get all the texts and screenshots available in both French and English, but I'm stuck with one last problem: How to set English as the default language for both stores for users whose devices are set neither in French nor in English?
The documentation for both deliver and supply (especially supply
) is not clear for me.
EDIT : I can easily change the default language manually in the Google Play Store so it's no longer a problem. But I'm still stuck with Apple that doesn't allow me to even change the default language manually in the App Store Connect...
EDIT 2 : I also tried the following command: fastlane run produce language:"English"
, but it has no effect, I got the answer: App 'com.myapp' already exists (1666123456), nothing to do on App Store Connect
Thanks.
答案1
得分: 1
这是App Store Connect的解决方案:
- 在左上角点击“添加新版本”
- 更新主语言并保存
之后,我仍然能够使用在第一步输入的相同版本号来运行我的CI(使用Fastlane)。
英文:
Here is the solution for the App Store Connect:
- click on "Add a new version" at the top left
- update the primary language and save
After that, I was still able to run my CI (using Fastlane) with the same version number I entered in the first step.
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论