You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi,
On my phone device (Android 6.0), the sdcard droid48 file list is always empty so i navigate among only system file and unable to find my files
I found the trouble and the solution.
Trouble:
inside ProgListView class, showDirectory, final File[] files = this.currentDir.listFiles() always return null.
It return null as the application is not granted to read sdcard. (I only found write permission)
Solution:
First: inside AndroidManifest.xml this permission shall be added:
Second on my device (android system (6.0)) , i shall go on settings->apps->Droid48->Permissions ans Enable storage.
Now all works well.
I'am not too familiar with git, so i join you the manifest file. (PS, i have also modify API version target in order to downgrade sdk API version to android 6) AndroidManifest.xml.zip
Regards
Elmout kool
The text was updated successfully, but these errors were encountered:
It seems with Android 15, it is not possible anymore to put program on stack as all filesystem access requires the storage permission. I didn't have this problem with Android 14 on my Pixel 8 phone. But after upgrading, put program on stack don't work anymore.
Hi,
On my phone device (Android 6.0), the sdcard droid48 file list is always empty so i navigate among only system file and unable to find my files
I found the trouble and the solution.
Trouble:
inside ProgListView class, showDirectory, final File[] files = this.currentDir.listFiles() always return null.
It return null as the application is not granted to read sdcard. (I only found write permission)
Solution:
First: inside AndroidManifest.xml this permission shall be added:
Second on my device (android system (6.0)) , i shall go on settings->apps->Droid48->Permissions ans Enable storage.
Now all works well.
I'am not too familiar with git, so i join you the manifest file. (PS, i have also modify API version target in order to downgrade sdk API version to android 6)
AndroidManifest.xml.zip
Regards
Elmout kool
The text was updated successfully, but these errors were encountered: