Reputation: 921
Good afternoon, I developed a basic app in Flutter with main target on smartphone users. I made Android app and Google Play Market accepted it to publish. Then I generated an app for Apple Store and applied it but got a rejection with the following description:
"Guideline 2.1 - Performance - App Completeness
We discovered one or more bugs in your app when reviewed on iPad running iOS 12.1 on Wi-Fi.
Specifically, your app didn’t load any content - only black page was displayed."
Yes, they attached a screenshot of black screen but I am confused how to fix this problem for exactly this version of iOS. I have checked my app for different versions of iPhones and the app works as fine and smoothly as in Android smartphones too.
Hence, my questions are (as a newbie in work with Apple Store):
Thank you in advance for your support and any comments.
Sincerely, Mary
Updates: I created initial app for iOS using Xcode 8 and run it on emulators there, app works. However, when I run this app in Xcode 10.1, I see a black screen even in iPhone X (on Xcode 8 it run smoothly).
Upvotes: 3
Views: 3417
Reputation: 1
my screen Black too when running Flutter app, after disable DNSCloack, it run normal again, i think the problem with VPN
Upvotes: 0
Reputation: 10759
This is a known issue and here's how to solve it :
Before archiving your iOS app you need to run this command in terminal (Pointing to your project's directory)
flutter build ios --release
And then archive your build, it should work fine.
Upvotes: 1