diff options
author | Humberto Alfonso Díaz <humberto.alfonso@asvito.es> | 2019-06-19 08:17:22 +0200 |
---|---|---|
committer | Lorenzo Tilve <ltilve@igalia.com> | 2020-02-04 09:41:14 +0100 |
commit | 577649504775349936391330a8bdf3fd58464a67 (patch) | |
tree | 0a7754a3512a316e39a94024b65f783a140f2de0 /src/config.xml | |
parent | 706ad73eb02caf8532deaf5d38995bd258725cb8 (diff) |
STRUCT Repo structure with basic layout
Diffstat (limited to 'src/config.xml')
-rw-r--r-- | src/config.xml | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/src/config.xml b/src/config.xml new file mode 100644 index 0000000..1f409f6 --- /dev/null +++ b/src/config.xml @@ -0,0 +1,20 @@ +<?xml version="1.0" encoding="UTF-8"?> +<widget xmlns="http://www.w3.org/ns/widgets" id="webapps-html5-homescreen" version="5.0.0"> + <name>HTML5 Homescreen</name> + <icon src="icon.png"/> + <content src="index.html" type="text/html"/> + <description>HTML5 Homescreen demo</description> + <author>Igalia, S.L.</author> + <license>MIT</license> + <feature name="urn:AGL:widget:required-permission"> + <param name="urn:AGL:permission::public:no-htdocs" value="required" /> + <param name="urn:AGL:permission:afm:system:widget" value="required" /> <!-- list available apps --> + <param name="urn:AGL:permission:afm:system:runner" value="required" /> <!-- run other apps --> + <param name="urn:AGL:permission::public:applications:read" value="required" /> <!-- get app icons --> + </feature> + <feature name="urn:AGL:widget:required-api"> + <param name="windowmanager" value="ws" /> + <param name="homescreen" value="ws" /> + <param name="afm-main" value="ws" /> + </feature> +</widget>
\ No newline at end of file |