However, I am building with the 1.1 ADT and 1.1 target.
Can anyone else who have a maps application verify that this line is
still acceptable for their Manifest file in the market?
Jason

On Apr 26, 2:16 am, aleung <leoli...@gmail.com> wrote:
> Perhaps it's because of this line:
> <uses-library android:name="com.google.android.maps" />
>
> The Android blog said that Google Maps API is a plugin in the 1.5 SDK.
> I'm now downloading the 1.5 SDK early look to have a try.
>
> On Apr 26, 12:05 pm, jsdf <jasons...@gmail.com> wrote:
>
> > 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 <rmce...@gmail.com> wrote:
>
> > > The market doesn't seem to accept minSdkVersion="2".   You must use
> > > "1".
>
> > > On Apr 25, 10:42 am, aleung <leoli...@gmail.com> 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" />
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers-unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to