Description of feature/enhancement
It seems like ANDROID_NDK_HOME is no longer respected by Android Studio and sdkmanager as now there is only one path and it is ANDROID_SDK_ROOT which contains everything. NDK should be in the ndk-bundle subfolder.
There are only 2 ways to make it work:
- Create a symlink in the current android-sdk installation folder i.e.
/usr/local/share/android-sdk/ndk-bundle pointing to /usr/local/share/android-ndk. This will make the current NDK installation to be used as a default for all projects.
- Add
ndk.dir=/usr/local/share/android-ndk in the local.properties file of an AndroidStudio project. This needs to be done for every project which uses android-ndk.
Would it be possible to either change the android-ndk installation path to /usr/local/share/android-sdk/ndk-bundle or change the caveat information to set ndk.dir instead of using ANDROID_NDK_HOME environment variable?
Description of feature/enhancement
It seems like
ANDROID_NDK_HOMEis no longer respected by Android Studio and sdkmanager as now there is only one path and it isANDROID_SDK_ROOTwhich contains everything. NDK should be in thendk-bundlesubfolder.There are only 2 ways to make it work:
/usr/local/share/android-sdk/ndk-bundlepointing to/usr/local/share/android-ndk. This will make the current NDK installation to be used as a default for all projects.ndk.dir=/usr/local/share/android-ndkin thelocal.propertiesfile of an AndroidStudio project. This needs to be done for every project which uses android-ndk.Would it be possible to either change the android-ndk installation path to
/usr/local/share/android-sdk/ndk-bundleor change the caveat information to set ndk.dir instead of usingANDROID_NDK_HOMEenvironment variable?