com.google.ads.AdView не удалось создать экземпляр

Я использовал admob SDK и добавил в качестве внешнего jar. В XML я указал

<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>

манифест

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

Но в графическом режиме это дает мне журнал ошибок:

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

Внутри программы его показ

Вы должны объявить AdActivity в AndroidManifest.xml с configChanges.

Ответы на вопрос(3)

Ваш ответ на вопрос