我正在使用ubuntu并尝试构建项目,我使用以下代码:
cd <project-directory>/tess-two
ndk-build
android update project --path .
ant release
当我键入ndk-build时,它返回未找到的命令。 它返回未找到的命令。我解压缩了ndk bin文件并将其作为文件夹。请帮帮我。
答案 0 :(得分:2)
You must include in your PATH variable the path to the android NDK. For example, on my machine, I have, in my .zshrc
(could be in .bashrc
for you), the following line:
export PATH=$PATH:/opt/android-ndk
Then enter the command bash
to restart your shell, and the command should work.
答案 1 :(得分:1)
我遇到了同样的问题。如果您尚未这样做,则必须先从此处下载NDK:https://developer.android.com/ndk/downloads/index.html#download
完成后,请按照步骤执行包,以便NDK自行提取。提取后,执行以下操作:
export PATH=/<your_path_to_the_ndk>:$PATH
这将直接添加到您的路径中。另外,请务必执行export PATH=/<path_to_tools_or_platform-tools>/:$PATH
这应该就是你所需要的。您现在可以导航到tess-two文件夹并执行ndk-build