-
Notifications
You must be signed in to change notification settings - Fork 362
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Out-of-order callbacks received in cupertino_http #1413
Comments
@jankuss Could you reproduce this on a debug build? I cannot reproduce this on the iOS simulator. Do you see the exact same traceback. |
@brianquinlan I definetly saw the same trace back last week while debugging. Today I tried again, and I could not see the message in logs anymore. Might this be another issue? My reproduction for the issue I am experiencing is located here: https://github.com/jankuss/cupertino_http_stuck_requests Important: It needs to be built in release mode and run on a real device Debug builds do not run into this issue. A notable change which I did not mention explicitly yet is the following adjustment in the Podfile: /* ... */
post_install do |installer|
installer.pods_project.targets.each do |target|
flutter_additional_ios_build_settings(target)
+ target.build_configurations.each do |config|
+ config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'] = '16.0'
+ end
end
end Let me know if this might be related, if not I will gladly create a separate issue. |
I think that the issue is related and I'm looking into it. It might take a while to sort this out. |
The text was updated successfully, but these errors were encountered: