I can help you.
This your error happens when you are using lower Android SDK version.
As Erel wrote in tutorial:
You have 2 options: (I recomend to you first one)
1.) Update your Android SDK to level 13 or above
2.) Add this line in your manifest and delete this one with error:
Replace:
<!-- *** For AdMob: manually added *** -->
<activity android:name="com.google.ads.AdActivity"
android:configChanges="keyboard|keyboardHidden|orientation|screenLayout|uiMode|screenSize|smallestScreenSize"/>
With this one:
<!-- *** For AdMob: manually added *** -->
<activity android:name="com.google.ads.AdActivity"
android:configChanges="keyboard|keyboardHidden|orientation"/>