If AndroidManifest.xml is generated, how can I add <provider>
?
All the solutions I see say just add to AndroidManifest (Xamarin Forms File Provider not set).
intent.PutExtra(MediaStore.ExtraOutput, Uri.FromFile(AppClass._file));
Camera was working, updated android, now program is unhappy. Solutions say to update AndroidManifest with some version of...
<provider
android:name="android.support.v4.content.FileProvider"
android:authorities="${applicationId}.provider"`enter code here`
android:exported="false"
android:grantUriPermissions="true">
<meta-data
android:name="android.support.FILE_PROVIDER_PATHS"
android:resource="@xml/provider_paths"/>
</provider>