Disable the test flight assembly update window

I added a test SDK to my project. When I load the assembly on a test flight and load this assembly using a shortened reference to the test field, I get a window to update the test flight, even if my assembly is new. want to turn off this test flight screen that appears inside my application. If any of them know about this, please help me. Thanks in advance.

+4
source share
2 answers

I had the same issue that I reported to Tesflight. This seems to be a known bug.

The workaround is to completely disable the application update with the following line:

[TestFlight setOptions:@{@"disableInAppUpdates":@YES}]; 

It only works with SDK version 1.1.

+5
source

I found that if I had not increased the number of the target version of the ios application, I would always get an error window.

+2
source

Source: https://habr.com/ru/post/1437134/


All Articles