Skip to content

Commit 3829d74

Browse files
Added provider to manifest
1 parent f2a0ab8 commit 3829d74

1 file changed

Lines changed: 11 additions & 0 deletions

File tree

android/app/src/main/AndroidManifest.xml

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -90,6 +90,17 @@
9090
</intent-filter>
9191
</receiver>
9292

93+
<!-- Need this to share the attachment images with native mms service -->
94+
<provider
95+
android:name="androidx.core.content.FileProvider"
96+
android:authorities="${applicationId}.fileprovider"
97+
android:exported="false"
98+
android:grantUriPermissions="true">
99+
<meta-data
100+
android:name="android.support.FILE_PROVIDER_PATHS"
101+
android:resource="@xml/file_paths" />
102+
</provider>
103+
93104
<meta-data
94105
android:name="com.google.firebase.messaging.default_notification_channel_id"
95106
android:value="@string/notification_channel_default" />

0 commit comments

Comments
 (0)