summaryrefslogtreecommitdiffstats
path: root/recipes-demo/flutter-homescreen/files
diff options
context:
space:
mode:
authorScott Murray <scott.murray@konsulko.com>2022-11-21 02:50:37 -0500
committerScott Murray <scott.murray@konsulko.com>2022-11-21 11:29:32 -0500
commitb29f7678fe1a27bbb4b6185f16910954ecc6ca03 (patch)
tree16d8a9b96478eecc6fa9c3a34598eb381faeae7b /recipes-demo/flutter-homescreen/files
parent7f3038e5efb5fed78457a5855560a3ae8912f783 (diff)
flutter-homescreen: add recipe
Add recipe for Flutter homescreen application. Bug-AGL: SPEC-4615 Change-Id: I71510ff462c84bed0de36e889455828a4feb02b3 Signed-off-by: Scott Murray <scott.murray@konsulko.com>
Diffstat (limited to 'recipes-demo/flutter-homescreen/files')
-rw-r--r--recipes-demo/flutter-homescreen/files/flutter-homescreen-debug.json11
-rw-r--r--recipes-demo/flutter-homescreen/files/flutter-homescreen-profile.json11
-rw-r--r--recipes-demo/flutter-homescreen/files/flutter-homescreen-release.json10
-rw-r--r--recipes-demo/flutter-homescreen/files/flutter-homescreen.service10
4 files changed, 42 insertions, 0 deletions
diff --git a/recipes-demo/flutter-homescreen/files/flutter-homescreen-debug.json b/recipes-demo/flutter-homescreen/files/flutter-homescreen-debug.json
new file mode 100644
index 00000000..7741e3ac
--- /dev/null
+++ b/recipes-demo/flutter-homescreen/files/flutter-homescreen-debug.json
@@ -0,0 +1,11 @@
+{
+ "view" : [ {
+ "window_type" : "BG",
+ "bundle_path" : "/usr/share/flutter/flutter_homescreen",
+ "vm_args":["--observatory-host", "0.0.0.0", "--observatory-port", "1234"],
+ "width" : 1920,
+ "height": 1080,
+ "fullscreen": true
+ }
+ ]
+}
diff --git a/recipes-demo/flutter-homescreen/files/flutter-homescreen-profile.json b/recipes-demo/flutter-homescreen/files/flutter-homescreen-profile.json
new file mode 100644
index 00000000..128800e4
--- /dev/null
+++ b/recipes-demo/flutter-homescreen/files/flutter-homescreen-profile.json
@@ -0,0 +1,11 @@
+{
+ "view" : [ {
+ "window_type" : "BG",
+ "bundle_path" : "/usr/share/flutter/flutter_homescreen",
+ "vm_args":["--observatory-host", "0.0.0.0", "--observatory-port", "1234", "--start-paused"],
+ "width" : 1920,
+ "height": 1080,
+ "fullscreen": true
+ }
+ ]
+}
diff --git a/recipes-demo/flutter-homescreen/files/flutter-homescreen-release.json b/recipes-demo/flutter-homescreen/files/flutter-homescreen-release.json
new file mode 100644
index 00000000..544a8e55
--- /dev/null
+++ b/recipes-demo/flutter-homescreen/files/flutter-homescreen-release.json
@@ -0,0 +1,10 @@
+{
+ "view" : [ {
+ "window_type" : "BG",
+ "bundle_path" : "/usr/share/flutter/flutter_homescreen",
+ "width" : 1920,
+ "height": 1080,
+ "fullscreen": true
+ }
+ ]
+}
diff --git a/recipes-demo/flutter-homescreen/files/flutter-homescreen.service b/recipes-demo/flutter-homescreen/files/flutter-homescreen.service
new file mode 100644
index 00000000..300fb22d
--- /dev/null
+++ b/recipes-demo/flutter-homescreen/files/flutter-homescreen.service
@@ -0,0 +1,10 @@
+[Unit]
+Requires=agl-compositor.service
+After=agl-compositor.service
+
+[Service]
+ExecStart=/usr/bin/flutter-auto --j=/usr/share/flutter/flutter-homescreen.json --xdg-shell-app-id=homescreen
+Restart=on-failure
+
+[Install]
+WantedBy=agl-session.target