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?