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?
source
share