美文网首页
第三方库的清单文件里也添加了provider

第三方库的清单文件里也添加了provider

作者: 被时光移动的城 | 来源:发表于2023-10-12 14:35 被阅读0次
<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/filepaths" />
</provider>

修改后

  <provider
            android:name="androidx.core.content.FileProvider"
            android:authorities="${applicationId}.fileprovider"
            android:exported="false"
            tools:replace="android:authorities"
            android:grantUriPermissions="true">
            <meta-data
                tools:replace="android:resource"
                android:name="android.support.FILE_PROVIDER_PATHS"
                android:resource="@xml/file_paths" />
        </provider>

相关文章

网友评论

      本文标题:第三方库的清单文件里也添加了provider

      本文链接:https://www.haomeiwen.com/subject/hxcobdtx.html