NaserShaikh
NaserShaikh

Reputation: 1576

Application doesn't appear in Android Market for Tablet

I have uploaded an Android application in Android market.

When I search it from my mobile phone it will appear in search, but when I search it from my Tablet it doesn't.

Can anyone explain why?

Upvotes: 2

Views: 670

Answers (2)

Gianluca Demarinis
Gianluca Demarinis

Reputation: 2191

<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.telephony" android:required="false"/>

Work for me

Upvotes: 0

Marcin Orlowski
Marcin Orlowski

Reputation: 75629

Blind guess your manifest file lacks this entry

<supports-screens android:largeScreens="true"
    android:normalScreens="true" android:smallScreens="true" 
    android:anyDensity="true" /> 

add it before <application> block

Upvotes: 5

Related Questions