Search code examples
ios6testflight

Disable the Test-flight build updating window


I have added test-flight SDK into my project.when I upload build on test-flight and download that build using test-flight shorten link,i get the test-flight updating window even if my build is new one.I want disable that test-flight screen which is appearing inside my application.if any one known about this please help me.thanks in advance.


Solution

  • I had the same problem that I reported to Tesflight. It is apparently a known bug.

    A workaround is to completely turn off in app update with the following line:

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

    It only works with the 1.1 version of the SDK thus far.