diff options
| author | Björn Stenberg <bjorn@haxx.se> | 2010-09-20 22:03:48 +0000 |
|---|---|---|
| committer | Björn Stenberg <bjorn@haxx.se> | 2010-09-20 22:03:48 +0000 |
| commit | 23dee22ec7e6990385194536b9ac4194aa085bc8 (patch) | |
| tree | 52ba2c3e4d601f47d234557e4af1b811458b90f2 /android | |
| parent | c0edce8f5c51508ccaef9bb8460205b0ea2c9438 (diff) | |
| download | rockbox-23dee22ec7e6990385194536b9ac4194aa085bc8.zip rockbox-23dee22ec7e6990385194536b9ac4194aa085bc8.tar.gz rockbox-23dee22ec7e6990385194536b9ac4194aa085bc8.tar.bz2 rockbox-23dee22ec7e6990385194536b9ac4194aa085bc8.tar.xz | |
Added some missing build information.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@28129 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'android')
| -rw-r--r-- | android/README | 22 |
1 files changed, 8 insertions, 14 deletions
diff --git a/android/README b/android/README index 04436b3..81cd416 100644 --- a/android/README +++ b/android/README @@ -20,24 +20,18 @@ Use this as your build folder, using '../tools/configure' etc. $ ../tools/configure # type 200, then chose A for android and your screen resolution $ make -After the build finished, you can create a Rockbox.apk in bin/ - $ make apk +After the build finished, build the zip file: + $ make zip -You can install that on the device - $ $ANDROID_SDK_PATH/tools/adb install -r bin/Rockbox.apk +Create a debug signing key: + $ keytool -genkey -alias androiddebugkey -keystore $HOME/.android/debug.keystore -storepass android -keypass android -validity 365 -dname "CN=Android Debug,O=Android,C=US" +Then, you can create a Rockbox.apk which ends up in bin/ + $ make apk -NOTE: make apk needs creates a debug signed .apk, not suitable for distribution. -It expects that this key already exists. -You should be able to generate it with "keytool" using the following options: -* Keystore name: "debug.keystore" -* Keystore password: "android" -* Key alias: "androiddebugkey" -* Key password: "android" -* CN: "CN=Android Debug,O=Android,C=US" -* validity: 365 days +You can install that on the device: + $ $ANDROID_SDK_PATH/tools/adb install -r bin/Rockbox.apk -Google docs mention the SDK tools can generate it as well, but I haven't found how yet. [1]: http://developer.android.com/sdk/index.html [2]: http://developer.android.com/sdk/ndk/index.html |