FilePicker icon indicating copy to clipboard operation
FilePicker copied to clipboard

Internal Storage not Showing

Open ManishAndroidIos opened this issue 4 years ago • 2 comments

Hi SD card is showing but Internal Storage is not showing.

ManishAndroidIos avatar Nov 20 '20 09:11 ManishAndroidIos

Hi I am facing the same problem. I am not able to view the files on my phone. I have made sure that i have used all the required permission in manifest file.

<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>

Here the screeshot of error. All the folders are empty and i am not able to view any other folders apart from these. And i know for sure that there are lot of folders under /mnt directory.

Screen Shot 2021-02-12 at 5 14 09 PM

Thanks and advance !

slim-shah avatar Feb 12 '21 23:02 slim-shah

Problem solved!

I was working on someone else's code and did not check the manifest file. The manifest file was missing the following code snippet.

<manifest ... >
  <!-- This attribute is "false" by default on apps targeting
       Android 10 or higher. -->
  <application 
       android:requestLegacyExternalStorage="true" ........ >
    ......
  </application>
</manifest>

I solved this error after reading the readMe file.

slim-shah avatar Feb 12 '21 23:02 slim-shah

New update release to this library update to version 9.1.4 and see the android 13 documentation in README.

TutorialsAndroid avatar Sep 06 '23 17:09 TutorialsAndroid