No, this won’t work on any device with Android version > API 22 (since Android 6, runtime permissions).
It’s not a bug and has nothing to do with Android 10 .
As I posted several times, the File component does not ask for WRITE_EXTERNAL_STORAGE permission automatically (if you save a file). You MUST ask for it manually:
Note @Kodular :
But of course: the File component should automatically request WRITE permission.
See also here:
It’s really hard to get it working, because there are several issues with the File component:
Sometimes the full path and sometimes the relative is used (see blocks below)
WRITE permission is not queried automatically (only READ), so you have to ask manually for WRITE permission.
Permission granted is not triggered when the app starts for the first time, so you have to reload the screen.
Moreover: the File component can not access the assets with the APK (works only with companion).
To chec…
As I already mentioned here: https://community.kodular.io/t/file-path-for-unzip-file-component/37575/6?u=bodymindpower
… there are several issues with the File component:
Sometimes the full path and sometimes the relative is used (see blocks below)
WRITE permission is not queried automatically (only READ), so you have to ask manually for WRITE permission.
Permission granted is not triggered when the app starts for the first time, so you have to reload the screen.
Moreover: the File component…
2 Likes