On Android, the default download directory in init_paths resolves to the app-private internal storage, making downloaded books inaccessible to the user outside of the app: app_data_dir() resolves to the app's sandboxed files directory (/data/data/com.sofriendly.commonstacks/files/Books/).
Downloaded books should probably be stored in a user-accessible location such as /storage/emulated/0/Android/data/com.sofriendly.commonstacks/files/Books/, or directly in the Downloads directory.
Thanks
On Android, the default download directory in
init_pathsresolves to the app-private internal storage, making downloaded books inaccessible to the user outside of the app:app_data_dir()resolves to the app's sandboxed files directory (/data/data/com.sofriendly.commonstacks/files/Books/).Downloaded books should probably be stored in a user-accessible location such as
/storage/emulated/0/Android/data/com.sofriendly.commonstacks/files/Books/, or directly in theDownloadsdirectory.Thanks