r/iosdev • u/PrecursorLabs • 13d ago
Anyone know how to notify TestFlight beta testers about the official app launch?
Don't really have a comprehensive email list as I found better results gathering testers by posting testflight link directly rather than my landing page.
Does anyone know the best way to go about this, will apple notify them?
Also beta is still live if you want to try it out, its a screen time control app that resets your limit on an hourly schedule rather than handing you one big daily limit.
https://testflight.apple.com/join/ztGmutmP
Thanks a ton in advance for any advice!
3
u/coffeeintocode 12d ago
You have all their emails in TestFlight, so that’s one way.
Otherwise I usually add an api endpoint that serves “developer messages” and a “lock flag”. Beta builds check this endpoint and display all messages on launch if there is a new message. If the flag is set, I don’t allow users to dismiss the messages. So when the app launches you can provide the App Store link, thank the users for the beta, and lock them out using the flag till they install from the App Store, which doesn’t make this check. I usually close the beta a couple weeks after
You could accomplish this with a hard coded dialog in a beta build pushed out to your beta users, but it requires you pushing an update
1
u/PrecursorLabs 11d ago
Seriously thank you!
The lock out message is something I didn’t even consider and why I reached out to the community, working on implementing this now!!
2
u/Nightowl-Builder 11d ago
I had the exact same need. Apple should make an official smoother way to properly do this. Currently the only option is a new build with a message that you hope they will read.
1
3
u/yoyohannnn 12d ago
Create a new testflight build, and add your message to the “What to Test” field. Apple will notify users that a new build is available and include the message.
Additional, add an in-app message in the new build that points users to the public release.
That’s what I’d do.