如何处理 rc_authorities_fileprovider 找不到

检查自己的 manifest 中的配置:

是否做了 provider 的配置,并且 authorities 中包名是否正确。

 <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/rc_file_path" />
        </provider>