Checklist
Feature description
I would like to use this app to replace the default com.google.android.documentsui file upload picker app. This intent will mark the app as a file picker, allowing me to actually replace the default app with Fossify.
Why do you want this feature?
Mainly because the default file upload picker app doesn't remember my sorting preference whatsoever, meaning I constantly have to re-sort the videos folder to Modified Descending whenever I want to upload a recent video.
Additional information
There is this excerpt from Material Files which shows the values necessary in the AndroidManifest.xml to mark this app as a file picker to be used in place of the default documentsui app.
https://github.com/zhanghai/MaterialFiles/blob/master/app%2Fsrc%2Fmain%2FAndroidManifest.xml#L111-L117
<!-- @see https://android.googlesource.com/platform/packages/apps/DocumentsUI/+/main/AndroidManifest.xml -->
<intent-filter>
<action android:name="android.intent.action.OPEN_DOCUMENT" />
<category android:name="android.intent.category.DEFAULT" />
<category android:name="android.intent.category.OPENABLE" />
<data android:mimeType="*/*" />
</intent-filter>
Checklist
Feature description
I would like to use this app to replace the default
com.google.android.documentsuifile upload picker app. This intent will mark the app as a file picker, allowing me to actually replace the default app with Fossify.Why do you want this feature?
Mainly because the default file upload picker app doesn't remember my sorting preference whatsoever, meaning I constantly have to re-sort the videos folder to Modified Descending whenever I want to upload a recent video.
Additional information
There is this excerpt from Material Files which shows the values necessary in the AndroidManifest.xml to mark this app as a file picker to be used in place of the default documentsui app.
https://github.com/zhanghai/MaterialFiles/blob/master/app%2Fsrc%2Fmain%2FAndroidManifest.xml#L111-L117