我正在努力将 inmobi 广告集成到使用 Intelx XDK 构建的混合应用程序(现在是 ios)中。我正在关注本指南: https ://www.inmobi.com/support/art/23837226/22114287/intel-partner-platform-xdk-integration-guide/ 但我没有运气。当 inmobiplugin.ready 事件发生时,集成甚至没有达到触发警报的阶段。在 Intel xDK 模拟器中进行测试时,它显示 js 错误:
Uncaught TypeError: Object [object Object] has no method 'registerLibrary' inmobiplugin.js:19
到目前为止,这是我的代码,现在非常简单,仅用于测试:
function onMobiReady(){
alert('inmobyReady');
alertSize();
InMobiPlugin.ads.initialize({appId:'My App ID'});
InMobiPlugin.ads.initBannerAd({appId:'My App ID', adSize:'ADSIZE_320X50',top:0,left:0,refreshInterval:30,animationType:'ANIMATION_CURLUP',refTagKey:'TAGKEY',refTagValue:'TAGVALUE',keywords:'cars'});
InMobiPlugin.getNewAd(document.getElementById('home_ads'));
}
document.addEventListener("inmobiplugin.ready",onMobiReady,false);
有人有关于如何使用 intel xdk 集成 inmobi 广告的工作代码示例吗?
谢谢。
编辑:
这是我正在使用的代码:
var onDeviceReady=function(){
/* This code is used to run as soon as Intel activates */
intel.xdk.device.setRotateOrientation('portrait');
intel.xdk.device.setAutoRotate(false);
document.addEventListener("inmobiplugin.ready", onReadyM, false);
};
document.addEventListener("intel.xdk.device.ready",onDeviceReady,false);
function onReadyM()
{
alert('InMobiPlugin ready');
InMobiPlugin.ads.initialize({appId:'My APP ID'}); // Initialize to be called
// InMobi APIs can be called here
InMobiPlugin.ads.initBannerAd({appId:'My APP ID',adSize:'ADSIZE_320X50',top:200,left:0,refreshInterval:30,animationType:'ANIMATION_OFF', test:true, refTagValue:'TAGVALUE'});
InMobiPlugin.ads.setAdRequestProperties({gender:'GENDER_MALE',income:30000,education:'EDUCATION_BACHELORS_DEGREE',age:30,hasChildren:TRUE,language:'English'});
InMobiPlugin.ads.loadBannerAd();
}
我可以看到警报“InMobi 插件已准备就绪”
但我没有看到任何补充。它是一个简单的 html 页面,仅用于测试。
你有什么提示吗?
多谢!