Permission Dialog Is Not Shown For Write_external_storage
I want to download a file using DownloadManager. And DownloadManager wants to WRITE_EXTERNAL_STORAGE permission. I have included the WRITE_EXTERNAL_STORAGE permission in AndroidMan
Solution 1:
One of your dependency can cause that problem. You can replace permission in your manifest.
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" tools:node="replace" />
Post a Comment for "Permission Dialog Is Not Shown For Write_external_storage"