Kevin ABRIOUX
Kevin ABRIOUX

Reputation: 17695

dyld`__abort_with_payload: Without an error message

When I start my app with Xcode, I have a crash, but without an error.

The app is just stopping on this thread:

Enter image description here

What can I do to have more information about the issue?

Upvotes: 117

Views: 95337

Answers (30)

Better to remove pods and podfile.lock , derived data and then turning the system off and then doing pod install.

Upvotes: 0

CoderDam
CoderDam

Reputation: 65

I had this issue and didn't have success with the answers. I was using a custom framework that would connect with Bluetooth devices. So the crash was happening because I had missed applying the "Privacy - Bluetooth Always Usage Description" in the info.plist file.

Check all your permissions fields are set up in the p-list file.

Upvotes: 2

WangYang
WangYang

Reputation: 1

I have fixed my error in my project.

  1. I checked the other threads when the error happened. I found my error is about the camera.

    Enter image description here

  2. Add the Camera privacy in the Info.plist file.

    1. Open the info.plist file.

    2. Add a new key called "Privacy - Camera Usage Description" and enter a string that describes why the app need camera. The describes will display when your app need to use the privacy.

      Enter image description here

Upvotes: 0

app4g
app4g

Reputation: 840

I faced this issue on iOS 14.5 when playing/implementing ATT (App Tracking Transparency) and have yet to add a usage description in file info.plist on why user tracking is needed.

The app crashes whenever the settings "Allow Apps to Request to Track" was enabled (when disabled, everything worked well).

The crash in Xcode provided no clues, except

libsystem_kernel.dylib`__abort_with_payload: (SIGABRT)
CoreSimulator 757.5 - Device: iPhone 11 (29AD27B2-6EC0-4B9C-8C8C-C5450695A19C) - Runtime: iOS 14.5 (18E182) - DeviceType: iPhone 11

Using the answer from fred's answer and getting the crash log from the actual device yielded this clue which was extremely helpful.

Exception Type:  EXC_CRASH (SIGABRT)
Exception Codes: 0x0000000000000000, 0x0000000000000000
Exception Note:  EXC_CORPSE_NOTIFY
Termination Reason: TCC, This app has crashed because it attempted to access privacy-sensitive data without a usage description. The app's Info.plist must contain an NSUserTrackingUsageDescription key with a string value explaining to the user how the app uses this data.
Triggered by Thread:  1

Upvotes: 1

Cerniuk
Cerniuk

Reputation: 15190

Adding the framework to the embedded binary asset list fixed this. Here is what the setup of a foreign framework looks like in final form in the Xcode GUI as an Embedded Framework (Xcode 9.2, personally I like a visual breadcrumb trail better ;-) ):

Enter image description here

Did Apple intentionally crash the runtime to somehow tell the developer about the problem that you cannot use non-Apple frameworks as simply linked frameworks in iOS development? It would be better to have it come up as a build error I would think... with a button that said "move it!"

The use of Embedded Binaries keeps the end user from having to add the Framework independently of your app (or have you do with an installer). In the case of the iPhone (iOS), that is impossible, but on macOS, it is possible, but it can get messy fast.

