aravindh elango
aravindh elango

Reputation: 11

Getting error while running Appium on Mac

Getting below error while running Appium

Encountered internal error running command: Error: Cannot verify the signature of '/Applications/Appium Server GUI.app/Contents/Resources/app/node_modules/appium/node_modules/appium-uiautomator2-server/apks/appium-uiautomator2-server-v4.24.0.apk'. Original error: The JAVA_HOME location '$(/usr/libexec/java_home)' must exist

Upvotes: 1

Views: 2156

Answers (2)

milczi
milczi

Reputation: 7572

In my case I could open it only from the console.

open /Applications/Appium\ Server\ GUI.app

Upvotes: 0

Aixa
Aixa

Reputation: 21

Had the same error a while ago, try using this on terminal.

 xattr -cr "/Applications/Appium Server GUI.app"
 codesign --deep --sign - /Applications/Appium\ Server\ GUI.app

it should solve the error, it did for me.

Upvotes: 2

Related Questions