应用程序已发布在Android Market中,但在某些手机中不可见
我已经在市场上发布了应用程序。下面是提供的链接。我有 HTC Wildfire 和 Desire。两者都有 android 2.2
https://market.android.com/details?id=com .cricket.fast
现在我可以在 HTC Desire 上看到该应用程序并安装该应用程序,但我在 HTC Wildfire 上的市场上看不到该应用程序。
但是如果我手动安装应用程序,它可以工作,那么为什么它没有在市场上列出 HTC Wildfire 呢?
在构建应用程序时,我的目标 SDK 是 8,minSDK 是 3。
这里有什么问题。有人可以查看该链接并帮助我吗?
[更新]以下是清单代码。我在此处复制粘贴时删除了 6 项活动。
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.cricket.fast"
android:versionCode="1"
android:versionName="0.1">
<application android:icon="@drawable/appicon" android:label="@string/app_name">
<activity android:name=".DashboardActivity"
android:theme="@android:style/Theme.NoTitleBar"
android:screenOrientation="portrait"
android:label="@string/app_name">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
<uses-sdk android:minSdkVersion="3" />
<uses-permission xmlns:android="http://schemas.android.com/apk/res/android"
android:name="android.permission.INTERNET"></uses-permission>
<uses-permission xmlns:android="http://schemas.android.com/apk/res/android"
android:name="android.permission.ACCESS_NETWORK_STATE"></uses-permission>
</manifest>
谢谢
I have application published in the market. Below is the link provided. I have HTC Wildfire and Desire with me. Both have android 2.2
https://market.android.com/details?id=com.cricket.fast
Now I can see this and install this application on HTC Desire, but I cant see this in market on HTC Wildfire.
But If I install app manually, it works, then why it is not listed for HTC Wildfire in the market ?
While building application my target SDK is 8 and minSDK is 3.
Whats the problem here. Can some one please look at the link and help me ?
[Updated] Below is the manifest code. I have removed my 6 activities while copy-pasting here.
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.cricket.fast"
android:versionCode="1"
android:versionName="0.1">
<application android:icon="@drawable/appicon" android:label="@string/app_name">
<activity android:name=".DashboardActivity"
android:theme="@android:style/Theme.NoTitleBar"
android:screenOrientation="portrait"
android:label="@string/app_name">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
<uses-sdk android:minSdkVersion="3" />
<uses-permission xmlns:android="http://schemas.android.com/apk/res/android"
android:name="android.permission.INTERNET"></uses-permission>
<uses-permission xmlns:android="http://schemas.android.com/apk/res/android"
android:name="android.permission.ACCESS_NETWORK_STATE"></uses-permission>
</manifest>
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
Android Market 上的过滤是根据清单文件中的一些标签完成的。规则如下所述:http://developer.android.com/guide/appendix/market-filters。 html
我认为野火是一个“小屏幕”。如果是这样,您需要在清单中显式启用此设置:
我曾经在 X10 mini 上遇到过同样的问题。
Filtering on the Android Market is done according to a few tags in your manifest file. The rules are described here: http://developer.android.com/guide/appendix/market-filters.html
I think the wildfire is a "small screen". If so, you need to explicitly enable this setting in the manifest:
I had the same problem with the X10 mini at one point.