com.google.ads.AdView nie powiodło się

Użyłem admob sdk i dodałem jako zewnętrzny jar.In xml, który podałem

<code><LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:ads="http://schemas.android.com/apk/lib/com.google.ads"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent">
<TextView android:id="@+id/headerfield"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content">
<ListView android:id="@+id/list"
    android:layout_width="fill_parent"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content">

<com.google.ads.AdView 
    android:id="@+id/ad"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    ads:adSize="BANNER"    
    ads:adUnitId="Publisher Id"
    ads:loadAdOnCreate="true" />    
</LinearLayout>
</code>

Oczywisty

<code><activity android:name="com.google.ads.AdActivity"
    android:configChanges="keyboard|keyboardHidden|orientation"/>
</code>

Ale w trybie graficznym daje mi dziennik błędów:

<code>com.google.ads.AdView - the following class could not be instantiated. 
</code>

Wewnątrz programu jego pokaz

Musisz zadeklarować AdActivity w AndroidManifest.xml z configChanges.

questionAnswers(3)

yourAnswerToTheQuestion