简体   繁体   English

TestFlight到生产

[英]TestFlight to Production

I have a large list of users using my beta app via TestFlight. 我有一大堆用户通过TestFlight使用我的测试版应用程序。 Will their apps get updated via the AppStore when I go live? 当我上线时,他们的应用程序是否会通过AppStore进行更新? Just wondering if there's an automated way to have my beta testers get the production app without having to uninstall and reinstall the app. 只是想知道是否有自动方式让我的beta测试人员获得生产应用程序而无需卸载并重新安装应用程序。

I don't believe there is. 我不相信有。 They would have to install the app from the app store manually. 他们必须手动从应用商店安装应用。

App won't get updated automatically, there is one way you can do is check the version number of current build & need a web service call verify that higher version is available or not available then ask user to update the App. 应用程序不会自动更新,您可以采取的一种方法是检查当前构建的版本号并需要Web服务调用验证更高版本是否可用然后要求用户更新应用程序。

if let text = Bundle.main.infoDictionary?["CFBundleVersion"] as? String {
            print(text)
        } 

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

相关问题 生产中的TestFlight setDeviceIdentifier - TestFlight setDeviceIdentifier in production TestFlight的开发和生产 - TestFlight development and production TestFlight 中用于生产和登台的单独应用程序? - Separate apps in TestFlight for production and staging? 使用 Testflight sdk 获取 iOS 应用的生产数据 - Getting Production data for iOS apps with Testflight sdk 用于Testflight和生产版本的单独的iOS应用和图标 - Separate iOS apps and icons for Testflight and production builds 现在,TestFlight Live成为私有的FlightPath测试版,我们还能将TestFlight留在生产版本中吗? - Now that TestFlight Live became private FlightPath beta, can we still leave TestFlight in production builds? Meteor应用程序不会在生产中的iOS上下载数据,但可以在TestFlight中使用 - Meteor app does not download data on iOS in production, but works in TestFlight 如何将 google play 和 testflight 中的 beta 用户移动到生产应用程序 - How to move beta users in google play and testflight to the production app 适用于Testflight版本的APNS aps-environment-Entitlement / App的生产版本 - APNS aps-environement-Entitlement for Testflight Version / Production build of App 从开发切换到生产后,TestFlight期间的CloudKit数据 - CloudKit data during TestFlight once switching from development to production
 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM