diff options
author | Romain Forlot <romain.forlot@iot.bzh> | 2018-08-02 18:08:51 +0200 |
---|---|---|
committer | Jan-Simon Moeller <jsmoeller@linuxfoundation.org> | 2018-08-16 13:52:02 +0000 |
commit | 258be114062008121a01c0c4cf40abc9b1991189 (patch) | |
tree | 7746c6b57661b43df81ab0e9e4ad6df4f86147e9 | |
parent | f8c4be3defa8717ee1b6e7c2770cb6c32ed698f0 (diff) |
Use new AppFw feature to find a library
Use new AppFw feature to find a library location.
This will help to find the library that hold a binding which could create several different APIs.
Depends-On: I70aad7d523ece7a2ae0058b79708a02ef81144e2
Change-Id: I1454eb8ea661d4d3854b344cb989fc05e2704a77
Signed-off-by: Romain Forlot <romain.forlot@iot.bzh>
-rw-r--r-- | conf.d/wgt/config.xml.in | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/conf.d/wgt/config.xml.in b/conf.d/wgt/config.xml.in index fc29847..b2b196d 100644 --- a/conf.d/wgt/config.xml.in +++ b/conf.d/wgt/config.xml.in @@ -12,11 +12,15 @@ <param name="urn:AGL:permission::public:no-htdocs" value="required" /> </feature> + <feature name="urn:AGL:widget:provided-binding"> + <param name="aft" value="@WIDGET_ENTRY_POINT@" /> + </feature> + <feature name="urn:AGL:widget:provided-api"> <param name="afTest" value="ws" /> </feature> - <feature name="urn:AGL:widget:required-api"> - <param name="lib/aft.so" value="local" /> + <feature name="urn:AGL:widget:required-binding"> + <param name="@WIDGET_ENTRY_POINT@" value="local" /> </feature> </widget> |