Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

App won't display on market for HTC Sensation

I have an app that seems downloadable to all phones except the HTC Sensation. My friend with the Sensation also has 2 other phones (of a lower SDK type) that he is able to install to. I can't figure out for the life of me why. I'm trying to get my hands on another 2.3 or above phone to see if its an issue with gingerbread. Here are the relevant parts of my AndroidManifest (only the activities 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 ideas why this could be?

like image 796
John Leehey Avatar asked Nov 14 '22 16:11

John Leehey


1 Answers

Are you missing a <supports-screen> element in your manifest?

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

I had the same problem before where I couldn't even download my own app ;__;

Joe

like image 95
Joe Simpson Avatar answered Dec 29 '22 16:12

Joe Simpson