Unable to install the application on Real Device using appium

Hello All,

When tried to run the java code for iOS automation using appium server, i’m getting the following error. The same code which was working last night suddenly stopped working on the same environment.

[MJSONWP] Encountered internal error running command: Error: Installing /var/folders/f4/x8_4lk3d1fd7y2nvddnlpqlc0000gn/T/2016819-3205-1kgtxh7/Payload/Test.app failed
at /Applications/Appium.app/Contents/Resources/node_modules/appium/node_modules/appium-ios-driver/node_modules/node-idevice/main.js:159:6

Appium Version: 1.5.3 (Ara)
Xcode: 7.3.1
Device: iPhone 6S (9.3.2)

Problem Solved!!!

Found the solution on some other post!!!

So what we have to do is,

  1. brew uninstall iso-webkit-debug-proxy. (If u don’t have this tool install skip this step)
  2. brew install ios-webkit-debug-proxy
  3. brew uninstall libimobiledevice ((If u don’t have this tool install skip this step)
  4. brew install --HEAD libimobiledevice
  5. sudo authorize-ios
1 Like