No implementation found for int

-1

I'm having problems trying to use some extra libs in my project I have a JNI folder and either OBJ has both the necessary files, but the time I click the button to perform the action this error happens.

    
asked by anonymous 04.04.2014 / 19:36

1 answer

1

I have solved something similar using the following line of code in combination with a thread that had a delay of about 5 seconds:

            System.loadLibrary("SuaLibAqui");

But this same code gave me the exception UnsatisfiedLinkError that is a few lines down in your logcat, and the way I decided was to put the above code to load the lib during a splash screen.

    
09.04.2014 / 14:06