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
I'm using NormalFilePickActivity to pick doc and pdf etc. type file from my device, it is working fine in all versions except android 10.
In android 10, it does not show files , but if i use NormalFilePickActivity to get images, then it is working fine.
Thanks in advance.
The text was updated successfully, but these errors were encountered:
requestLegacyExternalStorage=true is also not working in my case. The file picker is coming empty.
Intent intent4 = new Intent(activity, NormalFilePickActivity.class);
intent4.putExtra(Constant.MAX_NUMBER, 1);
intent4.putExtra(NormalFilePickActivity.SUFFIX, new String[] {"doc", "docx","txt", "pdf"});
startActivityForResult(intent4, REQUEST_CODE_Word_Doc);
android:requestLegacyExternalStorage="true"
added in mainfest.
I'm using NormalFilePickActivity to pick doc and pdf etc. type file from my device, it is working fine in all versions except android 10.
In android 10, it does not show files , but if i use NormalFilePickActivity to get images, then it is working fine.
Thanks in advance.
The text was updated successfully, but these errors were encountered: