aboutsummaryrefslogtreecommitdiffstats
path: root/sources/pyside-tools
diff options
context:
space:
mode:
authorShyamnath Premnadh <Shyamnath.Premnadh@qt.io>2023-09-18 15:17:56 +0200
committerShyamnath Premnadh <Shyamnath.Premnadh@qt.io>2023-09-18 19:27:18 +0200
commit5492eb22d403be2088b864088a33af69634cb4cc (patch)
tree7487a9741c76932caf023dcb2a1265acd1b63a2b /sources/pyside-tools
parenta50b5f9d7a1d6e90fc5167962100e875bd1d5f5d (diff)
Android Deployment: Add .js files
- .js files in the application are now bundled with the app. Earlier, they were disregarded. Task-number: PYSIDE-1612 Pick-to: 6.6 6.5 Change-Id: Id81e5cdf7418549f10e1a0dfe8f944cf58664a86 Reviewed-by: Friedemann Kleint <Friedemann.Kleint@qt.io>
Diffstat (limited to 'sources/pyside-tools')
-rw-r--r--sources/pyside-tools/deploy_lib/android/buildozer.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/sources/pyside-tools/deploy_lib/android/buildozer.py b/sources/pyside-tools/deploy_lib/android/buildozer.py
index 2eeb2d261..1465ea3f1 100644
--- a/sources/pyside-tools/deploy_lib/android/buildozer.py
+++ b/sources/pyside-tools/deploy_lib/android/buildozer.py
@@ -23,7 +23,7 @@ class BuildozerConfig(BaseConfig):
f"org.{pysidedeploy_config.title}")
include_exts = self.get_value("app", "source.include_exts")
- include_exts = f"{include_exts},qml"
+ include_exts = f"{include_exts},qml,js"
self.set_value("app", "source.include_exts", include_exts, raise_warning=False)
self.set_value("app", "requirements", "python3,shiboken6,PySide6")