3

我正在努力将 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 页面,仅用于测试。

你有什么提示吗?

多谢!

4

2 回答 2

2

实际上,InMobi 插件在英特尔 XDK 中不起作用,但在您构建应用程序时它会起作用,任何 XDK 插件都是这种情况。

还有一件事,您应该inmobiplugin.ready在设备准备好之前注册事件。

编辑

如果inmobiplugin.ready触发了事件并且您看到了警报,那么您的设置是正确的。

但是,在您的财产/申请获得批准和激活之前,InMobi 不会投放广告。

于 2014-03-14T15:33:16.773 回答
2

我为 InMobi 插件团队工作。您在上面粘贴的代码看起来不错。因此,如果您使用的是激活的 App ID,您应该会看到广告。您能否确认您已使用 XDK 构建了插件并正在设备上测试构建?

如果您在设备上进行测试,请启用调试模式以使用以下代码查看日志:

InMobiPlugin.ads.setLogLevel(2); // 用于调试

日志级别值如下:

1:默认最小日志级别。

2:用于调试目的的日志级别。

3:用于关键调试的日志级别。

将设备连接到您的笔记本电脑并检查 Xcode 上的日志。请通过 plugin-support@inmobi.com 将日志发送给我们,以便我们进一步调查。

您还可以按照此处提供的说明为您的 App ID 启用诊断模式以接收测试广告:https ://www.inmobi.com/support/art/23382291/21894911/setting-up-publisher-diagnostics/ 。

如有更多疑问,请写信至 plugin-support@inmobi.com。

于 2014-03-18T09:08:05.683 回答