在尝试播放Vungle广告时,我始终从方法Ad unavailable: No cached or streaming ad available
onAdUnavailable()
令我感到困惑的是,使用来工作,现在却没有。它仍适用于安装旧版本应用的设备,但是当我现在构建它时,它只是说广告不可用。
我正按照他们的基本指示实施Vungle:
final VunglePub vunglePub = VunglePub.getInstance();
@Override
protected void onCreate (Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
vunglePub.init(this, APP_ID);
vunglePub.setEventListener(vungleListener);
}
private final EventListener vungleListener = new EventListener() {
@Override
public void onVideoView(boolean isCompletedView, int watchedMillis, int videoDurationMillis) {
// Called each time a video completes. isCompletedView is true if the video was not skipped.
}
@Override
public void onAdStart() {
// Called before playing an ad
}
@Override
public void onAdEnd() {
// Called when the user leaves the ad and control is returned to your application
}
@Override
public void onCachedAdAvailable() {
// I don't get this any more
Log.i("vungle","cachedAdAvail");
}
@Override
public void onAdUnavailable(String arg0) {
//I get this when I try to play the ad
Log.i("vungle","Ad unavailable: "+arg0);
}
};
public void playVungleAd() {
vunglePub.playAd();
}
APP_ID
是正确的(当我使用不正确的ID时,我会收到特定错误),并且设备上可以使用互联网连接(AdMob插页式广告可以正常使用以及互联网)。
我不知道该怎么做,我没有想法。
答案 0 :(得分:2)
看起来您使用的是SDK的新版本之一(3.x)。您可以检查以下几项内容:
如果您最近升级到3.1.0版(或更高版本),则需要执行一些其他步骤,https://github.com/Vungle/vungle-resources/blob/master/Android-resources/android-dev-guide.md#additional-steps-for-sdk-version-310-or-higher
我知道你说你有正确的AppID,但为了确保使用短划线上应用页面左上角的红色(不是报告API ID)
< / LI>如果您仍然遇到问题,请随时发送电子邮件至tech-support@vungle.com与我们联系!