Testflight not showing latest build

Hi,


Just starting today, when I tried to publish to testflight, I see a success from Transporter. However I see it in testflight (website) for maybe a mmoment where it says processing. After I refresh the page, the version I just pushed is no longer there. It only shows buildds that I made a few days ago.


Any ideas? I believe I updated to storyboard instead of .xib for the launch screen and set my deployment target to 13.2.


Thanks!

Replies

Same here.

Same in here, after processing build disappear from list.

Same here.

Is this problem below?


ITMS-90809: Deprecated API Usage - Apple will no longer accept submissions of new apps that use UIWebView as of April 30, 2020 and app updates that use UIWebView as of December 2020. Instead, use WKWebView for improved security and reliability. Learn more (https://developer.apple.com/documentation/uikit/uiwebview)


Despite saying that updates will be accepted to December, after April 30 it says:


ITMS-90809: Deprecated API Usage - New apps that use UIWebView are no longer accepted. Instead, use WKWebView for improved security and reliability. Learn more (https://developer.apple.com/documentation/uikit/uiwebview)


Problem is, that this was update to existing app not a new app.

I am having the same problem.


I have an approved app live in the App Store and I need to update it. I have an email from App Store Connect from 4/27 that says you can still update apps until December 2020 even if it contains references to UIWebView, however my binaries keep getting rejected for ITMS-90809 so I am very confused and frustrated.


Unless they allow the app updates as stated, the only way I can resolve this issue with my ionic 3 based app since it uses Branch deep linking that uses UIWebView, is to update my app to use ionic 4 since the latest version of Branch that has removed UIWebView references requires it, and that would be a major code refactor that I don't have time to try an work on right now.


Here is the email message from App Store Connect on 4/27:


ITMS-90809: Deprecated API Usage - Apple will no longer accept submissions of new apps that use UIWebView as of April 30, 2020 and app updates that use UIWebView as of December 2020. Instead, use WKWebView for improved security and reliability. Learn more (https://developer.apple.com/documentation/uikit/uiwebview).


I hope they honor the app update allowed until December 2020 so I can move forward.

I am having the same problem.


Dear Developer,


We identified one or more issues with a recent delivery for your app,

"BCme" 1.0.0 (8). Please correct the following issues, then upload again.


*ITMS-90809: Deprecated API Usage* - New apps that use UIWebView are no

longer accepted. Instead, use WKWebView for improved security and

reliability. Learn more (

https://developer.apple.com/documentation/uikit/uiwebview)

I faced the same issue while uploading ionic3 app on testflight.
After exploring I found the blog "Understanding ITMS-90809: UIWebView API Deprecation" by Matt Netkow,
following the mentioned steps resolves the issue.
  1. Remove the ios platform using cmd: 

Code Block
ionic cordova platform rm ios

2. Check plugin cordova-plugin-ionic-webview in package.json file. If not included then add plugin using cmd:
Code Block
ionic cordova plugin add cordova-plugin-ionic-webview

3. Add the ios platform with version 5.1.0 using cmd: 
Code Block
ionic cordova platform add ios@~5.1.0

4. Check <preference name="WKWebViewOnly" value="true" /> in config file. if not present then add it.

5. Run cmd:
Code Block
npm i

6. Run cmd
Code Block
ionic cordova build ios

Then open project in xcode and archive the build.
Hope this will help you in uploading the ionic3 app build on testflight.
same issue any developer can sove this issue