Cordova Visual studio - onload functions&短信收件箱startwatch

时间:2016-03-21 17:06:44

标签: jquery cordova

我在获取SMS列表时遇到问题,因为onWatch功能无效。

这是我正在使用的插件: https://github.com/floatinghotpot/cordova-plugin-sms

function theStarter() {
    startW();
    triggerEventSMS();
    window.plugins.insomnia.keepAwake();
}
window.onload = theStarter;

function triggerEventSMS() {
    window.addEventListener('onSMSArrive', function (e) {
        alert("new sms inbox");
    });
}
function startW() {
        SMS.startWatch(function () {
            update('watching', 'watching started');
        }, function () {
            updateStatus('failed to start watching');
        });
}

keepAwake功能在100%的时间内也无法正常工作,我想这是因为ons.bootstrap();

适用于新手机,不适用于4.0.4和xiaomi 2sim 4.4。 我的sdk设置推荐为sdk 22。

谢谢。

0 个答案:

没有答案