zl程序教程

您现在的位置是:首页 >  移动开发

当前栏目

迁移到Android后android.support.v4.content.FileProvider运行崩溃

Android迁移 运行 崩溃 content support v4
2023-09-14 09:16:38 时间

修改AndroidManifest.xml文件

将 android:name="android.support.v4.content.FileProvider"修改成如下即可

 <provider
            android:name="androidx.core.content.FileProvider"
            android:authorities="com.example.materialtest.fileprovider"
            android:exported="false"
            android:grantUriPermissions="true">
            <meta-data
                android:name="android.support.FILE_PROVIDER_PATHS"
                android:resource="@xml/file_paths" />
 </provider>