equal
deleted
inserted
replaced
1 Howto Install Beem ? |
1 Android Market |
|
2 -------------- |
|
3 |
|
4 First of all, BEEM is available on the Android market. Just search for 'BEEM'. |
|
5 |
|
6 Development version |
|
7 ------------------- |
2 |
8 |
3 1. Dependencies |
9 1. Dependencies |
4 First you will need the Android SDK-1.5. |
10 First you will need the latest Android SDK. You can download it at http://d.android.com. |
|
11 You will also need the Apache Ant tool to build the project. You can get it at http://ant.apache.org |
5 |
12 |
6 2. Android project |
13 2. Android project |
7 Use the script provides by the SDK to set the Android platform directory. |
14 Use the android program provides by the SDK to set the Android platform directory. |
8 > $SDK_DIR/tools/android update project -t 2 -p $BEEM_DIRECTORY |
15 First get the Target id of the platform you want to build BEEM for. |
|
16 > $SDK_DIR/tools/android list targets |
|
17 |
|
18 Then use this id to set up the BEEM project. |
|
19 > $SDK_DIR/tools/android update project -t $TARGET_ID -p $BEEM_DIRECTORY |
9 |
20 |
10 3. Compile and install |
21 3. Compile and install |
11 Use ant to compile and install the application on the Android emulator |
22 Use ant to compile and install the application on the Android device |
12 > ant install |
23 > ant install |
13 |
24 |
|
25 The development version use a private certificate to sign the package. You will need to uninstall it before installing or upgrading a version of BEEM from the Android market. |
|
26 |