Hi wise ones,
I have an app which allows users to make calls and send texts, and won't show up on Google Play for Tablets without phone functionality!
There is of course lots of other functionality that Tablet users could be using and the phone functionality is nice to have, but not necessary!
How can I therefore make the app available to both Phones and Tablets, without having to create a separate app without the call/text modules?
I kind of guess the Manifest File might hold a clue, since it reads
but can't see the answer!
Thanks in advance,
Douglas
I have an app which allows users to make calls and send texts, and won't show up on Google Play for Tablets without phone functionality!
There is of course lots of other functionality that Tablet users could be using and the phone functionality is nice to have, but not necessary!
How can I therefore make the app available to both Phones and Tablets, without having to create a separate app without the call/text modules?
I kind of guess the Manifest File might hold a clue, since it reads
B4X:
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>
<uses-permission android:name="android.permission.INTERNET"/>
<uses-permission android:name="android.permission.ACCESS_WIFI_STATE"/>
<uses-permission android:name="android.permission.CHANGE_WIFI_STATE"/>
<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION"/>
<uses-permission android:name="android.permission.READ_PHONE_STATE"/>
<uses-permission android:name="android.permission.CALL_PHONE"/>
<uses-permission android:name="android.permission.SEND_SMS"/>
Thanks in advance,
Douglas