Skip to content Skip to sidebar Skip to footer

Is Renderscript Incompatible With Ndk Libraries In The Same Project?

I have a problem creating an Android app that makes use of both Renderscript and native code generated with NDK. Substantially, I use NDK tools to generate a library called sprstr_

Solution 1:

I've probably solved it, but not without other errors that came after (see Getting different errors for different platforms using Renderscript Support Library). By the way, the library loading phase should be solved by adding this line on the Application.mk file:

APP_ABI := all

That lets the NDK to compile the objs for all the supported architectures.

Post a Comment for "Is Renderscript Incompatible With Ndk Libraries In The Same Project?"