Merge pull request #2045 from jmarshallnz/hasprocessed
[vuplus_xbmc] / docs / README.android
1 TOC
2 1. Introduction
3 2. Installing and setting up the Android environment
4 3. Getting the source code
5 4. Installing the required Ubuntu packages
6 5. How to compile
7 6. Installing XBMC in an Android system
8 7. Running and debugging XBMC in an Android system
9 8. Architecture
10 9. Useful Commands
11
12 -----------------------------------------------------------------------------
13 1. Introduction
14 -----------------------------------------------------------------------------
15
16 We currently recommend Ubuntu Natty (11.04) or later. Current work has been
17 done here. Additionally, building from OSX Snow Leopard is working.
18
19 NOTE TO NEW USERS: All lines that are prefixed with the '#'
20 character are commands that need to be typed into a terminal window /
21 console (similar to the command prompt for Windows). Note that the '#'
22 character itself should NOT be typed as part of the command.
23
24 -----------------------------------------------------------------------------
25 2. Installing the required Ubuntu packages
26 -----------------------------------------------------------------------------
27 These are the minimum packages necessary for building XBMC. Non-Ubuntu
28 users will need to get the equivalents.
29
30    # sudo apt-get install build-essential default-jdk git curl autoconf \
31        unzip zip zlib1g-dev gawk gperf cmake
32
33 If you run a 64bit operating system you will also need to get ia32-libs
34
35    # sudo apt-get install ia32-libs
36
37
38 -----------------------------------------------------------------------------
39 3. Installing and setting up the Android environment
40 -----------------------------------------------------------------------------
41
42 To develop XBMC for Android the Android SDK and NDK are required.
43 Because the Android NDK is lacking support for wide characters (wchar_t)
44 which XBMC relies on for Unicode implementation, a third-party NDK
45 from Crystax is being used.
46
47 --------------------------------------------------------------------
48 3.1. Getting the Android SDK and NDK
49 --------------------------------------------------------------------
50
51 To get the Android SDK, go to http://developer.android.com/sdk and
52 download the latest version for your operating system. The Crystax NDK
53 can be downloaded from http://www.crystax.net/en/android/ndk
54
55 [NOTICE] Compiling XBMC for Android requires at least Crystax Android NDK
56          Revision 7b. Crystax Android NDK Revision 7 and earlier do not work
57          properly for our cause. The corresponding Crystax NDK version
58          is android-ndk-r7-crystax-5.beta3 Do not use the standard Android NDK.
59
60 [NOTICE] We previously used android-ndk-r7-crystax-5.beta2, but it produced
61          binaries that would NOT run on Jellybean 4.2. At this time,
62          android-ndk-r7-crystax-5.beta3 is required.
63          
64 After downloading the SDK and NDK extract the files contained in the
65 archives to your harddisk.
66
67 Make sure you have a recent JRE and JDK installed otherwise the
68 Android SDK will not work.
69
70 --------------------------------------------------------------------
71 3.2. Installing Android SDK packages
72 --------------------------------------------------------------------
73
74 After having extracted the Android SDK to <android-sdk> you need to
75 install some android packages using the Android SDK Manager:
76
77    # cd <android-sdk>/tools
78    # ./android update sdk -u -t platform,platform-tool
79
80 --------------------------------------------------------------------
81 3.3. Setup the Android toolchain
82 --------------------------------------------------------------------
83
84 To be able to compile XBMC and the libraries it depends on for the
85 Android platform you first need to setup an Android toolchain using
86 the Android NDK which you earlier extracted to <android-ndk>. The
87 following commands will create a toolchain suitable for the most
88 common scenario.
89 The --install-dir option (and therefore the <android-toolchain> value)
90 specifies where the resulting toolchain should be installed (your choice).
91
92    # cd <android-ndk>
93    # ls platforms
94    # cd build/tools
95    # ./make-standalone-toolchain.sh --ndk-dir=../../ \
96      --install-dir=<android-toolchain>/android-14 --platform=android-14
97
98 ATTENTION FOR X86 BUILDS - THIS DOES NOT APPLY TO 99% OF BUILDS:
99 If you want to build for the x86 platform there is a flaw in the mentioned
100 NDK. See http://code.google.com/p/android/issues/detail?id=19851 which results
101 in linker errors mentioning "sigsetjmp and siglongjmp".
102 In that case you have to download the libc.tar.bz2 from that google issue
103 entry:
104
105 http://android.googlecode.com/issues/attachment?aid=198510003000&name=libc.tar.bz2&token=6uNpHc1v8ixmVOTq3y6-ohUfb0o%3A1341156659947
106
107 And extract it to <android-toolchain>/android-<x>/sysroot/usr/lib/ and overwrite
108 the libc.so there. (where <android-toolchain>/android-<x>/ is the path you have given on the
109 --install-dir option above)
110
111 --------------------------------------------------------------------
112 3.4. Create a (new) debug key to sign debug APKs
113 --------------------------------------------------------------------
114
115   All packages must be signed. The following command will generate a
116   self-signed debug key. If the result is a cryptic error, it
117   probably just means a debug key already existed, no cause for alarm.
118
119   # keytool -genkey -keystore ~/.android/debug.keystore -v -alias \
120       androiddebugkey -dname "CN=Android Debug,O=Android,C=US" -keypass \
121       android -storepass android -keyalg RSA -keysize 2048 -validity 10000
122
123 -----------------------------------------------------------------------------
124 4. Getting the source code
125 -----------------------------------------------------------------------------
126
127    # cd $HOME
128    # git clone git://github.com/xbmc/xbmc.git xbmc-android
129    # cd xbmc-android
130    # git submodule update --init addons/skin.touched
131
132 -----------------------------------------------------------------------------
133 5. How to compile
134 -----------------------------------------------------------------------------
135
136 Compiling XBMC for Android consists of compiling the libraries XBMC depends
137 on with the Android toolchain and creating an Android Application Package
138 (APK) which can be installed in an Android system.
139
140 --------------------------------------------------------------------
141 5.1. Building dependencies
142 --------------------------------------------------------------------
143
144    # cd $HOME/xbmc-android/tools/depends
145    # ./bootstrap
146    # ./configure --help
147
148    Run configure with the correct settings for you local configuration.
149
150    Anyone working on the dependencies themselves will want to set the
151    environment variables specified in ~/.bashrc or similar, to avoid
152    having to input these with each configure. 
153
154    # make -j <jobs>
155
156    This build was designed to be massively parallel. Don't be afraid to
157    give it a 'make -j20' or so.
158
159    Verify that all deps built correctly (it will tell you so) before
160    continuing. You will get crazy build errors otherwise.
161
162 --------------------------------------------------------------------
163 5.2. Building XBMC
164 --------------------------------------------------------------------
165
166    # cd $HOME/xbmc-android
167    # make -C tools/android/xbmc
168    # make
169
170    After the first build (assuming bootstrap and configure are successful),
171    subsequent builds can be run with a simple 'make' and 'make apk'.
172
173 -----------------------------------------------------------------------------
174 6. Installing XBMC in an Android system
175 -----------------------------------------------------------------------------
176
177 To install XBMC through the previously built APK in an Android system you can
178 either install it on a real device (smartphone/tablet/...) running Android
179  >= 2.3.x.
180
181 --------------------------------------------------------------------
182 6.1. Installing XBMC on the Android device
183 --------------------------------------------------------------------
184
185 Make sure your Android device is connected to your computer through
186 USB. Furthermore you have to enable the following option in your
187 device's Android settings:
188
189   - Applications
190     [X] Unknown sources
191
192    # cd $HOME/xbmc-android/tools/android/packaging
193    # adb devices
194    # adb -s <device-id> install -r images/xbmcapp-debug.apk
195       
196 The <device-id> can be retrieved from the list returned by the
197 "adb devices" command and is the first value in the row representing
198 your device.
199
200 -----------------------------------------------------------------------------
201 7. Running and debugging XBMC in an Android system
202 -----------------------------------------------------------------------------
203
204 After installing XBMC's APK in an Android system you can start it using its
205 Launcher icon in Android's Application Launcher.
206
207 --------------------------------------------------------------------
208 7.1. Debugging XBMC
209 --------------------------------------------------------------------
210
211 To be able to see what is happening while running XBMC you first need
212 to enable USB debugging in your Android settings (this is already done
213 when using the emulator):
214
215   - Applications
216     [X] Unknown sources
217      -  Development
218       [X] USB debugging
219
220 To access the log output of your Android system run (the -s parameter
221 and the <device-id> may not be needed when using the Android emulator)
222
223   # adb -s <device-id> logcat
224
225
226 --------------------------------------------------------------------
227 7.2. GDB
228 --------------------------------------------------------------------
229
230 GDB can be used to debug, though the support is rather primitive. Rather than
231 using gdb directly, you will need to use ndk-gdb which wraps it. Do NOT trust
232 the -p/--project switches, as of ndk7b they do not work. Instead you will need
233 to cd to tools/android/packaging/xbmc and execute it from there.
234
235   # ndk-gdb --start --delay=0
236
237 This will open the installed version of XBMC and break. The warnings can be
238 ignored as we have setup the appropriate paths already.
239
240 --------------------------------------------------------------------
241 8. Architecture
242 --------------------------------------------------------------------
243
244 During the early days of the android port, xbmc was launched via a stub lib
245 that then dlopen'd libxbmc. This was done to get around bionic's poor handling
246 of shared libs. We now compile everything into libxbmc itself so that it has
247 no runtime dependencies beyond system libs. Done this way, we're able to launch
248 into libxbmc directly.
249
250 But we still hit Bionic's loader's deficiencies when we dlopen a lib. There are
251 two main issues to overcome for loading:
252
253 1. Bionic imports all symbols for a lib as soon as it is loaded, and it will
254 refuse to open a lib if it has a single unresolved symbol
255
256 2. It does not search recursively during the resolve. So if liba depends on
257 libb, dlopen'ing liba will _not_ pull in missing symbols from libb. This is
258 particularly nasty considering #1.
259
260 To work-around these problems we use our own recursive loader in place of
261 dlopen. This loader mimics expected behavior. Using the example above, loading
262 libb before liba will mean that everything will resolve correctly.
263
264 Additionally, Android does not use versioned solibs. libfoo.so.1 which is
265 typical on linux would not be found by the loader. This means that we must
266 strip the SONAME and NEEDED values out of the libs as well as changing the
267 filenames themselves. The cleaner solution would be to patch libtool/cmake/etc
268 to not add versioning in the first place. For now, we use the brute-force
269 approach of modifying the binary and blanking out the versions.
270
271 See here for more info:
272 http://www.bernawebdesign.ch/byteblog/2011/11/23/creating-non-versioned-shared-libraries-for-android/
273
274 As a final gotcha, all libs must be in the form of ^lib.*so$ with no
275 exceptions (they won't even install otherwise), and the soname must match.
276 So we have to do some renaming to get some of our self-built libs loaded.
277
278 Development:
279 Typical android native activities are built with ndk-build which is a wrapper
280 around Make. It would be a nightmare to port our entire buildsystem over, so
281 instead we build as usual then package ourselves. It may be beneficial to use
282 ndk-build to do the actual packaging, but for now its behavior is emulated.
283
284 ABI:
285 Presently we are targeting armv7a+neon for arm, and i686 for x86. Note that x86
286 builds successfully but has not been tested.
287
288 --------------------------------------------------------------------
289 9. Useful Commands
290 --------------------------------------------------------------------
291
292 Below are a few helpful commands when building/debugging. These assume that pwd
293 is 'tools/android/packaging' and that the proper sdk/ndk paths are set.
294
295 -Install a new build over the existing one
296   # adb -e install -r images/xbmcapp-debug.apk
297
298 -Launch XBMC on the emulator without the GUI
299   # adb shell am start -a android.intent.action.MAIN -n org.xbmc.xbmc/android.app.NativeActivity
300
301 -Kill a misbehaving XBMC
302   # adb shell ps | grep org.xbmc | awk '{print $2}' | xargs adb shell kill
303
304 -Filter logcat messages by a specific tag (e.g. "XBMC")
305   # adb logcat -s XBMC:V
306   
307 -Enable CheckJNI (BEFORE starting the application)
308   # adb shell setprop debug.checkjni 1
309