我已经被一个问题困住了一段时间,我无法弄清楚它是什么。问题是我最近更新了Mopub Android SDK,在此之前,插页式 + 横幅广告(AdMob和Millennial Media)都运行良好。现在这些广告在发布版本中不起作用,但它们在调试版本中起作用。所以我认为这是一个问题,proguard
但我无法追踪它是什么。这proguard
是根据Mopub指南设置的。
proguard
我为我的项目添加了以下内容:
-keep class com.google.ads.**
-keep class com.millennialmedia.android.**
-keep public class com.mopub.mobileads.*
-keepclassmembers class com.millennialmedia.android.* {
public *;
}
在发布版本中,当我尝试显示广告时,我得到以下日志:
I/MoPub (29856): Fetching ad network type: admob_native
D/MoPub (29856): Loading custom event interstitial adapter.
D/MoPub (29856): Attempting to invoke custom event: com.mopub.mobileads.GoogleAdMobInterstitial
D/MoPub (29856): Couldn't locate or instantiate custom event: com.mopub.mobileads.GoogleAdMobInterstitial.
I/MoPub (29856): Fetching ad network type: admob_native
D/MoPub (29856): Loading custom event adapter.
D/MoPub (29856): Attempting to invoke custom event: com.mopub.mobileads.GoogleAdMobBanner
D/MoPub (29856): Couldn't locate or instantiate custom event: com.mopub.mobileads.GoogleAdMobBanner.
V/MoPub (29856): MoPubErrorCode: Unable to find Native Network or Custom Event adapter.
请提出错误可能是什么。对于任何反馈,我们都表示感谢。
另外我不知道这是否相关,但我正在开发一个Cocos2dx Android项目。
谢谢。