Been banging my head over this since yesterday morning. The direct webpage shows up but my app doesn't appear in search. On my 2.1 phone the app's page says "This item cannot be installed on this device." My friends with 2.2/2.3 phones get "You're not in the targeted group for this item."
Free app
Copy protection: Off
Content rating: Everyone
Supported devices: All Countries
Market developer product details shows:
Screen layouts: SMALL NORMAL LARGE XLARGE
Required device features
android.hardware.telephony
android.hardware.touchscreen
This application is available to over 720 devices.
More info below
The ironic thing here is I could use some karma right now X\ :)
Thanks,
Thien
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.rainpattern.karma"
android:versionCode="3"
android:versionName="1.0.1">
<uses-permission android:name="android.permission.WRITE_SMS" />
<uses-permission android:name="android.permission.SEND_SMS" />
<uses-permission android:name="android.permission.INTERNET" />
<uses-sdk android:minSdkVersion="7" android:targetSdkVersion="7" />
<uses-feature android:name="android.hardware.telephony" android:required="true" />
<!-- Wondering if not specifying made BOTH required? -->
<uses-feature android:name="android.hardware.telephony.cdma" android:required="false" />
<uses-feature android:name="android.hardware.telephony.gsm" android:required="false" />
<uses-feature android:name="android.hardware.touchscreen" android:required="false" />
<!-- Using Roboguice so my application to load modules in sub-pkg -->
<application android:icon="@drawable/icon" android:label="@string/app_name"
android:name=".sms.InstantKarma">
<activity android:name=".ShowDeities" android:label="@string/app_name">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
aapt d badging
package: name='com.rainpattern.karma' versionCode='4' versionName='1.0.1'
uses-permission:'android.permission.WRITE_SMS'
uses-permission:'android.permission.SEND_SMS'
uses-permission:'android.permission.INTERNET'
sdkVersion:'7'
targetSdkVersion:'7'
uses-feature:'android.hardware.telephony'
uses-feature-not-required:'android.hardware.telephony.cdma'
uses-feature-not-required:'android.hardware.telephony.gsm'
uses-feature-not-required:'android.hardware.touchscreen'
application-label:'Instant Karma'
application-icon-120:'res/drawable-ldpi/icon.png'
application-icon-160:'res/drawable-mdpi/icon.png'
application-icon-240:'res/drawable-hdpi/icon.png'
application: label='Instant Karma' icon='res/drawable-mdpi/icon.png'
launchable-activity: name='com.rainpattern.karma.ShowDeities' label='Instant Karma' icon=''
main
other-activities
supports-screens: 'small' 'normal' 'large'
supports-any-density: 'true'
locales: '--_--'
densities: '120' '160' '240'