The xml has been processed by the IDE. Open the manifest editor in the project and select the contents and cop it. Also go to the Logs tab and press List Permissions to see the requested permissions.
The 'Read more about
Use of All Files Access Permission' link in your rejection refers to MANAGE_EXTERNAL_STORAGE permission so that's what it is objecting too.
'This code will be applied to the manifest file during compilation.
'You do not need to modify it in most cases.
'See this link for for more information:
http://www.b4x.com/forum/showthread.php?p=78136
AddManifestText(
<uses-sdk android:minSdkVersion="10" android:targetSdkVersion="30" />
<supports-screens android:largeScreens="true"
android:normalScreens="true"
android:smallScreens="true"
android:anyDensity="true"/>)
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"/>
<meta-data
android:name="com.google.android.gms.vision.DEPENDENCIES"
android:value="barcode,,face" />
</provider>
)
CreateResource(xml, provider_paths,
<files-path name="name" path="shared" />
)
SetApplicationAttribute(android:icon, "@drawable/icon")
SetApplicationAttribute(android:label, "$LABEL$")
SetApplicationAttribute(android:largeHeap, "true")
SetApplicationAttribute(android:theme, "@android:style/Theme")
AddPermission (android.permission.INTERNET)
AddActivityText(main,
<intent-filter android:autoVerify="true">
<action android:name="android.intent.action.SEND" />
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.DEFAULT" />
<category android:name="android.intent.category.BROWSABLE"/>
<data android:scheme="http" />
<data android:scheme="https" />
<data android:host="
www.refertiweb.it" />
</intent-filter>
)
'End of default text.
' android:scheme="http"
' android:host="
www.refertiweb.it"
' android
ath="/getreport.aspx" />
'<data android:scheme="refertionline" />