Linux NDK的安装

如果我们需要在安卓平台使用ffmpeg,或者其他一些c语言的库,我们需要使用NDK来编译源代码为共享库文件(.so)

1、下载NDK

google官方下载:https://developer.android.com/ndk/downloads/

Linux NDK的安装_第1张图片

下载后复制到Linux下的目录下,直接unzip android-ndk-r17b-linux-x86_64.zip来解压。

2、设置系统环境变量

Linux命令行下输入vi /etc/profile

在文件末尾添加如下内容:

#android NDK
export ANDROID_NDK="/home/fanx/ANDROID_NDK/android-ndk-r17b"
export PATH="$ANDROID_NDK:$PATH"

保存退出

然后命令行下输入source /etc/profile来更新下系统环境变量,就成功安装了NDK啦。

你可能感兴趣的:(Linux环境配置)