From 519e3fe37781babe0a3a443b52bb35a7fd3f3778 Mon Sep 17 00:00:00 2001 From: trimbaken Date: Fri, 22 Jun 2018 12:04:34 +0530 Subject: [PATCH] [TCSACR-150] Add telephony privilege to use telephony API. (#299) In public attach-panel API attach_panel_add_content_category(), under CAMERA content, Camera app should not be launched if video call is active. To check the status of the video call, Telephony API (telephony_call_get_type) is called, and telephony privilege is necessary to use telephony API. --- .../Tizen.Applications.AttachPanel/AttachPanel.cs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/Tizen.Applications.AttachPanel/Tizen.Applications.AttachPanel/AttachPanel.cs b/src/Tizen.Applications.AttachPanel/Tizen.Applications.AttachPanel/AttachPanel.cs index 13ccd38..488e8dd 100755 --- a/src/Tizen.Applications.AttachPanel/Tizen.Applications.AttachPanel/AttachPanel.cs +++ b/src/Tizen.Applications.AttachPanel/Tizen.Applications.AttachPanel/AttachPanel.cs @@ -145,6 +145,7 @@ namespace Tizen.Applications.AttachPanel /// The AttachPanel sends some information using the Bundle. /// http://tizen.org/privilege/mediastorage /// http://tizen.org/privilege/camera + /// http://tizen.org/privilege/telephony /// http://tizen.org/privilege/recorder /// http://tizen.org/privilege/appmanager.launch /// http://tizen.org/feature/camera @@ -158,6 +159,7 @@ namespace Tizen.Applications.AttachPanel /// Privileges, /// http://tizen.org/privilege/mediastorage, for using Image or Camera. /// http://tizen.org/privilege/camera, for using Camera or TakePicture. + /// http://tizen.org/privilege/telephony, for using Camera, Since(5.0). /// http://tizen.org/privilege/recorder, for using Voice. /// http://tizen.org/privilege/appmanager.launch, for adding content categories on the More tab. /// http://tizen.org/feature/camera, for using Camera or TakePicture. -- 2.7.4