Hi all,

I´m trying to create a application using MapView with GPS... but the
following error appears in LogCat:

MapActivity(8287): Couldn't get connection factory client. And it
shows a strange screen in the emulator instead of the Maps...

The problem is that sometimes it works.. But 90% of the times it doesn
´t work. I used the MapView with GPS in previous releases and I never
had problem...

My Manifest has the permissions set.. does anybody please know what I
´m doing wrong?

thank you

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android";
      package="br.livro.android.gps"
      android:versionCode="1"
      android:versionName="1.0.0">

        <uses-permission
android:name="android.permission.ACCESS_FINE_LOCATION" />
        <uses-permission
android:name="android.permission.ACCESS_COARSE_LOCATION" />
        <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=".MenuGPS"
                  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>

--~--~---------~--~----~------------~-------~--~----~
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
[EMAIL PROTECTED]
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to