Re: [android-developers] Call the functions of *.SO from JAVA

2012-07-05 Thread HideCheck
Hi chainz #put .so file. eclipse project/libs/armeabi/xxx.so #add code private native void [method name](args..); static { System.loadLibrary(so file name); } Best Regards, 2012/7/5 chainz roid sangilikumar.muniya...@marudham.co.in: Hi everyone I'm working

Re: [android-developers] Call the functions of *.SO from JAVA

2012-07-05 Thread Vijay Krishnan
using java native interface,we can call the function in c or c++. On Thu, Jul 5, 2012 at 12:12 PM, HideCheck hidech...@gmail.com wrote: Hi chainz #put .so file. eclipse project/libs/armeabi/xxx.so #add code private native void [method name](args..); static {

[android-developers] Call the functions of *.SO from JAVA

2012-07-04 Thread chainz roid
Hi everyone I'm working in ICS and I'm developing own android device. Well i have vcfsclint.so file its contains more functions.(Ex. EnrollUser, IdentifUser etc,..) I want to call this functions from my java application. Regarding this where i have to add this .SO file