Save PDF and share it

This commit is contained in:
Pierre-Yves Nicolas
2025-05-31 13:42:24 +02:00
parent 453923b42d
commit f8b9f47782
5 changed files with 86 additions and 2 deletions

View File

@@ -28,6 +28,15 @@
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<provider
android:name="androidx.core.content.FileProvider"
android:authorities="${applicationId}.fileprovider"
android:exported="false"
android:grantUriPermissions="true">
<meta-data
android:name="android.support.FILE_PROVIDER_PATHS"
android:resource="@xml/file_paths" />
</provider>
</application>
</manifest>