Even with "1" this does not work. I still get "The server could not process your apk. Try again." I've pasted the relevant AndroidManifest.xml code below. Is there anything else that is wrong? Perhaps use of the custom Application (vs. the default Application) is throwing the XML parser for a loop? (I hope not; I've been using this structure for AndroidManifest for over a month now!)
<?xml version="1.0" encoding="utf-8"?> <manifest xmlns:android="http://schemas.android.com/apk/res/android" package="com.my.package" android:versionName="1.071" android:versionCode="20"> <uses-sdk android:minSdkVersion="1" /> <application android:icon="@drawable/icon" android:label="@string/ app_name" android:name="com.my.package.MyApplication"> <activity android:name=".MyAppActivity" 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="RouteChooser"></activity> <activity android:name="DirChooser"></activity> <activity android:name="StopChooser"></activity> <activity android:name="UserRouteNameActivity"></activity> <activity android:name="PreferencesActivity"></activity> <activity android:name="com.my.package.map.MapViewActivity"></ activity> <uses-library android:name="com.google.android.maps" /> </application> <uses-permission android:name="android.permission.VIBRATE"></uses- permission> <uses-permission android:name="android.permission.INTERNET"></uses- permission> </manifest> Thanks for the help! Jason On Apr 25, 5:14 pm, Randy McEoin <[email protected]> wrote: > The market doesn't seem to accept minSdkVersion="2". You must use > "1". > > On Apr 25, 10:42 am, aleung <[email protected]> wrote: > > > When I didn't add the "minSdkVersion", I got the error message: > > Market requires theminSdkVersionto be set in AndroidManifest.xml. > > > But even after I added it, there was still error: > > The server could not process your apk. Try again. > > > I have added the <uses-sdk> as the first child of <manifest>: > > > <manifest xmlns:android="http://schemas.android.com/apk/res/android" > > package="leoliang.bettermylocation" android:versionCode="9" > > android:versionName="1.4.1"> > > <uses-sdk android:minSdkVersion="2" /> > > > On Apr 25, 3:10 am, Hw3699 <[email protected]> wrote: > > > > What's your solution? I got the same issure. > > > > <manifest xmlns:android="http://schemas.android.com/apk/res/android" > > > package="com.innersocial.planner" > > > android:versionCode="1" > > > android:versionName="1.1.1"> > > > <uses-sdk android:minSdkVersion="1"></uses-sdk> > > > > It doesn't work. --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---

