Dynamically loading C++ library in Android -
i trying load c++ library dynamically in android project. there other method of loading/linking library dynamically other system.loadlibrary() function call ?
are there tools available debug whether activity classes invoke c++ library ?
thanks in advance.
dlopen() , related functions in dlfcn.h allow dynamically load libraries within ndk. http://androidxref.com/7.1.1_r6/xref/bionic/libc/include/dlfcn.h
Comments
Post a Comment