2010-08-02 20:34:47 +00:00
|
|
|
This folder contains the java parts needed to build an Rockbox as an
|
|
|
|
application for android.
|
|
|
|
|
2010-08-05 12:15:30 +00:00
|
|
|
* Prerequisites
|
|
|
|
|
2010-09-02 03:40:02 +00:00
|
|
|
Download and install the Android SDK[1] and NDK[2].
|
|
|
|
After you extracted the SDK, you need to run <sdk-dir>/tools/android in order to
|
|
|
|
install the actual platform sdk from the available packages tab (SDK Platform
|
|
|
|
Android 1.5 or above should work).
|
|
|
|
In the virtual devices tab you can also setup a emulator.
|
2010-08-02 20:34:47 +00:00
|
|
|
|
|
|
|
|
2010-09-02 03:40:02 +00:00
|
|
|
Then, make sure you have the ANDROID_SDK_PATH and ANDROID_NDK_PATH (pointing to
|
|
|
|
the each's root directory) environment variables set up, otherwise configure will fail to find the compiler and
|
|
|
|
compiling the java files will fail.
|
2010-08-05 12:15:30 +00:00
|
|
|
|
|
|
|
* Build instructions
|
|
|
|
|
2010-08-02 20:34:47 +00:00
|
|
|
Use this as your build folder, using '../tools/configure' etc.
|
2010-09-02 03:40:02 +00:00
|
|
|
$ ../tools/configure # type 200, then chose A for android and your screen resolution
|
2010-08-02 20:34:47 +00:00
|
|
|
$ make
|
|
|
|
|
2010-09-22 20:50:06 +00:00
|
|
|
|
|
|
|
After the build finished, build the zip file which contains codecs and themes (the binary is a separate file):
|
|
|
|
$ make zip
|
|
|
|
|
|
|
|
Once you have the zip, pack it and the binary into the apk
|
2010-09-20 22:03:48 +00:00
|
|
|
$ make apk
|
2010-08-05 12:15:30 +00:00
|
|
|
|
2010-09-22 20:50:06 +00:00
|
|
|
Side note: You don't necessarily need to recreate the zip once you have it, only if you're unsure or if you know its content changed.
|
|
|
|
Not recreating it will save time because it's only unzipped on the device if it's newer than what's on the device
|
|
|
|
|
2010-09-21 09:22:52 +00:00
|
|
|
You can install that on your device or emulator with the following command:
|
2010-09-20 22:03:48 +00:00
|
|
|
$ $ANDROID_SDK_PATH/tools/adb install -r bin/Rockbox.apk
|
2010-08-02 20:34:47 +00:00
|
|
|
|
|
|
|
|
2010-08-05 12:15:30 +00:00
|
|
|
[1]: http://developer.android.com/sdk/index.html
|
|
|
|
[2]: http://developer.android.com/sdk/ndk/index.html
|
|
|
|
[3]: http://asantoso.wordpress.com/2009/09/15/how-to-build-android-application-package-apk-from-the-command-line-using-the-sdk-tools-continuously-integrated-using-cruisecontrol/
|
|
|
|
[4]: http://developer.android.com/sdk/installing.html
|