Reputation: 1576
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
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
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