Post

Replies

Boosts

Views

Activity

Reply to Watch app doesn't receive location updates on watchOS 10 beta
Same problem here on watchOS 10. When calling requestWhenInUseAuthorization (or any other version of it) nothing happens. There is no system-dialog popping up only the delegate complaining about Error Domain=kCLErrorDomain Code=1. It must be something with the project setup though. I made a small sample app and there it is working. I tried removing the setting my app to App is only available as a standalone watchOS app and then the popup appears. I don't want that setting though. I do have a companion app. Edit: I just discovered this message in the console app: { "msg":"#AuthPrompt #Warning Delaying authorization request placed while insufficiently in-use", "ClientKeyPath":i<my-bundle-id>.watchkitapp:, "requestType":0, "inUseLevel":0 }
Sep ’23
Reply to AVSpeechSynthesizer iOS 15/16 lagging for seconds when switching to (different) German language voice
Hello @khm2. I was just researching on why german seems to be slower and just found your post here. I do have the exact same problem as you describe. English seems to have no noticeable delay at all and german does have a very noticeable delay before I can hear the TTS. Did you find a solution to the problem yet? I also made sure I downloaded all languages for german, with no change in the delay. Also... how do you get the logs you are posting? I can't see those in my console?!? Cheers, Georg
Oct ’22
Reply to In-App Purchase Error: "Invalid application external version."
I am seeing the same error as you describe. Error Domain=SKErrorDomain Code=0 "Ein unbekannter Fehler ist aufgetreten" UserInfo={NSLocalizedDescription=Ein unbekannter Fehler ist aufgetreten, NSUnderlyingError=0x281704f30 {Error Domain=ASDErrorDomain Code=825 "Der Vorgang konnte nicht abgeschlossen werden. (ASDErrorDomain-Fehler 825.)" UserInfo={NSLocalizedDescription=Der Vorgang konnte nicht abgeschlossen werden. (ASDErrorDomain-Fehler 825.)}}} Error message is in german, but it's the same as you describe. Did you find out what was causing the problem?
Apr ’21
Reply to URLSessionConfiguration's httpMaximumConnectionsPerHost not working in iOS 10?
It seems I am running into the same problem. I need to download multiple files from my server, and even when setting the max number of connections per host to 2.         let config = URLSessionConfiguration.background(withIdentifier: "background-download")         config.sessionSendsLaunchEvents = true         config.httpMaximumConnectionsPerHost = 2         config.timeoutIntervalForRequest = 120         let session = URLSession(configuration: config, delegate: self, delegateQueue: nil) all requests are hitting our server at the same time. Is there any update on that issue?
Nov ’20