link file is not good for me.
ln -s aarch64-linux-android-4.9 mips64el-linux-android
ln -s arm-linux-androideabi-4.9 mipsel-linux-android
Because there is another error.
* What went wrong:
A problem occurred configuring project ':Test'.
> Expected caller to ensure valid ABI: MIPS
Add this in defaultConfig if you build with gralde
ndk {
abiFilters 'armeabi-v7a','arm64-v8a','x86','x86_64'
}
If you use ndk-build command, add this in Application.mk.
APP_ABI := armeabi-v7a arm64-v8a x86 x86_64