diff options
author | 2022-07-29 12:12:07 +0200 | |
---|---|---|
committer | 2022-07-29 12:17:18 +0200 | |
commit | 2144b21544b8c871477574b896902f4159c74cae (patch) | |
tree | c2c57d112199507b3abddcc19354f7a8b35567d2 /package | |
parent | 54da9d4383a999d2dc2223e7e5215444e04c3f32 (diff) |
Update for app framework removal.
Changes:
- Remove the autobuild scripts and config.xml used by the app
framework widget build.
- Update the qmake files to just build a "videoplayer" binary and
install it into /usr/bin by default.
- Remove the code in main.cpp that handled reading the WebSocket
command-line arguments and passing them to binding related
code.
- Add setenv of QT_QUICK_CONTROLS_STYLE to "AGL" to get the AGL
styling used. This replaces a global environment variable
definition tied to the old app framework, and makes it more
obvious that the style is required for the app to properly
work.
- Remove MediaScaner based on QtWebSockets which was removed
from agl-demo-platform
Bug-AGL: SPEC-4182
Change-Id: I022217ffc42da41093a55120554237f95e3aa413
Signed-off-by: Vasyl Vavrychuk <vasyl.vavrychuk@opensynergy.com>
Diffstat (limited to 'package')
-rw-r--r-- | package/config.xml | 19 |
1 files changed, 0 insertions, 19 deletions
diff --git a/package/config.xml b/package/config.xml deleted file mode 100644 index ecead3b..0000000 --- a/package/config.xml +++ /dev/null @@ -1,19 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<widget xmlns="http://www.w3.org/ns/widgets" id="videoplayer" version="0.1"> - <name>Video</name> - <icon src="icon.svg"/> - <content src="bin/videoplayer" type="application/vnd.agl.native"/> - <description>This is a demo videoplayer application</description> - <author>Tasuku Suzuki <tasuku.suzuki@qt.io></author> - <license>APL 2.0</license> - <feature name="urn:AGL:widget:required-api"> - <param name="mediascanner" value="ws"/> - </feature> - <feature name="urn:AGL:widget:required-permission"> - <param name="urn:AGL:permission::public:no-htdocs" value="required"/> - <param name="http://tizen.org/privilege/internal/dbus" value="required"/> - <param name="urn:AGL:permission::public:display" value="required" /> - </feature> -</widget> - - |