Open
Description
Hey, I tried to download files by this package.
Is not a problem for iOS, but for Android 13+ downloading doesn't start (stuck on enqueue status).
I changed Permission.storage.request();
to Permission.manageExternalStorage.status;
, I added <uses-permission android:name="android.permission.MANAGE_EXTERNAL_STORAGE" />
to manifest file and it still doesn't work...
(I'm trying to download file different than image/video)
_localPath = (await getExternalStorageDirectory())!.path;
also not work
Even example app works the same (mean doesn't work)
Any suggestions? I was looking for solutions in other tickets but without any results.