Android 广告admob required xml attribute adsize was missing一直错误。
三个步骤搞定
1. AndroidManifest.xml 加入
a. Google Play services library
b. <meta-data android:name="com.google.android.gms.version"
android:value="@integer/google_play_services_version"/>
b. <activity android:name="com.google.android.gms.ads.AdActivity"
android:configChanges="keyboard|keyboardHidden|orientation|screenLayout|uiMode|screenSize|smallestScreenSize"/>
c. <uses-permission android:name="android.permission.INTERNET"/>
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/>
可以参考 https://developers.google.com/mobile-ads-sdk/docs/