3

We are using Visual Studio 2017 (15.7.4 update) with Windows OS. We are facing issue on Android SDK manager installed path. Can you please suggest idea to get Android SDK manager installed path based on registry or command line?

Regards, Dheepa

Saravana
  • 71
  • 1
  • 1
  • 4

2 Answers2

1

It should be in: C:\Program Files (x86)\Android unless you set a particular path.
You won't have any key on the registry since it a folder from which VS (or any other IDE) "uses" the Android SDK.
You can give it a try checking in your Environment Variables if there is any path referring to the Android SDK, otherwise simply redownload the zip.

Hichame Yessou
  • 2,658
  • 2
  • 18
  • 30
1

To work with Android Visual Studio installs openJDK in

C:\Program Files\Android\jdk

and Android SDK at

C:\Program Files (x86)\Android\android-sdk

You can find sdkmanager.bat at

C:\Program Files (x86)\Android\android-sdk\tools\bin

It is recommended to add the bin directory to the system path.

pouya
  • 3,400
  • 6
  • 38
  • 53