views:

30

answers:

0

Hi guys,

I've just published my app on the android market but something weird happened, this is not my first time publishing an app so I'm almost sure I'm not doing anything wrong here, so would like to know if anyone had this same issue before.

1st Attempt:

Manifest.xml file

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

<uses-sdk android:minSdkVersion="4" />

default.properties:

split.density=false
target=android-4

2nd Attempt:

Manifest.xml file

<supports-screens android:largeScreens="true"
android:normalScreens="true" android:smallScreens="true"
android:anyDensity="true" />
<uses-sdk android:minSdkVersion="4" android:targetSdkVersion="8" />

default.properties:

split.density=false
target=android-8

This is suppose to be visible for all android devices that has the version 1.6 and later, right? we have 3 androids here and I can only see the app in the android market with the 1.6 android phone, the other ones are 2.0.1 and 2.01 and I'm not being able to see the app there.

Is there anything wrong with this configurations or something is really going on with apps publication lately?

Thanks you very much,

  • Gus