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?

link|improve this question

Have you checked its availability on the developer dashboard. Select your app and scroll right down to the "this app is available on so and so many devices," from there you can check if the sensation is there or not... if you haven't done that already of course =P – Jack Oct 5 '11 at 18:14
^ in addition to this did you just release it? sometimes when you just update/release your app it won't show for a few hours – Kevin Qiu Oct 5 '11 at 18:20
I'm not to sure but HTC have had some security problems recently maybe they've locked down some of the permissions temporarily. – Jack Oct 5 '11 at 18:25
@Jack, I have no exclusions, but I was reading about that security issue and I wonder if that's the problem. It does work on my HTC Aria, though... also he is able to download other applications that use that ACCESS_NETWORK_STATE permission. – John Leehey Oct 5 '11 at 19:17
@Kevin I released the app and it has been on the market for several months. – John Leehey Oct 5 '11 at 19:17
show 9 more comments
feedback

3 Answers

up vote 1 down vote accepted

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

link|improve this answer
I wish it worked, but the <support-screen> element doesn't help :-/ – John Leehey Nov 3 '11 at 18:12
1  
Your friend's devices may be cached. Try clearing Android Market's cache on them devices and try again. Other than that, contact Android Market – Joe Simpson Nov 4 '11 at 9:00
For fun try to add: – Warpzit Nov 4 '11 at 11:47
feedback

For fun try to add:

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

These kinds of bugs can be hard to solve ;)

link|improve this answer
feedback

I have a Sensation and my app shows in Market for my phone. Here's my <supports-screens> entry:

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

... and that's it. Works fine. If that doesn't work for you, there's something else going on.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.