diff options
author | Romain Forlot <romain.forlot@iot.bzh> | 2018-10-05 17:16:14 +0200 |
---|---|---|
committer | Romain Forlot <romain.forlot@iot.bzh> | 2018-10-09 15:31:19 +0000 |
commit | 52f416b5d9e98ac741bf53dad12378d0d3e9c567 (patch) | |
tree | 7abd170ae363d3920b17190ea5efc443948ca262 /conf.d/wgt | |
parent | 25903e6eaaa0c068b9b51bdc93e659d257be6f4d (diff) |
Unify test launch between target and native
On a target, the binder process name is taken from the widget "id",
now the native launcher script also launches the binder using the widget "id".
As the controller searches its configuration file using the binder process middle name
we need to differentiate between both "id" otherwise the wrong configuration file is used.
The commit renames configuration file according to the new "id".
Change-Id: Icd01abe21ddee562518c7f822baca8b098bbb55e
Signed-off-by: Romain Forlot <romain.forlot@iot.bzh>
Diffstat (limited to 'conf.d/wgt')
-rw-r--r-- | conf.d/wgt/config.xml.in | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/conf.d/wgt/config.xml.in b/conf.d/wgt/config.xml.in index adb4f18..b66ab0c 100644 --- a/conf.d/wgt/config.xml.in +++ b/conf.d/wgt/config.xml.in @@ -1,6 +1,6 @@ <?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> +<widget xmlns="http://www.w3.org/ns/widgets" id="afbtest" version="@PROJECT_VERSION@"> + <name>afbtest</name> <icon src="@PROJECT_ICON@"/> <content src="@WIDGET_ENTRY_POINT@" type="@WIDGET_TYPE@"/> <description>@PROJECT_DESCRIPTION@</description> @@ -13,7 +13,7 @@ </feature> <feature name="urn:AGL:widget:provided-binding"> - <param name="aft" value="@WIDGET_ENTRY_POINT@" /> + <param name="@API_NAME@" value="@WIDGET_ENTRY_POINT@" /> </feature> <feature name="urn:AGL:widget:provided-api"> |