I’m trying to build my first flatpak app. Most of things already work fine, except opening files from my host home directory. I’ve already added --filesystem=home to the manifest.
I can open the file dialog and choose the file, but then I got the error message:
Could not read from: /run/user/1000/doc/d7cd3328/Canboulay.ly
No such file or directory (2)
So the file is copied from the host within the flatpak container, but for some reason it cannot read it.
I’m running the built flatpak from the build directory:
[fede@localhost d7cd3328]$ pwd
/home/fede/src/flatpak/frescobaldi/_build/var/run/user/1000/doc/d7cd3328
[fede@localhost d7cd3328]$ ls -lh
totale 12K
-rw-r--r--. 1 fede fede 8,8K 1 ago 2017 Canboulay.ly
Let me know if you need further information.