For the end user, it is much nicer to simply drag and drop an app to install it on macOS, which is where embedded becomes a benefit. Embedding also avoids the classic "DLL conflicts" of having external versions of your framework to manage. (Disk space is cheap, but my customer's time is precious.)

Upvotes: 21

fred
fred

Reputation: 351

To answer the original question "What can I do to have more informations about the issue?", this Apple forum thread provides a very simple tip: simply run your crashing app outside Xcode (i.e., stop it from Xcode, then run it manually on your device).

This will produce a crash log containing more details about what happened. You can then review this log from the Xcode Window menu → Devices and SimulatorsView Device Logs.

Upvotes: 20

Dakata
Dakata

Reputation: 1355

The same issue happened with me. I had iOS 14 Beta and the problem was fixed when I updated it to the official version.

Upvotes: 0

Steve Harris
Steve Harris

Reputation: 226

To add to the long list of encounters with this error, it occurs when I am on Xcode 12.2 Beta 2 deploying to my Mac running macOS v10.15.5 (Catalina) with the deployment target set to macOS v11.0 (Big Sur).

This situation happened because I was trying out the Mac Catalyst Tutorial app on adding a SideBar. Switching the target to macOS v10.15.5 eliminated the error and launched the app properly.

Upvotes: 1

Michael Ribbons
Michael Ribbons

Reputation: 1975

Also if you are using custom frameworks, make sure you set the Mach-O type to static library. I read somewhere that iOS doesn't allow dylib. Anyway, this worked for me.

Upvotes: 1

d.rozumeenko
d.rozumeenko

Reputation: 126

Actually, I had the issue with Xcode 11.3.1 and Thread Sanitizer was already turned off as mentioned in previous answers.

In my case, the issue was I used to have different Xcode versions in my Application folder like this:

/Applications/xcode11.3.1/Xcode.app
/Applications/xcode11.3/Xcode.app
/Applications/xcode10.1/Xcode.app

and

/Applications/Xcode.app - was 11.2

The build system looks on the /Applications/Xcode.app file by default. So bringing Xcode 11.3.1 to the /Applications/Xcode.app finally resolve the problem.

Upvotes: 0

vandermesis
vandermesis

Reputation: 111

I experienced that problem only when running on a real device (iPhone SE). In a simulator project it worked as expected.

I did try all fixes from this very question and from OS X Framework Library not loaded: 'Image not found'

None of those worked for me.

For me problem was solved after restarting the iPhone (sic!).

I did:

  • clean build folder,
  • clean derived data,
  • delete app from device,
  • reboot device

And it finally works. :)

If every other solution fails, don't forget to try it out.

Upvotes: -1

Pankaj Kulkarni
Pankaj Kulkarni

Reputation: 561

I faced the same issue with Xcode 11.3 and macOS v10.15.2 (Catalina) . The app was running well on the device, but not in the simulator. It seems there is an issue with the simulator and the workaround is to disable Thread Sanitizer.

Refer to Xcode 11.3 simulator SIGABRT on launch.

Upvotes: 4

This problem appeared after a system update up to macOS 10.15.2 beta (Catalina). Disabling "Thread Sanitizer" solved the issue (Xcode 11.2). Now I can't use Thread Sanitizer and have to wait for the next OS update.

Enter image description here

Upvotes: 33

black_pearl
black_pearl

Reputation: 2699

In Xcode 11.1, turn off Do not Embed in Embed & Sign is a nice option.

0

222

Credit: mkonovalov's answer and William Cerniuk's answer

Upvotes: 12

milczi
milczi

Reputation: 7572

I've had this situation after updating Xcode to v10.2.1 and Swift to v5.0.

If you are using Carthage + RxSwift, the new RxSwift uses RxRelay.framework. You should go to your /Carthage/Build directory find that framework and drag it to your project. Don't forget also add it to your carthage copy-frameworks script: $(SRCROOT)/Carthage/Build/iOS/RxRelay.framework

It was resolved thanks to fred's answer.

Upvotes: 2

markw
markw

Reputation: 321

If you're using a framework written in Swift in an Objective-C application, you need to include the Swift toolchain in the app that consumes the framework.

The way I've found to do this is to create a dummy Swift file in the app, so that Xcode recognizes Swift and appropriately adds it to the project. You can then delete the dummy file.

Upvotes: 2

Rock_Artist
Rock_Artist

Reputation: 735

I had a similar issue that was resolved by a missing permission specification in plist (as weird as it is...).

I've tried to use AVCaptureDevice and it just crashed at starting (my app was very minimal).

Adding Privacy - Camera Usage Description to the info.plist file solved it for me.

Upvotes: 3

lazarevzubov
lazarevzubov

Reputation: 2285

Sometimes it happens when you use system frameworks that are accessible only from a later iOS version than your target version. It might be fixed by marking this linked framework as optional.

For example, a project targeted on iOS 11 and being using AuthenticationServices for the iOS 12 AutoFill feature will crash on iOS 11 in the described way.

