I made a launcher that can place calls by clicking a shortcut to a contact.
I used this manifest code:
To make the stuff not required, but it still shows as using the CALL_PHONE feature. When I use that same code for other features, they disappear from the feature list.
I used this manifest code:
B4X:
AddPermission("android.permission.CALL_PHONE")
AddManifestText(<uses-feature android:name="android.hardware.TELEPHONY" android:required="false"/>)
AddReplacement(<uses-permission android:name="android.permission.CALL_PHONE"/>, <uses-permission android:name="android.permission.CALL_PHONE" android:required="false"/>)
To make the stuff not required, but it still shows as using the CALL_PHONE feature. When I use that same code for other features, they disappear from the feature list.