【发布时间】:2019-09-17 17:29:53
【问题描述】:
在真机调试时,出现如下问题。
Could not launch “MY-APP-NAME” iPhone has denied the launch request.
Internal launch error: process launch failed: Unspecified
- 使用 Xcode 10.3 和 Firebase 消息传递云。
- 更改配置文件和捆绑 ID 后,会出现这种情况。
- 这使用一年会员帐户和Provisioning Profile for Development。
- 使用模拟器时不会出现问题。
- 虽然我更改了:
Product > Scheme > Edit Scheme > Run > Executable to Ask On Launch,但这不起作用。 - 取消选中
Product > Scheme > Edit Scheme > Run > Debug executable也不起作用。 -
rm -r ~/Library/MobileDevice/Provisioning\ Profiles/。没用。 -
rm -r ~/Library/Developer/CoreSimulator/Devices/。对我也不起作用。 - 因为似乎是Provision Profile 的问题,所以我尝试修复。但是,我无法找到解决方案。
- 当涉及到另一个新项目时,出现了同样的错误。
- 另一台设备也出现此问题。
- 控制台中显示的内容如下:
The process failed to execUnable to bootstrap process with bundleID MY-APP-NAMEUnable to get valid task name port right for pid 635The request was denied by service delegate (SBMainWorkspace) for reason: Unspecified.
Bootstrap failed with error: <NSError: 0x280617810; domain:
BKSProcessErrorDomain; code: 1 (bootstrap-failed); reason: "Failed to start job">
Bootstrapping failed for <FBApplicationProcess: 0x16465a240;
MY-APP-NAME; pid: -1> with error: Error Domain=BKSProcessErrorDomain Code=1 "Unable to bootstrap process with bundleID MY-APP-BUNDLE-ID” UserInfo={NSLocalizedDescription=Unable to bootstrap process with bundleID MY-APP-NAME, BKSProcessExitReason=0, NSLocalizedFailureReason=Failed to start job, NSUnderlyingError=0x28061cb40 {Error Domain=NSPOSIXErrorDomain Code=3 "No such process" UserInfo={NSLocalizedFailureReason=The process failed to exec, NSLocalizedRecoverySuggestion=Consult /var/log/com.apple.xpc.launchd/launchd.log for more information,
NSLocalizedDescription=Unable to get valid task name port right for pid 635}}, BSErrorCodeDescription=bootstrap-failed}
FBSSystemService][0x1555] Error handling open request for MY-APP-NAME: <NSError: 0x281674420; domain: FBSOpenApplicationServiceErrorDomain; code: 1 (RequestDenied); reason: "The request was denied by service delegate (SBMainWorkspace) for reason: Unspecified."> {
description = "The request to open "MY-APP-NAME" failed.";
failureReason = "The request was denied by service delegate (SBMainWorkspace) for reason: Unspecified.";
userInfo = {
FBSOpenApplicationRequestID = <__NSCFNumber: 0xa56f4bb69cbc0302>;
}
underlyingError = <NSError: 0x281674450; domain: FBSOpenApplicationErrorDomain; code: 1 (Unspecified)> {
description = "The operation couldn’t be completed.
(FBSOpenApplicationErrorDomain error 1.)";
};
}
【问题讨论】: