summaryrefslogtreecommitdiffstats
path: root/conf.d/wgt/config.xml.in
diff options
context:
space:
mode:
authorMatt Porter <mporter@konsulko.com>2018-06-04 14:31:40 -0400
committerMatt Porter <mporter@konsulko.com>2018-06-14 10:58:53 -0400
commit2cf42de672004e56063f83ad26da8fec1c757e43 (patch)
tree15b0d0be0f2cf6f716389c3725740aff44ec8f15 /conf.d/wgt/config.xml.in
parent830bf99eba883c93cf231b661310da57eeb54a88 (diff)
Initial Bluetooth PBAP binding
Supports the following features: - retrieval of phonebook contacts - retrieval of call history (incoming/outgoing/missed/combined lists) - retrieval of individual contact entry by handle - search for contact by phone number Bug-AGL: SPEC-1437 Change-Id: I1d0d5c4c02e5ba4a5db1bcfc932421fd9d478426 Signed-off-by: Matt Porter <mporter@konsulko.com>
Diffstat (limited to 'conf.d/wgt/config.xml.in')
-rw-r--r--conf.d/wgt/config.xml.in24
1 files changed, 24 insertions, 0 deletions
diff --git a/conf.d/wgt/config.xml.in b/conf.d/wgt/config.xml.in
new file mode 100644
index 0000000..a40ca54
--- /dev/null
+++ b/conf.d/wgt/config.xml.in
@@ -0,0 +1,24 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<widget xmlns="http://www.w3.org/ns/widgets" id="@PROJECT_NAME@" version="@PROJECT_VERSION@">
+ <name>@PROJECT_NAME@</name>
+ <icon src="@PROJECT_ICON@"/>
+ <content src="@WIDGET_ENTRY_POINT@" type="@WIDGET_TYPE@"/>
+ <description>@PROJECT_DESCRIPTION@</description>
+ <author>@PROJECT_AUTHOR@ &lt;@PROJECT_AUTHOR_MAIL@&gt;</author>
+ <license>@PROJECT_LICENSE@</license>
+
+ <feature name="urn:AGL:widget:required-permission">
+ <param name="urn:AGL:permission::public:hidden" value="required" />
+ <param name="urn:AGL:permission::public:no-htdocs" value="required" />
+ <param name="http://tizen.org/privilege/internal/dbus" value="required" />
+ </feature>
+
+ <feature name="urn:AGL:widget:provided-api">
+ <param name="bluetooth-pbap" value="ws" />
+ </feature>
+
+ <feature name="urn:AGL:widget:required-api">
+ <param name="@WIDGET_ENTRY_POINT@" value="local" />
+ <param name="Bluetooth-Manager" value="ws" />
+ </feature>
+</widget>