Upvotes: 3

Linus Karlsson
Linus Karlsson

Reputation: 546

I had just missed applying the "Privacy - Camera Usage Description" in the info.plist file.

Upvotes: 4

Frank Eno
Frank Eno

Reputation: 2649

I've just had the same issue and the reason why was due to the fact that I've revoked my Developer Certificates and created new ones with Xcode 10, after a fresh macOS v10.14 (Mojave) update (for some reason, it deleted all login credentials and outdated some keychain certificates).

So, all I had to do was to remove the installed apps from my device and run them through Xcode again, in order for it to install the right new Provisioning Profile in my device :)

Upvotes: 0

Leo
Leo

Reputation: 11

I found the right way to resolve it.

Make sure the AppleWWDRCA.cer is set to the system default mode, and then it will work:

Enter image description here

Upvotes: 1

coolVick
coolVick

Reputation: 538

  1. Continue the execution to see if any message shows up in debugger such as "MyFramework.framework" not found. If that is the case, follow this question: OS X Framework Library not loaded: 'Image not found' For me Amos Joshua's answer worked.

  2. Make sure you have added your binaries through "Embed Binaries" section.

  3. Make sure you have enabled signing of frameworks in build phase section.

  4. Make sure the embedded frameworks are not symlinks.

  5. You can make the linked frameworks optional instead of required in "Link binary with libraries" phase. This will tell iOS to not look for these frameworks during launch. But anyway you need to fix the errors to use those frameworks!

  6. Check if all the info.plist entries are good. In my case, I was using a Mac info.plist file for iOS. It was looking for some xib file which was not present in the iOS project.

  7. Do a clean and build after any such change. This is required because Xcode does not copy/change these files if they already exist.

  8. Remove the app from iPad and then install. Same reason as 7.

Upvotes: 6

user1825506
user1825506

Reputation: 51

I encountered an error with the same signature (my project was in Objective-C) and discovered I had forgotten to link with the appropriate framework. The error message in the debug log that led to finding the error was:

dyld: Symbol not found: OBJC_CLASS$_SFSafariViewController

For my specific error, adding SafariServices.framework in the TargetsBuild Phases"Link Binary With Libraries" resolved the issue. While you probably don't have the same specific error and resolution, checking the debug log for clues is useful.

Upvotes: 3

responser
responser

Reputation: 432

If you use the Carthage build framework, after dragging the framework to your project, you should add it to General/Embedded Binaries.

Upvotes: 1

Eran Talmor
Eran Talmor

Reputation: 1927

It was finally solved!

Making the framework "optional" instead of "required" worked for me.

Upvotes: 15

infiniteLoop
infiniteLoop

Reputation: 2183

Unchecking "Guard Malloc" in diagnostics worked for me.

See the image for settings

Upvotes: 7

FlixMa
FlixMa

Reputation: 943

For me a simple Clean and Rebuild sorted it out.

Upvotes: 67

Hongbo Liu
Hongbo Liu

Reputation: 158

I fixed the error in my project just now!

If you are using the Swift framework in an Objective-C project, I advice you to change the build settings.

Set the Always Set Embed the Swift Standard Libraries option to Yes. Like this:

Enter image description here

Upvotes: 15

Amandeep Singh
Amandeep Singh

Reputation: 772

I got it sorted by the "pod install" command.

Upvotes: -3

Tyson Freeze
Tyson Freeze

Reputation: 109

I didn't think this applied to me because I wasn't using the camera, but it did.

Many answers reference adding a Usage Description to Info.plist. I didn't know there are many more cases where a usage description is necessary (besides just the camera), see this link.

The link lists these services as needing a usage description or will cause this error:

Calendar, Contact, Reminder, Photo, Bluetooth Sharing, Microphone, Camera, Location, Heath, HomeKit, Media Library, Motion, CallKit, Speech Recognition, SiriKit, and TV Provider.

Add an entry to Info.plist, start typing "Privacy" as the key, and you will see all the available options pop up.

Upvotes: 0

Related Questions