I think you need to move your uses-sdk lone to after the </application>.
This is a fragment of mine that works and is similar to the main app I'm
developing.


    <application android:icon="@drawable/icon"
android:label="@string/app_name">
        <activity android:name=".HelloMapview"
                  android:label="@string/app_name">
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />
                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
        </activity>
        <uses-library android:name="com.google.android.maps" />
    </application>
    <uses-sdk android:minSdkVersion="3" />
    <uses-permission android:name="android.permission.INTERNET" />
</manifest>

On Wed, Jun 17, 2009 at 9:07 AM, Geoff Newson
<geoff.new...@googlemail.com>wrote:

>
> Hi all,
>
> I'm joining this thread as I've had the same problem when following
> the tutorial.  I have the INTERNET permission set, as per the
> tutorial.  The manifest is below.
>
> I also have a key that was generated from my debug.keystore file.
> I've put the key into the manifest file, again as in the tutorial but
> I still only get the grid lines.
>
> I read something about signing the app.  Does this need to be done as
> well?
>
> Geoff
>
> <?xml version="1.0" encoding="utf-8"?>
> <manifest xmlns:android="http://schemas.android.com/apk/res/android";
>      package="com.newson.android"
>      android:versionCode="1"
>      android:versionName="1.0">
>    <uses-sdk android:minSdkVersion="3" />
>    <uses-permission android:name="android.permission.INTERNET" />
>    <application android:icon="@drawable/icon" android:label="@string/
> app_name">
>        <uses-library android:name="com.google.android.maps" />
>        <activity android:name=".HelloMapView"
>                  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>
> </manifest>
>
> On May 29, 12:25 am, Dave Bordoley <bordo...@gmail.com> wrote:
> > Did you sign up and configure your application specificmapsdeveloper key?
> >
> > dave
> >
> > On Wed, May 27, 2009 at 10:52 AM, simonfro...@googlemail.com
> >
> > <simonfro...@googlemail.com> wrote:
> >
> > > Hello Everybody!
> >
> > > I currently getting started with developing for Android and I was just
> > > doing the "MapView Tutorial" fromhttp://developer.android.com. I
> > > managed to get it all working, except I can't see an actualGoogle-Map
> > > on my emulator. Instead I'm only seeing that grid, so that I'm
> > > assuming the emulator has some problems connecting to the internet.
> > > Are there some settings that have to be changed in order to let my
> > > emulator use the internet connection of my computer?
> >
> > > Thanks in advance!
> > > Simon
>
> >
>


-- 
Writing code is one of few things
that teaches me I don't know everything.

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google
Groups "Android Beginners" group.
To post to this group, send email to android-beginners@googlegroups.com
To unsubscribe from this group, send email to
android-beginners-unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-beginners?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to