Apps not appearing in the Android Market on the Samsung Galaxy Tab

三世轮回 提交于 2019-12-06 13:33:38

Android Market filters out applications based on the values specified in the AndroidManifest.xml file. The 7” inch tablet is a “large” screen. So, for applications which have minSDKVersion=3, define support-screens tag explicitly as:

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

http://innovator.samsungmobile.com/galaxyTab.do#03

Example 2

The manifest declares <uses-sdk android:minSdkVersion="3" android:targetSdkVersion="4"> and does not include a element. Result: Android Market will show the app to users on all devices, unless other filters apply.

http://developer.android.com/guide/appendix/market-filters.html

Could it be the copy protection feature on the Market?

Dan J

Apparently Samsung devices have a 30MB cache limit, so they won't let you download apps that are over that size. Check your APK sizes, as that could be the problem.

Are some of your apps using telephony features? By default the Market won't offer those apps to wifi-only devices, unless you set this value in your AndroidManifest.xml:

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

Have a look at my answer here for more information.

You'll need to make sure your code copes gracefully when those features are not available.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!