Re: [android-developers] Need to Load .a static lib.

2013-09-16 Thread Baodong Chen
you can only used shared library for dynamic load static library only used for linker to construct a dynamic library or executable... On Sat, Sep 14, 2013 at 4:43 PM, Amit Sinha toamitsi...@gmail.com wrote: Can any one tell me how can I load test.a static library file in my java file .

Re: [android-developers] Need to Load .a static lib.

2013-09-16 Thread Kristopher Micinski
Specifically, since app execution happens with the context of a Dalvik VM, it doesn't make any sense to hook in a static library. Your application is not being run as a native process, but rather by proxy of being in the VM. The VM forks from a zygote process, and it makes sense to call

[android-developers] Need to Load .a static lib.

2013-09-14 Thread Amit Sinha
Can any one tell me how can I load test.a static library file in my java file . test.a static file create using NDK build make file. I read some blog and found the it is not possible to load the static lib, then i create a .so file in the i am loading the test.a. But still m not able to run my