expo-image-picker
Version:
Provides access to the system's UI for selecting images and videos from the phone's library or taking a photo with the camera.
17 lines (16 loc) • 670 B
text/xml
<manifest package="expo.modules.imagepicker"
xmlns:android="http://schemas.android.com/apk/res/android"
>
<application>
<!-- https://developer.android.com/guide/topics/manifest/provider-element.html -->
<provider
android:name=".ImagePickerFileProvider"
android:authorities="${applicationId}.ImagePickerFileProvider"
android:exported="false"
android:grantUriPermissions="true">
<meta-data
android:name="android.support.FILE_PROVIDER_PATHS"
android:resource="@xml/image_picker_provider_paths"/>
</provider>
</application>
</manifest>