I am a newbie.
My app has storage permissions which are running well for all api below 5.
(These are used for the Browse Button to choose files or folders and then perform the specified action)
Permissions are (in AndroidManifest.xml file):
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />
I want to know how to give permission for "storage" at runtime for API above 5.1.
What I have done till now?: I have searched for it on the net, but there is not any complete answer, in detail, for Storage permission.
All answers will be appreciated.
And this question is not a duplicate of Run-time permission of Marshmallow, as that is about: How to handle "Never Ask Again" but I asked this question as I don't get any detailed complete description for a newbie for Strorage permissions.