We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Android Lollipop throws IOExceptions when reading or writing from the getExternalFilesCacheDir() directory unless we request WRITE_EXTERNAL_STORAGE permission (and READ_EXTERNAL_STORAGE, which is then implicitly requested). But that shouldn't be necessary since API 18: http://developer.android.com/reference/android/Manifest.permission.html#WRITE_EXTERNAL_STORAGE
This commit requests the permission, but it shouldn't be necessary: 75aa986
I asked this on StackExchange too: http://stackoverflow.com/questions/27016647/why-do-i-need-the-write-external-storage-permission-with-getexternalcachedir-o?sgp=2
The text was updated successfully, but these errors were encountered:
Request WRITE_EXTERNAL_STORAGE to fix the Android Lollipop problem.
75aa986
Even though it should not be necessary: #5
No branches or pull requests
Android Lollipop throws IOExceptions when reading or writing from the getExternalFilesCacheDir() directory unless we request WRITE_EXTERNAL_STORAGE permission (and READ_EXTERNAL_STORAGE, which is then implicitly requested). But that shouldn't be necessary since API 18:
http://developer.android.com/reference/android/Manifest.permission.html#WRITE_EXTERNAL_STORAGE
This commit requests the permission, but it shouldn't be necessary:
75aa986
I asked this on StackExchange too:
http://stackoverflow.com/questions/27016647/why-do-i-need-the-write-external-storage-permission-with-getexternalcachedir-o?sgp=2
The text was updated successfully, but these errors were encountered: