android: Update the location of the .so files for debugging in the README.

Change-Id: I0a291236a87c3c70e93d6558e94a506099d4b4ae
Reviewed-on: https://gerrit.libreoffice.org/c/online/+/100240
Tested-by: Jenkins
Tested-by: Jenkins CollaboraOffice <jenkinscollaboraoffice@gmail.com>
Reviewed-by: Jan Holesovsky <kendy@collabora.com>
This commit is contained in:
Jan Holesovsky
2020-08-06 14:21:24 +02:00
parent 2508d83e50
commit 9a6bb8a55d

View File

@ -170,7 +170,7 @@ to setup lldb to actually read & use them.
and rebuild using 'make'.
* Add android/source/obj/local/armeabi-v7a from core.git as a Symbol Directory
* Add android/obj/local/armeabi-v7a from core.git as a Symbol Directory
In Android Studio, choose Run -> Debug... -> Edit Configurations...
@ -180,7 +180,7 @@ to setup lldb to actually read & use them.
Symbol Directories: here add the full path, like
/local/libreoffice/master-android/android/source/obj/local/armeabi-v7a
/local/libreoffice/master-android/android/obj/local/armeabi-v7a
This path contains the non-stripped version of the liblo-native-code.so, and
the debugger will read the symbols from that one (even if the APK contains
@ -190,7 +190,7 @@ to setup lldb to actually read & use them.
[Alternatively you can add the following to your ~/.lldbinit instead:
settings set target.inline-breakpoint-strategy always
settings append target.exec-search-paths /local/libreoffice/master-android/android/source/obj/local/armeabi-v7a
settings append target.exec-search-paths /local/libreoffice/master-android/android/obj/local/armeabi-v7a
]
* To use pretty printers for types like OUString, add the following to your