所以我之前上传了一个代码推送,目标版本是">=1.0.1“(已经在应用商店上发布了)
但是现在我有一个更新的版本上传到了Testflight版本1.0.2,所以我回到了App center代码推送控制台,并将之前发布的代码推送的目标版本更新为">=1.0.1 <1.0.2“。
但当我从Testflight安装1.0.2版时,旧的更新仍在下载中。所以我想知道的是,我所做的有意义吗?或者有没有更好的上传新版本应用程序的流程?
发布于 2021-03-11 10:33:54
下面的表格是从SO上的答案中提取的:How to deploy CodePush bundle for multiple versions?
Range Expression Who gets the update
---------------- ----------------------
1.2.3 Only devices running the specific binary app store version 1.2.3 of your app
* Any device configured to consume updates from your CodePush app
1.2.x Devices running major version 1, minor version 2 and any patch version of your app
1.2.3 - 1.2.7 Devices running any binary version between 1.2.3 (inclusive) and 1.2.7 (inclusive)
>=1.2.3 <1.2.7 Devices running any binary version between 1.2.3 (inclusive) and 1.2.7 (exclusive)
1.2 Equivalent to >=1.2.0 <1.3.0
~1.2.3 Equivalent to >=1.2.3 <1.3.0
^1.2.3 Equivalent to >=1.2.3 <2.0.0因此,对于">=1.0.1 < 1.0.2“,似乎您请求的更新将影响所有应用程序版本1.0.1或更低,以及1.0.2之前的所有应用程序版本,但不包括1.0.2。
https://stackoverflow.com/questions/63734512
复制相似问题