How can I read a txt in /storage/emulated/0
Android Version Runtime : 14
I want to read a .txt in /storage/emulated/0 I think I should apply MANAGE_EXTERNAL_STORAGE , but it doesn't work, what should I do T.T I need to read the content of the file through code, instead of having the user manually select the file. is it possible in Android 14(or later) now ?
In this scenario, the only way is MANAGE_EXTERNAL_STORAGE as you've suggested. It's asked in a special way. Note that Google Play can reject apps for using this permission.
In this scenario, the only way is MANAGE_EXTERNAL_STORAGE as you've suggested. It's asked in a special way. Note that Google Play can reject apps for using this permission.
OH I tried this method, and it seems to work for me ! This is really troublesome. I need to learn more about how Unity communicates with native Android ~~