You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
1. Using `watch()` queries creates a [StreamSubscription](https://api.flutter.dev/flutter/dart-async/StreamSubscription-class.html) and it's important to regularly call `.cancel()` on these to avoid multiple subscriptions for the same query running.
687
-
2. Deploying to the Apple App Store currently requires some workarounds due to limitations in FlutterFlow:
685
+
3. Using `watch()` queries creates a [StreamSubscription](https://api.flutter.dev/flutter/dart-async/StreamSubscription-class.html) and it's important to regularly call `.cancel()` on these to avoid multiple subscriptions for the same query running.
686
+
4. Deploying to the Apple App Store currently requires some workarounds due to limitations in FlutterFlow:
688
687
1. Download the code from FlutterFlow
689
688
2. Open the `Podfile` located in the `ios/`directory
690
689
3. The following option in the `Podfile` needs to be updated from `use_frameworks! :linkage => :static` to `use_frameworks!` (remove everything after the exclamation sign)
691
690
4. After removing that option, clean the build folder and build the project again.
692
691
5. You should now be able to submit to the App Store
693
-
3. Exporting the code from FlutterFlow using the "Download Code" action in FlutterFlow requires the same workaround listed in 4\. above.
694
-
4. Other common issues and troubleshooting techniques are documented here: [Troubleshooting](/resources/troubleshooting)
692
+
5. Exporting the code from FlutterFlow using the "Download Code" action in FlutterFlow requires the same workaround listed in 4\. above.
693
+
6. Other common issues and troubleshooting techniques are documented here: [Troubleshooting](/resources/troubleshooting)
0 commit comments