I am running into some issues loading shared library files into gdb. I have tried every permutation I can think of. I have also tried the file command suggested online, but I still can not load the libraries...
(gdb) file app/src/main/obj/local/armeabi/libUseTBT.so
Reading symbols from app/src/main/obj/local/armeabi/libUseTBT.so...done.
(gdb) info sharedlibrary
No shared libraries loaded at this time.
(gdb) file ~/system_lib/
/home/sansari/system_lib/: Success.
(gdb) info sharedlibrary
No shared libraries loaded at this time.
(gdb) set solib-search-path system_lib/:app/src/main/obj/local/armeabi/
(gdb) info sharedlibrary
No shared libraries loaded at this time.
(gdb) set solib-search-path ~/system_lib/:app/src/main/obj/local/armeabi/
(gdb) info sharedlibrary
No shared libraries loaded at this time.
(gdb) set solib-search-path app/src/main/obj/local/armeabi/
(gdb) info sharedlibrary
No shared libraries loaded at this time.
(gdb) set solib-search-path system_lib/:app/src/main/obj/local/armeabi/
(gdb) info sharedlibrary
No shared libraries loaded at this time.
(gdb) set solib-search-path system_lib/:app/src/main/obj/local/armeabi/libUseTBT.so
(gdb) info sharedlibrary
No shared libraries loaded at this time.
(gdb) set solib-search-path ~/system_lib/:app/src/main/obj/local/armeabi/libUseTBT.so
(gdb) info sharedlibrary
No shared libraries loaded at this time.