I'm using this flutter social share plugin : appinio_social_share
I have problem with the following code in AndroidXML:
<provider android:name="androidx.core.content.FileProvider"
android:authorities="${applicationId}.[your_custom_fileProvider_path]"
android:exported="false" android:grantUriPermissions="true">
<meta-data android:name="android.support.FILE_PROVIDER_PATHS" android:resource="@xml/[your_custom_fileProvider_file_name]" />
What is this "your_custom_fileProvider_path"? Do I need to create a custom fileProvide class in android native code in order to use this plugin?