Naresh
Naresh

Reputation: 17932

Crashed: com.apple.root.default-qos SIGABRT ABORT

In my app i am using crashlytics, it's getting one crash report frequently. This is Crashed:

com.apple.root.default-qos SIGABRT ABORT 0x00000001907b7d74

I am downloading photo from server, for this i have used this following code in info.plist

<key>NSPhotoLibraryAddUsageDescription</key>
<string>Need to save photos</string>

But i am getting the error CRASHING_DUE_TO_PRIVACY_VIOLATION + 682 frequently.

enter image description here

enter image description here

enter image description here

Upvotes: 0

Views: 2891

Answers (2)

M-P
M-P

Reputation: 4959

Take a look at How do I prevent a WKWebView from presenting the Camera modal if a user has denied access to the camera? Specifically because the identifier (which I believe is an internal constant) after TCCAccessRequest_block_invoke_ is also 2.80 in your case. The short answer is: NSMicrophoneUsageDescription

Upvotes: 2

Dipak Kacha
Dipak Kacha

Reputation: 423

Try adding this,

Privacy - Photo Library Usage Description

Specifies the reason for your app to access the user’s photo library. See NSPhotoLibraryUsageDescription for details.

Upvotes: 1

Related Questions