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
{{ message }}
This repository has been archived by the owner on Sep 5, 2023. It is now read-only.
I want to use it as a folder picker and get persistible uri permission grants to it, similiar to what storage access framework provides with Intent.ACTION_OPEN_DOCUMENT_TREE. e.g.
public static void takePersistiblePermission(Activity context,int additionalCode) { Intent intent = new Intent(Intent.ACTION_OPEN_DOCUMENT_TREE); intent.addFlags(Intent.FLAG_GRANT_PERSISTABLE_URI_PERMISSION); context.startActivityForResult(intent, SAF_REQUEST_CODE+additionalCode); }
If while opening NativeUI, I set the MIME type to "resource/folder" it shows folders only but I can't choose it. Thanks for the wonderful library.
The text was updated successfully, but these errors were encountered:
I want to use it as a folder picker and get persistible uri permission grants to it, similiar to what storage access framework provides with Intent.ACTION_OPEN_DOCUMENT_TREE. e.g.
public static void takePersistiblePermission(Activity context,int additionalCode) { Intent intent = new Intent(Intent.ACTION_OPEN_DOCUMENT_TREE); intent.addFlags(Intent.FLAG_GRANT_PERSISTABLE_URI_PERMISSION); context.startActivityForResult(intent, SAF_REQUEST_CODE+additionalCode); }
If while opening NativeUI, I set the MIME type to "resource/folder" it shows folders only but I can't choose it. Thanks for the wonderful library.
The text was updated successfully, but these errors were encountered: