how to change the 'Requires Android' version in the android market

1.2k Views Asked by At

I have published an app in the android market

Strangely, even though it uses google maps, in the market it says: Requires Android: 1.0 and up

How can I change this without messing with the manifest file? is there a way?

I have been changing the android:minSdkVersion which currently is 1, but my code is affected in strange places, crashing unexpectedly and the layouts are changed too

any ideas? Thanks!!

3

There are 3 best solutions below

0
On

Android API levels correspond to the different releases of Android. For example, Android 1.5 (the minimum required for Maps) is API level 3. The minimum API Level is declared in the manifest as following:

<manifest>
  <uses-sdk android:minSdkVersion="3" />
  ...
</manifest>
0
On

I believe you have answered your own question.

android:minSdkVersion

In your manifest controls that displayed field.

2
On

To work with maps you also need to set API Level and SDK >= 3 maybe is that the reason of your crashes?!

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