Post

Replies

Boosts

Views

Activity

Reply to App Review - Guideline 5.0 U.S. embargoed territory
@xbrdr1 Could you please share your pubspec.yaml file? We're facing a similar issue and aren't sure if it's related to Flutter. We're using Flutter version 3.24.3. We've already reviewed the source code of the dependencies, but haven't found any issues yet. If you could provide the dependencies you're using, we can compare them and see if there are any differences that might be causing the problem. We'll update you here if we find any leads.
Mar ’25
Reply to Grey screen issue on app review for flutter app ... impossible to reproduce!
@asabbas98, the grey screen might be caused by exceptions or errors in the code. You can check the debug console for more details. To prevent the grey screen from appearing try the following: void main() async { WidgetsBinding widgetsBinding = WidgetsFlutterBinding.ensureInitialized(); ErrorWidget.builder = (FlutterErrorDetails details) => const ErrorScreen(); runZonedGuarded(() { runApp(const MyApp()); }, (error, stackTrace) { }); }
Mar ’25
Reply to Flutter app || needed your help
open ios folder of the flutter project in xcode>>Runner >>Signing & Capabilities >> Select team >> Turn on Automatic SIgining Make sure that the tem owns that app and the developer have ability to download profiles certificate in https://appstoreconnect.apple.com/access/users
Mar ’25