android - You need the NDKr9 or later -


i tried build android-vlc , ijkplayer using git, , after following steps , making required sdk , ndk exports each one, both lead me same error message through git-bash is:

you need ndkr9 or later 

i have ndkr9b , ndkr10d , got error message both of them, , after having @ android-vlc sdk source code found checking /release.txt file in ndk provided path:

# try detect ndk version rel=$(grep -o '^r[0-9]*.*' $android_ndk/release.txt 2>/dev/null|cut -b2-) case "$rel" in     9*|10*)         gccver=4.8         cxxstl="/"${gccver}     ;;     7|8|*)         echo "you need ndkv9 or later"         exit 1     ;; esac 

and when checking self ndk10, found contains 1 line is:

r10d (64-bit)

and in ndk9 is:

r9b

which supposed make code run without problems in both cases, missing here?

p.s. came across this question provides same problem it's answer doesn't work me.


Comments