How do I run an ubuntu touch app from the terminal? Where are they stored?
Asked
Active
Viewed 1,738 times
5

Sylvain Pineau
- 62,169

lumenwrites
- 759
-
On what version of Ubuntu (Touch or Desktop, 14.04, 14.10, etc...), and on what hardware or configuration? – Wilf Nov 12 '14 at 22:00
-
Nexus 7, Ubuntu Touch(Utopic) – lumenwrites Nov 12 '14 at 22:15
1 Answers
9
A convenient way for developers to do app testing is by starting them through
adb
. To make that convenient we are providing a cli tool, calledubuntu-app-launch
.
So create a remote connection with phablet-shell
and start your applications using their desktop filename:
ubuntu-app-launch com.ubuntu.calculator_calculator_1.3.316
ubuntu-app-launch dialer-app
You'll find your application desktop files in the following folders:
/usr/share/applications
for system apps and~/.local/share/applications
for user apps.
Source: https://wiki.ubuntu.com/Touch/Testing#Start_Applications_through_adb

Sylvain Pineau
- 62,169