OLD | NEW |
---|---|
(Empty) | |
1 # Running Blimp | |
2 | |
3 See [build](build.md) for instructions on how to build Blimp. | |
4 | |
5 ## Running the client | |
6 | |
7 There are both Android and Linux clients. The Android client is the shipping | |
8 client while the Linux client is used for development purposes. | |
9 | |
10 ### Android Client | |
11 | |
12 Install the Blimp APK with the following: | |
13 | |
14 ```bash | |
15 ./build/android/adb_install_apk.py $(PRODUCT_DIR)/apks/Blimp.apk | |
16 ``` | |
17 | |
18 Set up any command line flags with: | |
19 | |
20 ```bash | |
21 adb_blimp_command_line --enable-webgl | |
nyquist
2015/09/28 17:37:27
Should this be ./build/android/adb_climp_command_l
David Trainor- moved to gerrit
2015/09/28 23:29:58
Huh it auto-completes for me. Will add though jus
| |
22 ``` | |
23 | |
24 Run the Blimp APK with: | |
25 | |
26 ```bash | |
27 adb_run_blimp_client | |
28 ``` | |
29 | |
30 ### Linux Client | |
31 | |
32 TBD | |
OLD | NEW |