README-android.txt 20 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432
  1. ================================================================================
  2. Simple DirectMedia Layer for Android
  3. ================================================================================
  4. Requirements:
  5. Android SDK (version 10 or later)
  6. http://developer.android.com/sdk/index.html
  7. Android NDK r7 or later
  8. http://developer.android.com/sdk/ndk/index.html
  9. Minimum API level supported by SDL: 10 (Android 2.3.3)
  10. ================================================================================
  11. How the port works
  12. ================================================================================
  13. - Android applications are Java-based, optionally with parts written in C
  14. - As SDL apps are C-based, we use a small Java shim that uses JNI to talk to
  15. the SDL library
  16. - This means that your application C code must be placed inside an Android
  17. Java project, along with some C support code that communicates with Java
  18. - This eventually produces a standard Android .apk package
  19. The Android Java code implements an "Activity" and can be found in:
  20. android-project/src/org/libsdl/app/SDLActivity.java
  21. The Java code loads your game code, the SDL shared library, and
  22. dispatches to native functions implemented in the SDL library:
  23. src/SDL_android.c
  24. Your project must include some glue code that starts your main() routine:
  25. src/main/android/SDL_android_main.c
  26. ================================================================================
  27. Building an app
  28. ================================================================================
  29. For simple projects you can use the script located at build-scripts/androidbuild.sh
  30. There's two ways of using it:
  31. androidbuild.sh com.yourcompany.yourapp < sources.list
  32. androidbuild.sh com.yourcompany.yourapp source1.c source2.c ...sourceN.c
  33. sources.list should be a text file with a source file name in each line
  34. Filenames should be specified relative to the current directory, for example if
  35. you are in the build-scripts directory and want to create the testgles.c test, you'll
  36. run:
  37. ./androidbuild.sh org.libsdl.testgles ../test/testgles.c
  38. One limitation of this script is that all sources provided will be aggregated into
  39. a single directory, thus all your source files should have a unique name.
  40. Once the project is complete the script will tell you where the debug APK is located.
  41. If you want to create a signed release APK, you can use the project created by this
  42. utility to generate it.
  43. Finally, a word of caution: re running androidbuild.sh wipes any changes you may have
  44. done in the build directory for the app!
  45. For more complex projects, follow these instructions:
  46. 1. Copy the android-project directory wherever you want to keep your projects
  47. and rename it to the name of your project.
  48. 2. Move or symlink this SDL directory into the <project>/jni directory
  49. 3. Edit <project>/jni/src/Android.mk to include your source files
  50. 4. Run 'ndk-build' (a script provided by the NDK). This compiles the C source
  51. If you want to use the Eclipse IDE, skip to the Eclipse section below.
  52. 5. Create <project>/local.properties and use that to point to the Android SDK directory, by writing a line with the following form:
  53. sdk.dir=PATH_TO_ANDROID_SDK
  54. 6. Run 'ant debug' in android/project. This compiles the .java and eventually
  55. creates a .apk with the native code embedded
  56. 7. 'ant debug install' will push the apk to the device or emulator (if connected)
  57. Here's an explanation of the files in the Android project, so you can customize them:
  58. android-project/
  59. AndroidManifest.xml - package manifest. Among others, it contains the class name
  60. of the main Activity and the package name of the application.
  61. build.properties - empty
  62. build.xml - build description file, used by ant. The actual application name
  63. is specified here.
  64. default.properties - holds the target ABI for the application, android-10 and up
  65. project.properties - holds the target ABI for the application, android-10 and up
  66. local.properties - holds the SDK path, you should change this to the path to your SDK
  67. jni/ - directory holding native code
  68. jni/Android.mk - Android makefile that can call recursively the Android.mk files
  69. in all subdirectories
  70. jni/SDL/ - (symlink to) directory holding the SDL library files
  71. jni/SDL/Android.mk - Android makefile for creating the SDL shared library
  72. jni/src/ - directory holding your C/C++ source
  73. jni/src/Android.mk - Android makefile that you should customize to include your
  74. source code and any library references
  75. res/ - directory holding resources for your application
  76. res/drawable-* - directories holding icons for different phone hardware. Could be
  77. one dir called "drawable".
  78. res/layout/main.xml - Usually contains a file main.xml, which declares the screen layout.
  79. We don't need it because we use the SDL video output.
  80. res/values/strings.xml - strings used in your application, including the application name
  81. shown on the phone.
  82. src/org/libsdl/app/SDLActivity.java - the Java class handling the initialization and binding
  83. to SDL. Be very careful changing this, as the SDL library relies
  84. on this implementation.
  85. ================================================================================
  86. Build an app with static linking of libSDL
  87. ================================================================================
  88. This build uses the Android NDK module system.
  89. Instructions:
  90. 1. Copy the android-project directory wherever you want to keep your projects
  91. and rename it to the name of your project.
  92. 2. Rename <project>/jni/src/Android_static.mk to <project>/jni/src/Android.mk
  93. (overwrite the existing one)
  94. 3. Edit <project>/jni/src/Android.mk to include your source files
  95. 4. create and export an environment variable named NDK_MODULE_PATH that points
  96. to the parent directory of this SDL directory. e.g.:
  97. export NDK_MODULE_PATH="$PWD"/..
  98. 5. Edit <project>/src/org/libsdl/app/SDLActivity.java and remove the call to
  99. System.loadLibrary("SDL2") line 42.
  100. 6. Run 'ndk-build' (a script provided by the NDK). This compiles the C source
  101. ================================================================================
  102. Customizing your application name
  103. ================================================================================
  104. To customize your application name, edit AndroidManifest.xml and replace
  105. "org.libsdl.app" with an identifier for your product package.
  106. Then create a Java class extending SDLActivity and place it in a directory
  107. under src matching your package, e.g.
  108. src/com/gamemaker/game/MyGame.java
  109. Here's an example of a minimal class file:
  110. --- MyGame.java --------------------------
  111. package com.gamemaker.game;
  112. import org.libsdl.app.SDLActivity;
  113. /*
  114. * A sample wrapper class that just calls SDLActivity
  115. */
  116. public class MyGame extends SDLActivity { }
  117. ------------------------------------------
  118. Then replace "SDLActivity" in AndroidManifest.xml with the name of your
  119. class, .e.g. "MyGame"
  120. ================================================================================
  121. Customizing your application icon
  122. ================================================================================
  123. Conceptually changing your icon is just replacing the "ic_launcher.png" files in
  124. the drawable directories under the res directory. There are four directories for
  125. different screen sizes. These can be replaced with one dir called "drawable",
  126. containing an icon file "ic_launcher.png" with dimensions 48x48 or 72x72.
  127. You may need to change the name of your icon in AndroidManifest.xml to match
  128. this icon filename.
  129. ================================================================================
  130. Loading assets
  131. ================================================================================
  132. Any files you put in the "assets" directory of your android-project directory
  133. will get bundled into the application package and you can load them using the
  134. standard functions in SDL_rwops.h.
  135. There are also a few Android specific functions that allow you to get other
  136. useful paths for saving and loading data:
  137. SDL_AndroidGetInternalStoragePath()
  138. SDL_AndroidGetExternalStorageState()
  139. SDL_AndroidGetExternalStoragePath()
  140. See SDL_system.h for more details on these functions.
  141. The asset packaging system will, by default, compress certain file extensions.
  142. SDL includes two asset file access mechanisms, the preferred one is the so
  143. called "File Descriptor" method, which is faster and doesn't involve the Dalvik
  144. GC, but given this method does not work on compressed assets, there is also the
  145. "Input Stream" method, which is automatically used as a fall back by SDL. You
  146. may want to keep this fact in mind when building your APK, specially when large
  147. files are involved.
  148. For more information on which extensions get compressed by default and how to
  149. disable this behaviour, see for example:
  150. http://ponystyle.com/blog/2010/03/26/dealing-with-asset-compression-in-android-apps/
  151. ================================================================================
  152. Pause / Resume behaviour
  153. ================================================================================
  154. If SDL is compiled with SDL_ANDROID_BLOCK_ON_PAUSE defined (the default),
  155. the event loop will block itself when the app is paused (ie, when the user
  156. returns to the main Android dashboard). Blocking is better in terms of battery
  157. use, and it allows your app to spring back to life instantaneously after resume
  158. (versus polling for a resume message).
  159. Upon resume, SDL will attempt to restore the GL context automatically.
  160. In modern devices (Android 3.0 and up) this will most likely succeed and your
  161. app can continue to operate as it was.
  162. However, there's a chance (on older hardware, or on systems under heavy load),
  163. where the GL context can not be restored. In that case you have to listen for
  164. a specific message, (which is not yet implemented!) and restore your textures
  165. manually or quit the app (which is actually the kind of behaviour you'll see
  166. under iOS, if the OS can not restore your GL context it will just kill your app)
  167. ================================================================================
  168. Threads and the Java VM
  169. ================================================================================
  170. For a quick tour on how Linux native threads interoperate with the Java VM, take
  171. a look here: http://developer.android.com/guide/practices/jni.html
  172. If you want to use threads in your SDL app, it's strongly recommended that you
  173. do so by creating them using SDL functions. This way, the required attach/detach
  174. handling is managed by SDL automagically. If you have threads created by other
  175. means and they make calls to SDL functions, make sure that you call
  176. Android_JNI_SetupThread before doing anything else otherwise SDL will attach
  177. your thread automatically anyway (when you make an SDL call), but it'll never
  178. detach it.
  179. ================================================================================
  180. Using STL
  181. ================================================================================
  182. You can use STL in your project by creating an Application.mk file in the jni
  183. folder and adding the following line:
  184. APP_STL := stlport_static
  185. For more information check out CPLUSPLUS-SUPPORT.html in the NDK documentation.
  186. ================================================================================
  187. Additional documentation
  188. ================================================================================
  189. The documentation in the NDK docs directory is very helpful in understanding the
  190. build process and how to work with native code on the Android platform.
  191. The best place to start is with docs/OVERVIEW.TXT
  192. ================================================================================
  193. Using Eclipse
  194. ================================================================================
  195. First make sure that you've installed Eclipse and the Android extensions as described here:
  196. http://developer.android.com/sdk/eclipse-adt.html
  197. Once you've copied the SDL android project and customized it, you can create an Eclipse project from it:
  198. * File -> New -> Other
  199. * Select the Android -> Android Project wizard and click Next
  200. * Enter the name you'd like your project to have
  201. * Select "Create project from existing source" and browse for your project directory
  202. * Make sure the Build Target is set to Android 2.0
  203. * Click Finish
  204. ================================================================================
  205. Using the emulator
  206. ================================================================================
  207. There are some good tips and tricks for getting the most out of the
  208. emulator here: http://developer.android.com/tools/devices/emulator.html
  209. Especially useful is the info on setting up OpenGL ES 2.0 emulation.
  210. Notice that this software emulator is incredibly slow and needs a lot of disk space.
  211. Using a real device works better.
  212. ================================================================================
  213. Troubleshooting
  214. ================================================================================
  215. You can create and run an emulator from the Eclipse IDE:
  216. * Window -> Android SDK and AVD Manager
  217. You can see if adb can see any devices with the following command:
  218. adb devices
  219. You can see the output of log messages on the default device with:
  220. adb logcat
  221. You can push files to the device with:
  222. adb push local_file remote_path_and_file
  223. You can push files to the SD Card at /sdcard, for example:
  224. adb push moose.dat /sdcard/moose.dat
  225. You can see the files on the SD card with a shell command:
  226. adb shell ls /sdcard/
  227. You can start a command shell on the default device with:
  228. adb shell
  229. You can remove the library files of your project (and not the SDL lib files) with:
  230. ndk-build clean
  231. You can do a build with the following command:
  232. ndk-build
  233. You can see the complete command line that ndk-build is using by passing V=1 on the command line:
  234. ndk-build V=1
  235. If your application crashes in native code, you can use addr2line to convert the
  236. addresses in the stack trace to lines in your code.
  237. For example, if your crash looks like this:
  238. I/DEBUG ( 31): signal 11 (SIGSEGV), code 2 (SEGV_ACCERR), fault addr 400085d0
  239. I/DEBUG ( 31): r0 00000000 r1 00001000 r2 00000003 r3 400085d4
  240. I/DEBUG ( 31): r4 400085d0 r5 40008000 r6 afd41504 r7 436c6a7c
  241. I/DEBUG ( 31): r8 436c6b30 r9 435c6fb0 10 435c6f9c fp 4168d82c
  242. I/DEBUG ( 31): ip 8346aff0 sp 436c6a60 lr afd1c8ff pc afd1c902 cpsr 60000030
  243. I/DEBUG ( 31): #00 pc 0001c902 /system/lib/libc.so
  244. I/DEBUG ( 31): #01 pc 0001ccf6 /system/lib/libc.so
  245. I/DEBUG ( 31): #02 pc 000014bc /data/data/org.libsdl.app/lib/libmain.so
  246. I/DEBUG ( 31): #03 pc 00001506 /data/data/org.libsdl.app/lib/libmain.so
  247. You can see that there's a crash in the C library being called from the main code.
  248. I run addr2line with the debug version of my code:
  249. arm-eabi-addr2line -C -f -e obj/local/armeabi/libmain.so
  250. and then paste in the number after "pc" in the call stack, from the line that I care about:
  251. 000014bc
  252. I get output from addr2line showing that it's in the quit function, in testspriteminimal.c, on line 23.
  253. You can add logging to your code to help show what's happening:
  254. #include <android/log.h>
  255. __android_log_print(ANDROID_LOG_INFO, "foo", "Something happened! x = %d", x);
  256. If you need to build without optimization turned on, you can create a file called
  257. "Application.mk" in the jni directory, with the following line in it:
  258. APP_OPTIM := debug
  259. ================================================================================
  260. Memory debugging
  261. ================================================================================
  262. The best (and slowest) way to debug memory issues on Android is valgrind.
  263. Valgrind has support for Android out of the box, just grab code using:
  264. svn co svn://svn.valgrind.org/valgrind/trunk valgrind
  265. ... and follow the instructions in the file README.android to build it.
  266. One thing I needed to do on Mac OS X was change the path to the toolchain,
  267. and add ranlib to the environment variables:
  268. export RANLIB=$NDKROOT/toolchains/arm-linux-androideabi-4.4.3/prebuilt/darwin-x86/bin/arm-linux-androideabi-ranlib
  269. Once valgrind is built, you can create a wrapper script to launch your
  270. application with it, changing org.libsdl.app to your package identifier:
  271. --- start_valgrind_app -------------------
  272. #!/system/bin/sh
  273. export TMPDIR=/data/data/org.libsdl.app
  274. exec /data/local/Inst/bin/valgrind --log-file=/sdcard/valgrind.log --error-limit=no $*
  275. ------------------------------------------
  276. Then push it to the device:
  277. adb push start_valgrind_app /data/local
  278. and make it executable:
  279. adb shell chmod 755 /data/local/start_valgrind_app
  280. and tell Android to use the script to launch your application:
  281. adb shell setprop wrap.org.libsdl.app "logwrapper /data/local/start_valgrind_app"
  282. If the setprop command says "could not set property", it's likely that
  283. your package name is too long and you should make it shorter by changing
  284. AndroidManifest.xml and the path to your class file in android-project/src
  285. You can then launch your application normally and waaaaaaaiiittt for it.
  286. You can monitor the startup process with the logcat command above, and
  287. when it's done (or even while it's running) you can grab the valgrind
  288. output file:
  289. adb pull /sdcard/valgrind.log
  290. When you're done instrumenting with valgrind, you can disable the wrapper:
  291. adb shell setprop wrap.org.libsdl.app ""
  292. ================================================================================
  293. Why is API level 10 the minimum required?
  294. ================================================================================
  295. API level 10 is required because SDL requires some functionality for running not
  296. available on older devices and some for building which is not in older NDK/SDKs.
  297. Support for native OpenGL ES and ES2 applications was introduced in the NDK for
  298. API level 4 and 8. EGL was made a stable API in the NDK for API level 9, which
  299. has since then been obsoleted, with the recommendation to developers to bump the
  300. required API level to 10.
  301. As of this writing, according to http://developer.android.com/about/dashboards/index.html
  302. about 90% of the Android devices accessing Google Play support API level 10 or
  303. higher (March 2013).
  304. ================================================================================
  305. A note regarding the use of the "dirty rectangles" rendering technique
  306. ================================================================================
  307. If your app uses a variation of the "dirty rectangles" rendering technique,
  308. where you only update a portion of the screen on each frame, you may notice a
  309. variety of visual glitches on Android, that are not present on other platforms.
  310. This is caused by SDL's use of EGL as the support system to handle OpenGL ES/ES2
  311. contexts, in particular the use of the eglSwapBuffers function. As stated in the
  312. documentation for the function "The contents of ancillary buffers are always
  313. undefined after calling eglSwapBuffers".
  314. Setting the EGL_SWAP_BEHAVIOR attribute of the surface to EGL_BUFFER_PRESERVED
  315. is not possible for SDL as it requires EGL 1.4, available only on the API level
  316. 17+, so the only workaround available on this platform is to redraw the entire
  317. screen each frame.
  318. Reference: http://www.khronos.org/registry/egl/specs/EGLTechNote0001.html
  319. ================================================================================
  320. Known issues
  321. ================================================================================
  322. - TODO. I'm sure there's a bunch more stuff I haven't thought of