Hi
I included the following alterations to the manifest ( the last I could find on this site) and my app wont open at all. I assume that this is because things have moved on since the alterations where published... Can anyone direct me to a modern update please
I included the following alterations to the manifest ( the last I could find on this site) and my app wont open at all. I assume that this is because things have moved on since the alterations where published... Can anyone direct me to a modern update please
B4X:
AddManifestText(<uses-permission
android:name="android.permission.WRITE_EXTERNAL_STORAGE"
android:maxSdkVersion="18" />
)
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" />
)