报错:process Launch Failed:failed to Get the Task for Process 1298(解决方案)

简介: 今天真机调试的时候出现了这个错误,如下图

今天真机调试的时候出现了这个错误,如下图


image.png


这一次碰到的问题是这样的:模拟器上运行正常。我在iPhone 6上运行,程序编译正常,但是跑起来之后,大概一两秒的时间,就闪退(代码是没有问题的)。这个时候,Xcode7.1弹出这样的提示:

Could not launch “iOSStrongDemo”
    process launch failed: failed to get the task for process 1298


错误分析:

是因为我之前打包的时候,修改了Provisioning Profile。我看了一下Build Settings里的Code Signing配置,发现Provisioning Profile选择的是XC Ad Hoc: *。如下图所示:


image.png


Ad Hoc是用来实现发布前的用户测试的,也就是通过Ad Hoc将未发布的App给其他人提前使用。显然这是不对的,我们是要真机调试。

解决方案:

解决方法很简单,将Provisioning Profile换成用开发证书创建的Provisioning Profile即可。



相关文章
|
7月前
Error:Execution failed for task ':app:processDebugManifest'. > Manifest merger failed with multiple
Error:Execution failed for task ':app:processDebugManifest'. > Manifest merger failed with multiple
52 1
|
7月前
|
Java 数据库 索引
GreenDao,clearIdentityScope报错Error:Execution failed for task ':app:compileDebugJavaWithJavac'. > Com
GreenDao,clearIdentityScope报错Error:Execution failed for task ':app:compileDebugJavaWithJavac'. > Com
54 1
|
7月前
|
安全
Error:Execution failed for task ':transformClassesAndResourcesWithProguardForRelease'
Error:Execution failed for task ':transformClassesAndResourcesWithProguardForRelease'
65 0
|
网络协议
Job for named.service failed because the control process exited with error code.
Job for named.service failed because the control process exited with error code.
831 0
|
Python
pychram中提示:Process finished with exit code 0
"Process finished with exit code 0" 是PyCharm中的提示信息,表示程序已经成功地执行完毕并且没有发生任何错误。在PyCharm中,当程序正常终止并返回退出代码0时,这个消息会在控制台中显示。 在PyCharm中运行程序时,它会在一个单独的进程中执行,当程序完成执行后,它会向操作系统返回一个退出代码。退出代码0表示程序成功执行完毕,而非零的退出代码通常表示错误或异常终止。 当出现"Process finished with exit code 0"的提示时,意味着你的程序已经成功地执行完毕,没有发生任何错误或异常情况。你可以通过检查程序输出或任何其他预
2017 0
首次运行Flutter失败报错(Finished with error: Gradle task assembleDebug failed with exit code 1)
首次运行Flutter失败报错(Finished with error: Gradle task assembleDebug failed with exit code 1)
490 0
首次运行Flutter失败报错(Finished with error: Gradle task assembleDebug failed with exit code 1)
|
资源调度
yarn start error Command failed with exit code 1解决
yarn start error Command failed with exit code 1解决
1178 0
|
网络协议
Job for named.service failed because the control process exited with error code.怎么解决
本篇内容记录了如何解决Job for named.service failed because the control process exited with error code.的问题。
3729 0
Job for named.service failed because the control process exited with error code.怎么解决
|
Android开发
开发过程中遇到的问题Error:Execution failed for task ':app:processDebugManifest'
开发过程中遇到的问题Error:Execution failed for task ':app:processDebugManifest'
337 0
开发过程中遇到的问题Error:Execution failed for task ':app:processDebugManifest'
|
Windows Python
Fatal error in launcher:Unable to create process using
Windows 下同时存在 Python2 和 Python3 使用 pip 时系统报错:`Fatal error in launcher: Unable to create process using '"'` 的解决方案
5366 0