在scdn上也有找到对应的解决办法,但是我的没有解决,后来在网友的提醒下解决了
一.从git上更新了新的项目,这个项目添加 了ndk的功能,于是就报错:No toolchains found in the NDK toolchains
报错:> Configure project :********(工程名字)
NDK is missing a "toolchains" directory.
If you are using NDK, verify the ndk.dir is set to a valid NDK directory. It is currently set to D:\softInstall\AppData\Local\Android\Sdk\ndk-bundle.
If you are not using NDK, unset the NDK variable from ANDROID_NDK_HOME or local.properties to remove this warning.
报这些错误。
二:解决方法
1.因为android stuio 集成下载的NDK 文件不齐全 然后我重新下载了一个zip文件(NDK下载路径:https://developer.android.google.cn/ndk/downloads/)
2.找到项目的 local.properties文件修改ndk.dir=D\:\\ndk\\android-ndk-r19c或者androidstudio中设置
3. 配置ndk 的环境变量
4.在cmd 执行一下:ndk-build
然后重新编译,一直编译ing,然后关闭了androidstudio,重新打开,重新编译就OK了