将在移动应用程序中进行的更改传输给用户而无需更新。

huangapple go评论68阅读模式
英文:

How to transfer the changes made in a mobile application to the user without updating?

问题

我使用Flutter制作了一个移动应用程序,我如何将我在应用程序内部做的一些小的更改、添加或编辑传递给用户,而不需要更新他们,我如何将它们传递到我的移动应用程序中?

我如何在不更新的情况下将所做的更改传递给用户?

英文:

I made a mobile application with Flutter, how can I transfer some minor changes, additions or edits I made within the application to the user without updating them, how can I transfer them to my mobile application?

How can I transfer the changes made to the user without updating?

答案1

得分: 1

在你的情况下,你可以使用Shorebird的“Code push”服务,这是一个相对较新的服务,允许开发人员轻松地将更新推送到他们的应用程序,而无需经过传统的应用商店批准过程。基本上,这意味着开发人员可以实时快速部署应用程序的错误修复或小功能更新,而无需等待应用商店的审核和批准过程。

要使用Shorebird的“Code push”服务,首先必须将你的应用程序托管在Shorebird的服务器上,然后可以使用Shorebird提供的命令行界面(CLI)将更新以补丁的形式推送到应用程序。这项服务特别适用于需要迅速实施而无需延迟的小改变,比如错误修复。

我将下面的链接留给你供参考:

https://shorebird.dev/

英文:

In your case, you can use Shorebird's "Code push" which is a relatively new service that allows developers to easily push updates to their applications without having to go through the traditional app store approval process. Essentially, this means that developers can quickly deploy bug fixes or small feature updates to their apps in real-time, rather than having to wait for an app store review and approval process.

To use Shorebird's "Code push" service, you must first host your application on Shorebird's server, after which they can use the CLI (Command Line Interface) provided by Shorebird to push updates to the app in the form of patches. This service is especially helpful for small changes, such as bug fixes, that need to be implemented quickly and without delay.

I'll leave the link below for your reference

https://shorebird.dev/

答案2

得分: 0

这是不可能的,除非你一开始计划这样做。
例如,你可以将本地化字符串放入Firebase远程配置中,然后当你更新配置时,用户可以在不更新应用的情况下看到更改。
但在你的情况下,你应该再次提交新的应用版本到App Store和Google Play。

英文:

This is not possible unless you planned to do it at first.
For example, you may put the localization strings into Firebase remote config, then when you update the config, the users can see the changes without updating the app.
But in your case, you should submit the new app version to App Store and Google Play again.

huangapple
  • 本文由 发表于 2023年5月13日 21:35:29
  • 转载请务必保留本文链接:https://go.coder-hub.com/76243005.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定