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 <[email protected]>
---
 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



_______________________________________________
pve-devel mailing list
[email protected]
https://lists.proxmox.com/cgi-bin/mailman/listinfo/pve-devel

Reply via email to