author | Da Risk <da_risk@beem-project.com> |
Thu, 19 May 2011 23:09:41 +0200 | |
changeset 890 | 3b5e81bf741a |
parent 778 | bf607b6d3687 |
child 1045 | e5a970600066 |
permissions | -rw-r--r-- |
676 | 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 |
------------------- |
|
0 | 8 |
|
9 |
1. Dependencies |
|
778
bf607b6d3687
Add default target for Android-2.1
Da Risk <darisk972@gmail.com>
parents:
676
diff
changeset
|
10 |
First you will need the latest Android SDK. You can download it at http://d.android.com. Beem is usually built with Android SDK 2.1 or superior. |
676 | 11 |
You will also need the Apache Ant tool to build the project. You can get it at http://ant.apache.org |
0 | 12 |
|
366
76bfb3e8e129
Modification des infos d'install
Da Risk <darisk972@gmail.com>
parents:
34
diff
changeset
|
13 |
2. Android project |
676 | 14 |
Use the android program provides by the SDK to set the Android platform directory. |
778
bf607b6d3687
Add default target for Android-2.1
Da Risk <darisk972@gmail.com>
parents:
676
diff
changeset
|
15 |
|
bf607b6d3687
Add default target for Android-2.1
Da Risk <darisk972@gmail.com>
parents:
676
diff
changeset
|
16 |
Set up the Beem project. |
bf607b6d3687
Add default target for Android-2.1
Da Risk <darisk972@gmail.com>
parents:
676
diff
changeset
|
17 |
> $SDK_DIR/tools/android update project -p $BEEM_DIRECTORY |
bf607b6d3687
Add default target for Android-2.1
Da Risk <darisk972@gmail.com>
parents:
676
diff
changeset
|
18 |
|
bf607b6d3687
Add default target for Android-2.1
Da Risk <darisk972@gmail.com>
parents:
676
diff
changeset
|
19 |
or |
bf607b6d3687
Add default target for Android-2.1
Da Risk <darisk972@gmail.com>
parents:
676
diff
changeset
|
20 |
|
bf607b6d3687
Add default target for Android-2.1
Da Risk <darisk972@gmail.com>
parents:
676
diff
changeset
|
21 |
If you want to build Beem for a different Android Target platform : |
bf607b6d3687
Add default target for Android-2.1
Da Risk <darisk972@gmail.com>
parents:
676
diff
changeset
|
22 |
Get the Target id of the platform you want to build BEEM for. |
676 | 23 |
> $SDK_DIR/tools/android list targets |
24 |
||
25 |
Then use this id to set up the BEEM project. |
|
26 |
> $SDK_DIR/tools/android update project -t $TARGET_ID -p $BEEM_DIRECTORY |
|
0 | 27 |
|
28 |
3. Compile and install |
|
676 | 29 |
Use ant to compile and install the application on the Android device |
0 | 30 |
> ant install |
31 |
||
676 | 32 |
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. |
33 |