I keep getting a crash on AppUpdating not being able to find FileProvider.
It is in my manifest as so:
It is in my manifest as so:
B4X:
' Starting from Android 7 (API 24) we pass a file uri using a FileProvider
AddApplicationText(
<provider
android:name="android.support.v4.content.FileProvider"
android:authorities="$PACKAGE$.provider"
android:exported="false"
android:grantUriPermissions="true">
<meta-data
android:name="android.support.FILE_PROVIDER_PATHS"
android:resource="@xml/provider_paths"/>
</provider>
)
CreateResource(xml, provider_paths,
<files-path name="name" path="shared" />
)
[code[
Thoughts?