Enable sharing QRCode

This commit is contained in:
Gergely Hegedus 2023-11-19 01:25:38 +02:00
parent 388bf65499
commit 5f152e4763
5 changed files with 72 additions and 3 deletions

View file

@ -32,6 +32,16 @@
<data android:mimeType="message/*" />
</intent-filter>
</activity>
<provider
android:name="androidx.core.content.FileProvider"
android:authorities="org.fnives.android.qrcodetransfer.fileprovider"
android:grantUriPermissions="true"
android:exported="false">
<meta-data
android:name="android.support.FILE_PROVIDER_PATHS"
android:resource="@xml/filepaths" />
</provider>
</application>
</manifest>