You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The package uses getExternalStorageDirectory which forces the user to add external storage permission in the android manifest. This causes issue with Android 13+ devices which has no permission to access external storage.
// Filing methods:------------------------------------------------------------
Future<String?> get _localPath async {
var directory;
if (Platform.isIOS) {
directory = await getApplicationDocumentsDirectory();
} else {
directory = await getExternalStorageDirectory();
}
return directory.path;
}
The text was updated successfully, but these errors were encountered:
The package uses getExternalStorageDirectory which forces the user to add external storage permission in the android manifest. This causes issue with Android 13+ devices which has no permission to access external storage.
The text was updated successfully, but these errors were encountered: