Reputation: 9378
Does anyone know the step by step settings to put your app so it can show up in the 2.1 market? My app has been in the market for a few days, and a couple 2.1 users says that they cannot find it. It shows in the 2.2 though. Can someone help?
Upvotes: 0
Views: 439
Reputation: 46844
minSdkVersion="8" tells Android that your app requires sdk version 8, which is Android 2.2. If you want to allow your app to run on lower versions of Android, you need to change the minSdk to the appropriate value. In the case of 2.1, that would be 7.
Upvotes: 4