NeoTechni Well-Known Member Licensed User Longtime User Sep 23, 2013 #1 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.
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.
NeoTechni Well-Known Member Licensed User Longtime User Sep 24, 2013 #2 Should I just replace TELEPHONY with an HTML comment tag to remove it? Upvote 0
NeoTechni Well-Known Member Licensed User Longtime User Sep 24, 2013 #3 According to this, http://stackoverflow.com/questions/...ed-false-but-google-play-keeps-insisting-on-t I should make the features lower-cased :/ I will try that when I get home, hopefully it will work Upvote 0
According to this, http://stackoverflow.com/questions/...ed-false-but-google-play-keeps-insisting-on-t I should make the features lower-cased :/ I will try that when I get home, hopefully it will work
Erel B4X founder Staff member Licensed User Longtime User Sep 24, 2013 #4 You only need to add the line specified here: http://www.b4x.com/android/forum/th...ill-be-listed-as-supported.23419/#post-135760 Upvote 0
You only need to add the line specified here: http://www.b4x.com/android/forum/th...ill-be-listed-as-supported.23419/#post-135760
NeoTechni Well-Known Member Licensed User Longtime User Sep 27, 2013 #5 That worked. Weird/stupid that all I had to do was lower case the permission... Upvote 0