expo-document-picker
Version:
Provides access to the system's UI for selecting documents from the available providers on the user's device.
13 lines (11 loc) • 448 B
text/xml
<manifest xmlns:android="http://schemas.android.com/apk/res/android">
<queries>
<!-- Query open documents -->
<intent>
<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>
</queries>
</manifest>