Android – why is my app incompatible with Nexus 7 in Google play?
See English answers > why my app is not showing up on tables in Google play? Seven apps I just released for my phone and tablet, but it didn't appear on Google play tablet
Check nexus 7 and ASUS EEPAD
This is what I have in the 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"/>
resolvent:
I hope it's not too late. Look at your permissions and remember that nexus 7 has - no phone - a single front camera (applications that need android.hardware.camera function will not be used on nexus 7) always declare hardware functions that are not important to the application = "false" require < uses permission Android: name in your permission list= "Android. Permission. Call_phone" / > this is the reason why your application is incompatible with Nexus 7. If your application is only declared in your list instead of having to be called
<uses-feature android:name="android.hardware.telephony" android:required="false"/>
Hope to help