iOS Simulator failed to install the application

前端 未结 17 1383
有刺的猬
有刺的猬 2020-11-28 21:16

I have created a Cordova 2.1.0 app, It ran fine for the first 2-3 times. But now when I am trying to run it through terminal it is giving me the following error.I didn\'t ch

17条回答
  •  一生所求
    2020-11-28 22:08

    I tried everything mentioned above and nothing worked.

    Finally the only way to make it work was unsetting DYLD_INSERT_LIBRARIES=/usr/lib/libimckit.dylib

    How I did this:

    1. Open terminal and typing "sudo vi /etc/launchd.conf"
    2. Changing

    "setenv DYLD_INSERT_LIBRARIES /usr/lib/libimckit.dylib"

    to

    "unsetenv DYLD_INSERT_LIBRARIES /usr/lib/libimckit.dylib"

    1. Save changes
    2. Reboot your system

    In this post [1] explain what DYLD_INSERT_LIBRARIES is for

    [1] https://stackoverflow.com/a/26053165/2091181

提交回复
热议问题