I have 2 projects:
1 - Android Native project
2 - C/C++ Project
I'm building my shared library files (.so) in a C/C++ project and want to use those .so files in Android Native project.
I don't want to copy and paste these library files from one project to another.
First of all is it possible to use those .so files from my native Android project by using some reference etc to C++ library project?
Would it be easier to find a way to automatically copy the .so files from the C++ library project to the Android native project?