I found in the AndroidManifest.xml file <uses-permission android:name="android.permission.INTERNET"/>, though my application doesn't use the Internet connection and doesn't require this permission.
The text in the Manifest editor is
How to remove android.permission.INTERNET ?
The text in the Manifest editor is
B4X:
AddManifestText(
<uses-sdk android:minSdkVersion="4" android:targetSdkVersion="14"/>
<supports-screens android:largeScreens="true"
android:normalScreens="true"
android:smallScreens="true"
android:anyDensity="true"/>)
SetApplicationAttribute(android:icon, "@drawable/icon")
SetApplicationAttribute(android:label, "$LABEL$")
How to remove android.permission.INTERNET ?