Hi'
Some of our uses are currently experiencing crashes in our app that are quite hard to solve, since the information from the crash in Xcode (14.0.1) is not very informative:
I'm able to reproduce the crash, which happens with a certain network call we're making. The crash seems to only happen on older devices like iPhone 6, 6S, a few 7s and old iPads. All running iOS versions from 12.x.x to 14.x.x.
The crash happens after the request has been sent and the response seems to be there. But nothing is, from what is visible through Xcode, received at the time of crashing. So my guess is it's due to some processing of the response, right before we can actually deal with the received data.
The called endpoint is to a danish address lookup - if it helps: https://dawa.aws.dk/stednavne2/autocomplete?hovedtype=Bebyggelse&undertype=bydel&q=st&fuzzy
I've tried moving the network call to another project - same crash. I've also tried making the network request with a URLSession data request (normally we use Moya / Alamofire), with the same result.
I've included a crash report.
Can someone help identify the problem?