Reputation: 19
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
Reputation: 21
Per the doc, unfortunately tizen.application.getCurrentApplication().exit()
is not supported in web widgets.
Upvotes: 0
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
Reputation: 9
You can also manually kill the app at the command line if needed.
wrt-launcher -k
Upvotes: -1
Reputation: 3409
You can 'kill' the Application:
tizen.application.getCurrentApplication().exit();
without any privilegs
Upvotes: 3