Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

This question already has an answer here:

I just released my app for phones and tablets but it is not showing up in Google Play for tablets.

Checked on Nexus 7 and Asus eeeePad

This is what I have in my manifest file:

<uses-sdk android:minSdkVersion="8" android:targetSdkVersion="17"/>
<supports-screens android:largeScreens="true" android:normalScreens="true" android:smallScreens="true" android:xlargeScreens="true" android:resizeable="true" android:anyDensity="true"/>
<uses-permission android:name="bluey.com.permission.C2D_MESSAGE"/>
<uses-permission android:name="com.google.android.c2dm.permission.RECEIVE"/>
<uses-permission android:name="android.permission.VIBRATE"/>
<uses-permission android:name="android.permission.WAKE_LOCK"/>
<uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED"/>
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>
<uses-permission android:name="android.permission.READ_PHONE_STATE"/>
<uses-permission android:name="android.permission.CALL_PHONE"/>
<uses-permission android:name="android.permission.ACCESS_LOCATION_EXTRA_COMMANDS"/>
<uses-permission android:name="android.permission.SEND_SMS"/>
<uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION"/>
<uses-permission android:name="android.permission.INTERNET"/>
<uses-permission android:name="android.permission.ACCESS_WIFI_STATE"/>
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/>
<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION"/>
<uses-feature android:name="android.hardware.telephony" android:required="false"/>
<uses-feature android:name="android.hardware.camera" android:required="false"/>
<uses-feature android:name="android.hardware.bluetooth" android:required="false"/>
<uses-feature android:name="android.hardware.location" android:required="false"/>
share|improve this question
it seems correct... you can see what features requires your app in android market console. What's your app name? – Leonidos Jan 28 at 13:19
tvdpi is messy and might not be included in android:anyDensity="true" – Yalla T. Jan 28 at 13:52
Bluey....[link] (play.google.com/store/apps/…) – Nevsky Jan 28 at 14:56
this is the function required:android.hardware.location.gps android.hardware.location.network android.hardware.screen.portrait android.hardware.touchscreen android.hardware.wifi – Nevsky Jan 28 at 14:57
1  
someone copied my question. I originally posted here: stackoverflow.com/questions/11691775/… – Saqib May 9 at 22:38

marked as duplicate by Zenith, Andrew Barber May 9 at 23:20

This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.

1 Answer

Hopefully the answer it is not too late. Have a look at your permissions and bear in mind that Nexus 7 has
-No telephony
-A single front facing camera (apps requiring the android.hardware.camera feature will not be available on Nexus 7)
Always declare hardware features that aren't critical to your app as required="false"
In your permissions list are asking for
<uses-permission android:name="android.permission.CALL_PHONE"/>
that's why your app is not compatible with Nexus 7 if calling is not essential for your app to run just declare in your manifest

<uses-feature android:name="android.hardware.telephony" android:required="false"/>

Hope that helps

share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.