davidVictor
davidVictor

Reputation: 19

How to kill application in ti-zen web application

In ti-zen web application when i tried to kill application using kill API applications are not killing. i added privileges in config file. (tizen.application.kill(context id).

HTTP://tizen.org/privilege/application.kill is added in config file

Upvotes: 2

Views: 1374

Answers (4)

Gisele Gomes
Gisele Gomes

Reputation: 21

Per the doc, unfortunately tizen.application.getCurrentApplication().exit() is not supported in web widgets.

Upvotes: 0

Nikhil Kumar
Nikhil Kumar

Reputation: 2914

If you want to exit the application you can write tizen.application.getCurrentApplication().exit(); where ever you want without any privileges.

Upvotes: -1

Kevin
Kevin

Reputation: 9

You can also manually kill the app at the command line if needed.

wrt-launcher -k

Upvotes: -1

Darin Kolev
Darin Kolev

Reputation: 3409

You can 'kill' the Application:

tizen.application.getCurrentApplication().exit();

without any privilegs

Upvotes: 3

Related Questions