Android application is not visible when searched from tab, but visible when searched from mobile device on Google Play Store -


please read question before tagging duplicate.
trying publish update of app, tablet support added. number of supported deives apk have increased in apk details on google play console. app not searchable android tablets.

the following contents of manifest file.

<!-- accessing server --> <uses-permission android:name="android.permission.call_phone" /> <uses-permission android:name="android.permission.internet" /> <uses-permission android:name="android.permission.access_network_state" /> <uses-permission android:name="android.permission.send_sms" /> <uses-permission android:name="android.permission.access_wifi_state" />  <!-- accessing images sd card --> <uses-permission android:name="android.permission.camera" /> <uses-permission android:name="android.permission.write_external_storage" /> <uses-permission android:name="android.permission.write_settings" /> <uses-permission android:name="android.permission.read_contacts" /> <uses-permission android:name="android.permission.read_phone_state" />  <!-- supports following types of screens --> <supports-screens     android:largescreens="true"     android:normalscreens="true"     android:smallscreens="true"     android:xlargescreens="true" />  <!-- features used in app --> <uses-feature     android:name="android.hardware.camera"     android:required="false" />  <uses-feature     android:name="android.hardware.camera.autofocus"     android:required="false" />  <uses-feature     android:name="android.hardware.camera.flash"     android:required="false" />  <uses-feature     android:name="android.hardware.camera.front"     android:required="false" />  <uses-feature     android:name="android.hardware.telephony"     android:required="false" />  <uses-feature     android:name="android.hardware.wifi"     android:required="false" />  <uses-feature     android:name="android.software.webview"     android:required="false" /> 

please me, if have missed out on tag. tabs searching not have calling ability.

the tag have not added uses sdk tag, according android developers documentation, if not provide information, assumes app run across android versions.

possible solution 1:

for xxhdpi devices can use 480 int value   <screen android:screensize="normal" android:screendensity="480" />  <screen android:screensize="large" android:screendensity="480" />  <screen android:screensize="xlarge" android:screendensity="480" /> 

possible solution 2:

i belive key in permissions. saying app uses receive_sms , read_phone_state google play uses filter out devices can't things (tablets) because thinks app needs use permissions in order work. according android developer site:

"to prevent apps being made available unintentionally, google play assumes hardware-related permissions indicate underlying hardware features required default. instance, applications use bluetooth must request bluetooth permission in element — legacy apps, google play assumes permission declaration means underlying android.hardware.bluetooth feature required application , sets filtering based on feature."

also, @ this:

telephony call_phone android.hardware.telephony call_privileged android.hardware.telephony modify_phone_state android.hardware.telephony process_outgoing_calls android.hardware.telephony read_sms android.hardware.telephony receive_sms android.hardware.telephony receive_mms android.hardware.telephony receive_wap_push android.hardware.telephony send_sms android.hardware.telephony write_apn_settings android.hardware.telephony write_sms android.hardware.telephony

you have receive_sms , read_phone_state automatically have android.hardware.telephony. can fix doing



Comments

Popular posts from this blog

Sort a complex associative array in PHP -

vb.net - How to ignore if a cell is empty nothing -

recursion - Can every recursive algorithm be improved with dynamic programming? -