我正在制作一个我必须展示广告的应用程序。当我放置它们时,广告工作正常。一个星期左右后,他们就停止了加载。检查Log cat后发现我发现以下异常:
JS: Uncaught ReferenceError: AFMA_getSdkConstants is not defined (http://media.admob.com/:1)
我不知道突然发生了什么。它在4.x Android操作系统上运行良好。但现在不是。如何解决这个问题的任何帮助表示赞赏。
以下是我在xml中使用的代码:
<com.google.ads.AdView
android:id="@+id/adView"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
ads:adSize="BANNER"
android:layout_centerHorizontal="true"
ads:adUnitId="My ID"
ads:loadAdOnCreate="true"
android:layout_alignParentBottom="true" />
在清单中我有:
<activity android:name="com.google.ads.AdActivity"
android:configChanges="keyboard|keyboardHidden|orientation|screenLayout|uiMode|screenSize|smallestScreenSize" />
谢谢!