NDK update error for opensl

126 Views Asked by At

I am facing some problem with compiling the code, After updating the project, now i am getting build field with error.

Error:(81) Android NDK: Application targets deprecated ABI(s): armeabi mips mips64.
Error:(82) Android NDK: Support for these ABIs will be removed in a future NDK release.

In my code i have listed the APP_ABI := all like this.

1

There are 1 best solutions below

9
Anton Malyshev On

Just change to

APP_ABI := armeabi-v7a arm64-v8a x86

to use only actual architectures.