Skip to content
Advertisement

READ_EXTERNAL_STORAGE permission for Android

I’m trying to access media files (music) on the users device to play them; an easy “hello world”-music player app.

I’ve followed some tutorials and they basically give the same code. But it won’t work; it keeps crashing and telling me:

JavaScript

Now, this is my manifest file:

JavaScript

This is my Java-method:

JavaScript

I have tried:

To put this at different places in the manifest file:

JavaScript

To add android:maxSdkVersion at Read external storage premission:

JavaScript

To put this in the manifest / application / activity-tag:

JavaScript

To put grantUriPremission between uri and cursro in the javamethod:

JavaScript

To use this, it won’t crash, but the cursor becomes null:

JavaScript

To use INTERNAL content uri, this works as expected, but it only gives “OS-sounds” such as shutter-sound, low-battery-sound, button-click and such:

JavaScript

Pleas help, this should not be a hard problem i know, but i feel like such a beginner!

I have read and tried (or considered them to be not applicable for my problem):

Stack trace:

JavaScript

Advertisement

Answer

You have two solutions for your problem. The quick one is to lower targetApi to 22 (build.gradle file). Second is to use new and wonderful ask-for-permission model:

JavaScript

Sniplet found here: https://developer.android.com/training/permissions/requesting.html

Solutions 2: If it does not work try this:

JavaScript

}

and then in callback

JavaScript

that is from comments. thanks

User contributions licensed under: CC BY-SA
8 People found this is helpful
Advertisement