I just published an update to my app in the market. I then tried to bring it up on the market on my Nexus One running 2.2.2. I could not find it in the market on the phone. I went to the web market, found it, but install was disabled saying "this item is not compatible with your device". Below is my manifest - I can't see anything that would prevent it from working on my Nexus One. Makes me think it is not showing for others also. Can anyone else install (or see if it is able to be seen) "Occupied for Kids" or "Occupied for Kids (Demo)". You can try the Demo version easily enough because it is free. Both exhibit the problem.
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.ecg.occupiedDemo"
android:versionCode="15"
android:versionName="2.01"
android:installLocation="auto" >
<supports-screens
android:smallScreens="false"
android:normalScreens="true"
android:largeScreens="true"
android:anyDensity="true"
/>
<uses-configuration android:reqTouchScreen="finger"></uses-configuration>
<uses-permission android:name="android.permission.INTERNET" />
<application android:icon="@drawable/button_launchdemo" android:label="@string/app_name">
*<Activity List Here>*
</application>
<uses-sdk android:minSdkVersion="7" android:targetSdkVersion="7" />
</manifest>