yasukotelin / ext_storage

ext_storage is minimal flutter plugin that provides external storage path and external public storage path.
MIT License
29 stars 61 forks source link

Update the docs with the required permissions. #8

Open petermusembi69 opened 3 years ago

petermusembi69 commented 3 years ago

[ERROR:flutter/lib/ui/ui_dart_state.cc(177)] Unhandled Exception: FileSystemException: Cannot open file, path = '/storage/emulated/0/Download/counter.txt' (OS Error: Permission denied, errno = 13)

petermusembi69 commented 3 years ago

If one is going to access external storage, definitely reading and writing may occur. Hence I think adding the two permission in the readme docs is necessary.

    <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>
    <uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE"/>
gtuceturan commented 3 years ago

already added permission but I still get same error

flutter-max commented 2 years ago

is the prob solved ?