1 parent f2a0ab8 commit 3829d74Copy full SHA for 3829d74
1 file changed
android/app/src/main/AndroidManifest.xml
@@ -90,6 +90,17 @@
90
</intent-filter>
91
</receiver>
92
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
+
104
<meta-data
105
android:name="com.google.firebase.messaging.default_notification_channel_id"
106
android:value="@string/notification_channel_default" />
0 commit comments