Jitender
Jitender

Reputation: 7969

Genymotion not able to find SDK location

I install android-sdk through brew cask install android-sdk. its been downloaded in /usr/local/share/android-sdk location. However, when I am trying to set this path to Genymotion's ADB setting. it says android sdk not found.

enter image description here

folder inside android-sdk

enter image description here

Upvotes: 1

Views: 1019

Answers (1)

Genymotion looks for two binaries provided by the Android SDK: adb and aapt.

It looks for adb in:

  • $sdkPath/platform-tools
  • $sdkPath/tools
  • $sdkPath

And for aapt in:

  • $sdkPath/build-tools/*/
  • $sdkPath/platform-tools
  • $sdkPath/platforms/*/tools
  • $sdkPath/tools
  • $sdkPath

You should check if those are installed in /usr/local/share/android-sdk.

Upvotes: 1

Related Questions