关于
本篇主要实现基于Android12手机实现保存日志文件到应用专属文件夹内及分享日志文件功能(使用系统自带)
效果图
实现
首先是google官网的介绍。首先我们需要再res/下新建一个xml文件夹file_provider_paths.xml
,然后新建一个路径xml文件为后续申明的provider使用:
<?xml version="1.0" encoding="utf-8"?>
<paths xmlns:android="http://schemas.android.com/apk/res/android">
<files-path name="files" path="." />
</paths>
然后我们需要再AndroidManifest.xml文件里面添加provider:
<application>
<provider
android:name="androidx.core.content.FileProvider"
android:authorities="${applicationId}.provider"
android:exported="false"
android:grantUriPermissions="true">
<meta-data