lavadip

Publishing apps on Android

Woohoo; managed to publish my first app on the Android Market!

I was stumped with this error for a long time:

"Market requires the minSdkVersion to be set to a positive 32-bit integer in AndroidManifest.xml"

A lot of people seem to have faced this problem but there was no definite solution posted anywhere. What worked for me was adding the namespace qualifier to the minSdkVersion. That is, I changed

<uses-sdk minSdkVersion="7" />

to

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

and boom! It's on the market.

blog comments powered by Disqus