-
Notifications
You must be signed in to change notification settings - Fork 97
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
iOS crash opening camera #85
Comments
Thanks, I will check out this week 👍 |
@wayne800 Just wondering: Have you still encountered this crash on the latest Atlantis version 🤔 and what iOS version are you using? I test on iOS 15 and I could not reproduce it anymore 😄 |
I'm also experiencing app crashes inside Atlantis after Proxyman update to 3.0.0. Crashes doesn't occur on the previous version (v2.35.4) |
We do have the crash in iOS 15 or above. |
Working with @wayne800 we discovered the crash breakpoint is inside a Proxyman method. |
Thanks @zhejia0428 @wayne800. I'm working on it now 👍 |
I tested with iOS Simulator 15.2 and My iPad 15.2, but I could not reproduce it. The code is successfully executed without crashing. Code @IBAction func uploadBtnOnClick(_ sender: Any) {
let data = "123".data(using: .utf8)!
DispatchQueue.global(qos: DispatchQoS.QoSClass.background).async {
let request = try! URLRequest(url: "https://httpbin.org/anything", method: .post, headers: nil)
let task = URLSession.shared.uploadTask(with: request, from: data) { data, _, _ in
if let data = data {
print(String(data: data, encoding: .utf8))
}
}
task.resume()
}
}
|
iOS: This crash is gone without starting Atlantis.
The text was updated successfully, but these errors were encountered: