bnc#382137 DocxAttributeOutput: don't store address of local variable
[LibreOffice.git] / README.Android
blobac11fb98b672ef8feed36802b6f58822705007e6
1 Android-specific notes
3 Note that this document has not necessarily been updated to match
4 reality... 
6 * Getting something running on an emulated device
8         Create an AVD in the android UI, don't even try to get
9 the data partition size right in the GUI, that is doomed to producing
10 and AVD that doesn't work. Instead start it from the console:
12         LD_LIBRARY_PATH=$(pwd)/lib emulator-arm -avd <Name> -partition-size 500
14 In order to have proper acceleration, you need the 32-bit libGL.so:
16         sudo zypper in Mesa-libGL-devel-32bit
18         Where <Name> is the literal name of the AVD that you entered.
20         Then:
22         make cmd cmd=bash
23         cd android/qa/sc
24         make clean all install
25         make run ; adb shell logcat
27         And if all goes well - you should have some nice unit test output to
28 enjoy. After a while of this loop you might find that you have lost a lot of
29 space on your emulator's or device's /data volume. If using the emulator, you
30 can do:
32         adb shell stop; adb shell start
34 but on a (non-rooted) device you probably just need to reboot it. On the other
35 hand, this phenomenon might not happen on actual devices.
37         and continue onwards & upwards.
39 * What about using a real device?
41         That works fine, too. You won't be able to use the "adb shell
42 stop" and "adb shell start" commands to do anything, as far as I
43 know. But don't seem to be necessary on a real device anyway?
45 * Debugging
47         Debugging is fun, the default NDK gdb (in v7) is busted, you
48 need to download a new one from:
50         http://code.google.com/p/mingw-and-ndk/
52         Even this 'fixed' gdb is broken in the way that it can see
53 symbols only for shlibs that were already loaded when the debuggee was
54 attached, so you need to carefully guess where to put:
56         fprintf(stderr, "Sleeping NOW!\n"); ::sleep(20);
58         into the code; and when you see that in logcat, you have time
59 to run: ndk-gdb and it will attach the process.
61         thread 12 # or perhaps 13
62         backtrace
64         may show you the native code trace.
66         In r8b the ndk-gdb seems to work a bit better, and I think it isn't
67 necessary to use the mingw-and-ndk ndb-gdb any longer.
70 * Common Errors / Gotchas
72 lo_dlneeds: Could not read ELF header of /data/data/org.libreoffice...libfoo.so
73         This (most likely) means that the install quietly failed, and that
74 the file is truncated; check it out with adb shell ls -l /data/data/....
77 * Detailed explanation
79 Unit tests are the first thing we want to run on Android, to get some
80 idea how well, if at all, the basic LO libraraies work. We want to
81 build even unit tests as normal Android apps, i.e. packaged as .apk
82 files, so that they run in a sandboxed environment like that of
83 whatever eventual end-user Android apps there will be that use LO
84 code.
86 Sure, we could quite easily build unit tests as plain Linux
87 executables (built against the Android libraries, of course, not
88 GNU/Linux ones), push them to the device or emulator with adb and run
89 them from adb shell, but that would not be a good test as the
90 environment such processs run in is completely different from that in
91 which real end-user apps with GUI etc run. We have no intent to
92 require LibreOffice code to be used only on "rooted" devices etc.
94 All Android apps are basically Java programs. They run "in" a Dalvik
95 virtual machine. Yes, you can also have apps where all *your* code is
96 native code, written in a compiled language like C or C++. But also
97 also such apps are actually started by system-provided Java
98 bootstrapping code (NativeActivity) running in a Dalvik VM.
100 Such a native app (or actually, "activity") is not built as a
101 executable program, but as a shared object. The Java NativeActivity
102 bootstrapper loads that shared object with dlopen.
104 Anyway, our current "experimental" apps (DocumentLoader,
105 LibreOffice4Android and LibreOfficeDesbktop) are not based on
106 NativeActivity any more. They have normal Java code for the activity,
107 and just call out to a single, app-specific native library (called
108 liblo-native-code.so) to do all the heavy lifting.