我在获取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。
谢谢。