From 510102ce77fe45d14607aaad3028b39ddb7f1b1e Mon Sep 17 00:00:00 2001 From: Hwankyu Jhun Date: Thu, 2 Jun 2016 12:59:58 +0900 Subject: [PATCH] [2.4][tutorial][watch app]Fix the watch app tutorial - Remove calling watch_app_exit() on the system event cb Change-Id: I9da6a805a41ef810e3cf9c38bdd16e277c654377 Signed-off-by: Hwankyu Jhun --- org.tizen.tutorials/html/native/app_framework/watch_tutorial_n.htm | 2 -- 1 file changed, 2 deletions(-) diff --git a/org.tizen.tutorials/html/native/app_framework/watch_tutorial_n.htm b/org.tizen.tutorials/html/native/app_framework/watch_tutorial_n.htm index 1e60e01..e13a610 100644 --- a/org.tizen.tutorials/html/native/app_framework/watch_tutorial_n.htm +++ b/org.tizen.tutorials/html/native/app_framework/watch_tutorial_n.htm @@ -211,14 +211,12 @@ void low_battery(app_event_info_h event_info, void* user_data) {     /* Take the necessary actions when the system is running low on battery */ -    watch_app_exit(); } void low_memory(app_event_info_h event_info, void* user_data) {     /* Take the necessary actions when the system is running low on memory */ -    watch_app_exit(); }
  • Register the callback functions:

    -- 2.7.4