I have made an update on Android Studio including Gradle (5.4.1 > 5.6.4). Since the update, I can not find my dynamic libraries anymore. Formerly, I have checked the folder getApplicationInfo().nativeLibraryDir
(JNI to C++ via interface) and there I found all my libraries. Since the update, there are not copied to this place anymore. If I try to open the files with dlopen("name_of_lib.so", RTLD_NOW)
it works. So they are there but not in the folder.
Do you have an advice where the libraries are stored or how to get the path to the folder?
Best, Tobias.