[pve-devel] [PATCH pve_flutter_frontend] fix: android: unable to open spice file with aSpice client
Shan Shaji
s.shaji at proxmox.com
Tue Nov 11 19:03:45 CET 2025
Users were unable to open the SPICE file with their aSpice client on
Android [0]. The issue occurred because, in a previous commit (826474c),
the path where the .vv file was saved was changed from the external
cache directory to the temporary internal cache path.
However, the sharable directory [1] was not updated in that commit.
To fix the issue, update the sharable directory to point to the
internal cache path.
- [0] https://forum.proxmox.com/threads/new-mobile-app-for-proxmox-ve.76327/post-815473
- [1] https://developer.android.com/training/secure-file-sharing/setup-sharing#DefineMetaData
Signed-off-by: Shan Shaji <s.shaji at proxmox.com>
---
android/app/src/main/res/xml/provider_paths.xml | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/android/app/src/main/res/xml/provider_paths.xml b/android/app/src/main/res/xml/provider_paths.xml
index 8248868..3708e27 100644
--- a/android/app/src/main/res/xml/provider_paths.xml
+++ b/android/app/src/main/res/xml/provider_paths.xml
@@ -1,4 +1,4 @@
<?xml version="1.0" encoding="utf-8"?>
<paths>
- <external-path name="external_files" path="." />
+ <cache-path path="." name="cache_file" />
</paths>
\ No newline at end of file
--
2.50.1
More information about the pve-devel
mailing list