I receive the following error when I try to upload my application to the Android Market, "Market requires the minSdkVersion to be set in AndroidManifest.xml".
The name of my apk is AskTheSheik, but in the app I have com.sheik.magic8. I don't know if that is the problem or not. Here is my Manifest file: <?xml version="1.0" encoding="utf-8"?> <manifest xmlns:android="http://schemas.android.com/apk/res/android" package="com.sheik.magic8" android:versionCode="1" android:versionName="1.0.0"> <uses-sdk minSdkVersion="2" /> <application android:icon="@drawable/sheikico" android:label="@string/app_name"> <activity android:name=".AskTheSheik" android:label="@string/app_name"> <intent-filter> <action android:name="android.intent.action.MAIN" /> <category android:name="android.intent.category.LAUNCHER" /> </intent-filter> </activity> <activity android:name=".sheikanswer" android:label="@string/app_name" android:theme="@android:style/Theme.Dialog"> </activity> <activity android:name=".about" android:label="About" android:theme="@android:style/Theme.Dialog"> </activity> </application> </manifest> --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Android Beginners" 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-beginners?hl=en -~----------~----~----~----~------~----~------~--~---

