The application will not be displayed on the market for HTC Sensation

I have an application that seems downloadable for all phones except HTC Sensation. My friend with Sensation also has 2 other phones (lower type SDK) that he can install on. I can’t understand why I need this. I am trying to get another 2.3 or higher handsets to find out if there is a problem with the gingerbread cookies. Here are the relevant parts of my AndroidManifest (only actions are excluded):

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
      package="x.x.x.x"
      android:versionCode="8" android:versionName="1.3.3">
    <uses-sdk android:minSdkVersion="7" />

    <application android:icon="@drawable/icon" android:label="@string/app_name" android:theme="@android:style/Theme.NoTitleBar">
        <activity items.... />
    </application>
    <uses-feature android:name="android.hardware.telephony" />
    <uses-permission android:name="android.permission.READ_CONTACTS"/>
    <uses-permission android:name="android.permission.INTERNET"/>
    <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/>
    <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>
    <uses-permission android:name="android.permission.SEND_SMS"/>
</manifest>

Does anyone have any idea why this might be?

+5
source share
3 answers

Are you missing an item <supports-screen>in the manifest?

http://developer.android.com/guide/topics/manifest/supports-screens-element.html

, __;

+1

:

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

;)

0

I have Sensation, and my application shows in the Market for my phone. Here is my entry <supports-screens>:

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

... what is it. Works great. If this does not work for you, something else happens.

0
source

All Articles