The Android NDK's platform directory has been obsolete since r19. The NDK team removed it altogether in r21 in January 2021. Although it is obsolete, it can still cause the above error in the Project Structure window. The stable version of the Android Studio IDE (at least on Mac) is still looking for the platform directory when you select an r21 or higher version and try to Apply it. The IDE gives the error "NDK does not contain any platforms."
翻译过来的简单的意思就是说NDK开发在最新的时代废除了以前需要platforms的文件夹机制,但是没有去擦之前代码的屁股
那么这里的话一共有两种解决方法
platforms文件夹
在你的<你的AndroidStudio存放路径>/Sdk/ndk/<版本号>/这个目录下去新建一个名字为platforms的文件夹,然后就能正常运行了
local.properties
在你项目的
local.properties
ndk.dir=<你的AndroidStudio路径>\Sdk\ndk\23.0.7599858 sdk.dir=<你的AndroidStudio路径>\Sdk