Reputation: 311
I installed Visual Studio 2017. In the Installer menu, I've installed Xamarin and Visual C#. However, when I created a new project, went to Tools > Options > Xamarin , I saw that the android-ndk textbox is empty whereas the others are not.
I've installed Visual Studio on this path: D:\Program Files\Visual Studio. But I don't know if it will put the installation of Xamarin to the D:\
My question is where is android-ndk?
Thanks
Upvotes: 2
Views: 12787
Reputation: 9084
For Visual Studio, the default NDK location is:
C:\ProgramData\Microsoft\AndroidNDK64\android-ndk-r13b
For Android Studio, the default NDK location is:
C:\Users\yourusername\AppData\Local\Android\Sdk\ndk-bundle
But by default, Visual Studio won't download Android NDK. So if you need download Android NDK, you could go to VS Tools tab:
Tools > Android > Open Android SDK Manager > select Tools > Check NDK > Click Apply Changes
Upvotes: 15