I have an Android project with a native activity. This native activity uses a shared library named \"main\" (libmain.so file) for starting. ( with the code of ndk/samples/na
I believe you must list all your shared libraries in AndroidManifest.xml file:
<meta-data android:name="android.app.lib_name" android:value="game" />
<meta-data android:name="android.app.lib_name" android:value="main" />
Not sure about the order of libraries. Try change the order if it doesn't work.