Hi all, I am desperately looking for help with this! I've found many other forums on the subject but none of the suggestions ever help!
I wrote a basic soundboard app, and it runs fine there's nothing wrong with it. I want to upload it to the Market, but every time I try I get an error message: Market requires the minSdkVersion to be set to a positive 32-bit integer in AndroidManifest.xml That is already in there, I'm using 1.5 so I have my minSdkVersion set at 3. I don't understand what the problem is, and I've asked a lot of devs that never know what to tell me. I don't want to use a different platform because my phone currently uses 1.5. Others have suggested putting the <uses-sdk> line under the <manifest> line, but that hasn't helped at all. Here is what my manifest looks like: <?xml version="1.0" encoding="utf-8" ?> - <manifest xmlns:android="http://schemas.android.com/apk/res/android" package="com.sav.soundboard" android:versionName="1.0" android:versionCode="1"> - <application android:icon="@drawable/icon" android:label="@string/ app_name"> - <activity android:name=".Soundboard" android:label="@string/ app_name"> - <intent-filter> <action android:name="android.intent.action.MAIN" /> <category android:name="android.intent.category.LAUNCHER" /> </intent-filter> </activity> </application> <uses-sdk android:minSdkVersion="3" /> </manifest> Does anyone know how to fix this?? -- 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

