diff options
author | Matt Ranostay <matt.ranostay@konsulko.com> | 2019-04-04 17:21:59 -0700 |
---|---|---|
committer | Matt Ranostay <matt.ranostay@konsulko.com> | 2019-05-05 00:30:29 -0700 |
commit | 91e1d0697da98971ab6375bfd745ed158b7b7185 (patch) | |
tree | 849dc9a8c6143db342e0cde988b37f2c513379d6 /conf.d/wgt | |
parent | 967b96853fa13a206c959ecd536416151313c63d (diff) |
binding: bluetooth-map: add initial MAP binding
This patchset brings initial Bluetooth MAP (Message Access Profile)
support.
Bug-AGL: SPEC-2351
Change-Id: I76b974978f72869f593526c4f6926bb5c27c48a9
Signed-off-by: Matt Ranostay <matt.ranostay@konsulko.com>
Diffstat (limited to 'conf.d/wgt')
-rw-r--r-- | conf.d/wgt/config.xml.in | 24 |
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..4c33036 --- /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@ <@PROJECT_AUTHOR_MAIL@></author> + <license>@PROJECT_LICENSE@</license> + + <feature name="urn:AGL:widget:required-permission"> + <param name="urn:AGL:permission::public:hidden" value="required" /> + <param name="http://tizen.org/privilege/internal/dbus" value="required" /> + </feature> + + <feature name="urn:AGL:widget:provided-api"> + <param name="bluetooth-map" value="ws" /> + </feature> + + <feature name="urn:AGL:widget:required-api"> + <param name="Bluetooth-Manager" value="ws"/> + <param name="@WIDGET_ENTRY_POINT@" value="local" /> + </feature> + +</widget> |