Reputation: 2585
This question is for one of the earliest versions of Tizen and does not apply to current versions
I'm just getting started with Tizen. I managed to install a HelloWorld app on the emulator, but I can't find a way to uninstall it. What am I missing?
Please see the following screen shot of the Settings menu on the emulator. The pre-loaded apps are listed under Application, but the app I installed is not there.
Upvotes: 0
Views: 5539
Reputation: 21
On tizen watch emulator press right-click > Control Panel > App Manager (left menu) > Unninstaller
Upvotes: 2
Reputation: 1149
On top left of the Tizen menu screen there is a setting icon, just click that icon and you can view all the user installed applications which can be uninstalled. Select your application from it and your app is uninstalled.
Upvotes: 0
Reputation: 10083
It's Simple just click on the settings icon which i rounded below (fig 1). Then the user apps will show a close icon(fig 2), just click on the close button which you need :)
Upvotes: 1
Reputation: 582
Open tizen shell by right-clicking on the emulator then select [Shell].
wrt-installer -ug <guid>
or
wrt-installer -un <package_name>
You can find guid at [Overview] page of config.xml.
Package name is the tizen application ID. You can find it at [Tizen] page of config.xml.
for example,
wrt-installer -ug http://yourdomain/HelloWorld
or
wrt-installer -un Spp6vzPOlp
Upvotes: 2
Reputation: 774
You can do it by using sdb
command.
$ sdb -e uninstall <AppId>
You can find your app's AppId in manifest.xml. AppId consists of random 10 characters (alphabets and digits).
BTW, Tizen 2.1 (yet to be publicly released) has uninstall function in the Settings app.
Upvotes: 4
Reputation: 5784
From the documentation:
you can uninstall the app on the phone via Settings > All > Manage applications. Select the app from the list, then click on the Uninstall button. You can also update an existing app from the command line with:
https://wiki.tizen.org/wiki/Manually_installing_apps
Upvotes: 0