Two other things you can check are if you enabled copy protection, and if any uses-feature entries are getting added for you by the build tools. There's a aapt dump badging command you can run to check the latter: http://android-developers.blogspot.com/2010/06/future-proofing-your-app.html
On Sep 3, 4:31 pm, Gustavo <[email protected]> wrote: > 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: > > # Indicates whether an apk should be generated for each density. > split.density=false > # Project target. > 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: > > # Indicates whether an apk should be generated for each density. > split.density=false > # Project target. > 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 -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/android-developers?hl=en

