When I try to build app for Android i get error

I run:
fuse build --target=Android --run
I get error message:
Configuring incomplete, errors occurred!
See also “C:/…/CMakeOutput.log”.
In CMakeOutput.log:
The target system is: Android - 1 - armv7-a
The host system is: Windows - 10.0.17763 - AMD64
What I did wrong? What should I do?

Have you installed the Android SDK and NDK in your Computer? and make sure both of them is registered in Path Environment.

Alternatively, you can install the Android SDK and NDK via NPM commands: npm install -g android-build-tools

Thanks for your response! Yes, i installed JDK, Android studio with sdk and ndk. I tried to reinstall it use npm install -g android-build-tools. But have the same problem.

from what I see on the logs, I think that means that Ninja wasn’t found in your $PATH. You can install Ninja at https://github.com/ninja-build/ninja/releases

Thancks a lot. I think such information should be in documentation.