Android Question How to allow tablets to see an app on the Google Play marketplace that uses telephony

NeoTechni

Well-Known Member
Licensed User
Longtime User
I made a launcher that can place calls by clicking a shortcut to a contact.

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.
 
Top