Questions tagged [testflight]

TestFlight was a developer tool provided by Apple for distributing iOS builds wirelessly to beta testers. The service was terminated on February 26, 2015, and the functionality is now provided by iTunes Connect.

TestFlight was a developer tool provided by Apple for distributing iOS builds to beta testers. The service was terminated on February 26, 2015, and the functionality is now provided by iTunes Connect.

TestFlight Beta Testing makes it easy to invite users to test your iOS apps before you release them on the App Store. You can invite up to 1,000 external testers using just their email address.

Registered Apple developers could invite 25 internal testers using an iTunes Connect account using just an email address. Internal testers have immediate access to beta builds after they have been uploaded to iTunes Connect. External testers will have access after the build has undergone a beta app review process which typically takes less time than a full review for the App Store. Beta app review is not required when uploading additional builds of the same app version as long as there have not been "significant" changes made.

Prior to Apple acquiring TestFlight, it was a developer tool used for distributing iOS and Android builds to testers. The original TestFlight site is scheduled to shut down on February 26th 2015.

Reference:

2105 questions
0
votes
0 answers

Flutter firebase Notifications sent from test environment to production environment

I have a flutter app in TestFlight environment, working properly. When I published that app, there was a problem with push notifications from firebase. Devices used in test environment get this error. When Testflight environment send notification,…
0
votes
1 answer

RTCFATAL Exception error is instantly crashing my react native app in Testflight

I currently have an application that I created. I am done with the development part and now I want to deploy my app to the Apple App Store for review. Right now, I am building it and testing it on Testflight. It runs perfectly in my local…
ojandali
  • 133
  • 7
0
votes
0 answers

FCM notifications not receiving on iOS TestFlight app

My app should receive Firebase Cloud Messaging push notifications. When I tested the app on my device through Xcode building the app was able to receive the notifications and display them in the notification center. However, when I published the app…
Joe Lin
  • 13
  • 3
0
votes
0 answers

iOS App Development - autofill service missing

I have created an iOS mobile application (XCode / Swift) that is built with 2 main targets: application itself application extension (Autofill Service - similar to LastPass for example). Having said that, when I build or archive only the…
Chananel
  • 13
  • 5
0
votes
1 answer

How to upload flutter ios project to testflight with widgetkit widget

I have a flutter in which I have created widgetKit widget inside Xcode, now when I am trying it to upload it to testFlight it has uploaded but I can not see it in my apple testFlight. are there any special steps which I have to take with my…
0
votes
0 answers

Asset validation failed ,agorartc.framework

We are getting this error while quploading xcode ipa to test flight Asset validation failed (90125) The binary is invalid. The encryption info in the LC_ENCRYPTION_INFO load command is either missing or invalid, or the binary is already encrypted.…
0
votes
1 answer

Blank white screen when expo app uploaded to TestFlight (built with EAS)

My React native app is bundled using EAS. When I run my app using expo start or expo start --no-dev --minify on expo go or the xcode simulator via expo, I get no issues and my app runs flawlessly. When I compile the app with EAS, use Apple's…
0xFarted
  • 11
  • 1
0
votes
1 answer

Testflight invitation not sent

I have been developing iOS apps for more than 3 years now. One of my clients installed the app via TestFlight in early 2021 on his iPhone. Now that he has changed his phone, I tried to add him to the TestFlight app again, but he didn't receive the…
mychar
  • 1,031
  • 1
  • 11
  • 20
0
votes
0 answers

Is there a limit how often a developer can push updates to TestFlight?

When using TestFlight and pushing updates to a Github repository, I am wondering if there are any limits on how frequently developers can push new updates to TestFlight. Specifically, I want to automatically create a new TestFlight version every…
holger
  • 382
  • 1
  • 6
  • 13
0
votes
0 answers

Apple Testflight: how to re-invite internal user after user stop test

one user accept the testflight invite and stop it, but currently the user want to re-test app. i already resend the testflight invite, but the user click the invite email, it not success and show the error. (refer the image) enter image description…
0
votes
0 answers

How add external testers group in fastlane

I have multiple uploaded builds in Testflight. How can I add existing test group to any build via fastlane?
tereks
  • 1,256
  • 9
  • 15
0
votes
1 answer

Can't able to take a build of my iOS flutter app, but able to run the iOS flutter app in my iPhone + flutter + testflight

im trying to deploy my 7th version of my app into testing in testflight. i did run the below code flutter clean rm ios/Podfile && flutter build ios and its encountering the below image error the problem is that i check my apple developers account…
0
votes
0 answers

Private pods showing as .bundle file instead of framework

So I created a private podfile repository where I store my podfile with source linked to private pods (code below), I succsefully added source and pod lines into my Podfile and I was able to use this private SDK. My problem is when I try to upload…
aleksander frnczak
  • 399
  • 1
  • 2
  • 12
0
votes
0 answers

Xcode - binary file is not permitted while adding private pod

I'm not a swift developer So I am sorry in advance if this question is too trivial: I have an application where I added private pods library (according to this tutorial) Then I added to ma Podfile source 'path/to/private/pods/repository' pod…
aleksander frnczak
  • 399
  • 1
  • 2
  • 12
0
votes
1 answer

How can I conditionally point an iOS app to a QA or PROD environment depending on where it's downloaded from?

Essentially I would like a single build of my app to point to 2 different environments QA and PROD depending on where it's downloaded from, would this be a good future proof way to accomplish it? Based on this conditional I would point the app to…