Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

iOS, testFlight, app can't connect to the Internet

I installed testFlight, added app to the iTunes connect, and downloaded it using testFlight. My test app can't connect to the internet. But If I upload my app through the cable - Internet works.

like image 361
Vasily Bodnarchuk Avatar asked Aug 19 '15 11:08

Vasily Bodnarchuk


People also ask

How do I fix TestFlight unavailable?

Turn Wi-Fi off or connect mobile network. Delete and reinstall TestFlight. Remove any zeros from the build number and resubmit the build. Change the build number and resubmit the new build.

Is TestFlight tied to Apple ID?

TestFlight forces you to use your iTunes Apple ID, which means whenever I want to either go into TestFlight or go to buy music, I have to switch credentials.

How do I use TestFlight app on iOS?

Testing iMessage apps (iOS or iPadOS 10, or later)Install TestFlight on the iOS or iPadOS device that you'll use for testing. Open your email invitation or tap the public link on your iOS or iPadOS device. Tap View in TestFlight or Start Testing; or tap Install or Update for the app you want to test.

How do I enable TestFlight public link?

Go to your app's TestFlight page, click any external tester group, and click Enable Public Link. You'll have the option to set a limit for the number of testers that can join a group through your public link, and you can disable the link at any time. Enjoy this post?


2 Answers

Had the same issue but rebuilt to my phone and it did not connect to the internet either.

Seems to be an issue with the App Transport Security, new in iOS9

like image 180
mj662 Avatar answered Oct 05 '22 10:10

mj662


Feedback :

Common solution is App Transport Security in info.plist .

In my case, there was an error in my request, causing it to return null value, which couldn't be handled by my script. Returned var was empty and nothing was displayed. It seemed like it couldn't access internet but it was actually a data problem. Request corrected with null handling => App working fine now.

Thanks everyone !

like image 31
Vincent Monteil Avatar answered Oct 05 '22 12:10

Vincent Monteil