use appid instead of appname in "tap_shortcut"
[apps/launcher.git] / README.md
1 **Install SDK**
2
3 Install sdk following this URL from AGL website.
4 ```
5 http://docs.automotivelinux.org/docs/getting_started/en/dev/reference/setup-sdk-environment.html
6 ```
7
8 **Download source code**
9
10 Download launcher source code from AGL gerrit.
11 ```
12 $ git clone https://gerrit.automotivelinux.org/gerrit/apps/launcher
13 ```
14
15 **Build launcher application**
16
17 Source SDK envirment and make.
18 ```
19 $ source /xdt/sdk/environment-setup-<your_target>
20 $ cd launcher
21 $ mkdir build
22 $ cd build
23 $ qmake ..
24 $ make
25 ```
26 **Install launcher wgt**
27
28 ```
29 $ scp package/launcher.wgt root@<your_target_ip>
30 $ ssh root@<your_target_ip>
31 $ afm-util install launcher
32 ```
33
34 Reboot target board and launcher application will start by default.