<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>
