Skip to content

Instantly share code, notes, and snippets.

View kaluznyo's full-sized avatar

Olivier Kaluzny kaluznyo

  • Logyplan
  • Lausanne, Switzerland
View GitHub Profile
# Resources\xml\provider_paths.xml
<paths xmlns:android="http://schemas.android.com/apk/res/android">
<external-files-path name="reports" path="Reports" />
</paths>
# Add it to your manifest in application section
<provider android:name="androidx.core.content.FileProvider" android:authorities="ch.xxx.xxxx.provider" android:exported="false" android:grantUriPermissions="true">
<meta-data android:name="android.support.FILE_PROVIDER_PATHS" android:resource="@xml/provider_paths" />