Reputation: 35
I have build VLC in android with codes implement:
jack--:~$ export ANDROID_SDK=android-sdk
jack--:~$ export ANDROID_NDK=android-ndk-r9d
jack--:~$ export PATH=$PATH:$ANDROID_SDK/platform-tools:$ANDROID_SDK/tools
jack--:~$ export ANDROID_ABI=armeabi-v7a
But i'm using the NDK revision 9 The problem show "You need the NDKv8b or later". How do i solve the problem ?
Upvotes: 3
Views: 860
Reputation: 3663
Use like this :
export ANDROID_NDK=~/.android/adt-bundle-linux-x86-20130729/android-ndk-r9d
This will solve the problem.
That is use ~/ before your NDK path.
Upvotes: 1