I am trying to write in a .txt file in my flutter program. I am using Permission_handler package and when I run the code (using mi 10) the app ask for permission to access to media and file and I hit allow, and the Debug console says "I/flutter (15890): PermissionStatus.granted" (I mean i did all the part about updating the AndroidManifest.xml or modification on "gradle.properties" , etc.). But when it comes to writing in the file, it throws this error:
E/flutter (15890): [ERROR:flutter/lib/ui/ui_dart_state.cc(186)] Unhandled Exception: FileSystemException: Cannot open file, path = '/storage/emulated/0/Download/X.txt' (OS Error: Operation not permitted, errno = 1)
I really appreciate any thought on this.
Mi 10 runs on Android 10. You need to add the following attribute to the
<application>
element in theAndroidManifest.xml
:This opts you into the legacy storage model.
Also set
targetSdkVersion
to 29, andcompileSdkVersion
to 29 or 30 inbuild.gradle