我正在开发一个必须在其中展示广告的应用程序。当我放置广告时,它们工作得很好。大约一周后,他们才停止加载。检查日志猫发现我遇到了以下异常:
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" />
谢谢!