简体   繁体   中英

TestFlight to Production

I have a large list of users using my beta app via TestFlight. Will their apps get updated via the AppStore when I go live? 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.

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.

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

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM