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