Android Google Maps: błędy układu XML

Próbuję uzyskać google maps v2 do pracy w Androidzie przy użyciu studia Android. Mam wszystkie moje klucze i konfigurację manifestu. Gdy próbuję utworzyć plik xml dla rzeczywistej aktywności, na której mapa się pojawi, otrzymuję błędy. Mój xml wygląda tak:

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
                xmlns:tools="http://schemas.android.com/tools"
                android:layout_width="match_parent"
                android:layout_height="match_parent"
                tools:context=".MainActivity" >

    <fragment xmlns:android="http://schemas.android.com/apk/res/android"
              android:id="@+id/map"
              android:layout_width="match_parent"
              android:layout_height="match_parent"
              class="com.google.android.gms.maps.SupportMapFragment"/>
</RelativeLayout>

Mój błąd w studio Android wygląda tak:

questionAnswers(1)

yourAnswerToTheQuestion