"Failed to start the process: failed to complete the task for process 2282" How to solve this?

I am trying to download an application to a device, but received a message as shown in the image. enter image description here

How can i solve this? I am using xcode 6.4

+8
ios objective-c iphone xcode
source share
2 answers

I assume that you are working on a device. Using a different provisioning profile, the key to solving this problem is to use the developer's profile rather than the distribution profile.

+21
source share

In my case, this dialog box appeared in an Objective-C project using Swift modules. We are debugging the Release configuration directly. If so, then my problem was to disable the Swift Compiler - Code Generation optimization for release: Fast compiler - code generation and optimization level

0
source share

All Articles