-
When providing a path to a local file, i get the following error message while opening the file:
My code for the fileOpener is:
When I try to use a path to a file that is hosted on our server:
I get the following error:
What am I doing wrong? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
You can only open local files, not files on a web server. You have to download them first (e.g. using Edit:
Make sure to configure Android correctly, see Android. |
Beta Was this translation helpful? Give feedback.
You can only open local files, not files on a web server. You have to download them first (e.g. using
downloadFile(...)
) and then open them.Edit:
Make sure to configure Android correctly, see Android.