Localnotifications delay

*I used translation machine.

It tells me later than the time I set.
test platform android

—ionic info—
Cordova CLI: 7.0.0
Ionic Framework Version: 3.1.1
Ionic CLI Version: 2.2.3
Ionic App Lib Version: 2.2.1
Ionic App Scripts Version: 1.3.7
ios-deploy version: 1.9.0
ios-sim version: 5.0.12
OS: macOS Sierra
Node Version: v6.9.1
Xcode version: Xcode 8.3.2 Build version 8E2002

-------------------code----------------------
var now = new Date().getTime();
for(var i = 0; 10 > i; i++ )
{
var insertDate = new Date(now + ((i * 60) * 1000)).setSeconds(0);

    this.localNotifications.schedule([{
      id: i,
      text: 'aa' + i,
      at: insertDate,
      every: "0",
      led: 'FF0000',
      sound: null
    }]);

}

----------------Desired result----------
14:25 - push
14:26 - push
14:27 - push
14:28 - push
14:29 - push
… Every minute

------------Actual result -----------
14:25 - push
14:26 - push
14:28 - push
14:28 - push
14:31 - push
… random

this.localNotifications.getAll().then((data:any)=>{
console.log("data : " + data.length);
for(var i=0; i < data.length; i++)
{
console.log(“id :” + data[i].id + " at : " + data[i].at + " == " + new Date(data[i].at * 1000));
}
})

[14:25:16] console.log: id :0 at : 1494393901 ==> : Wed May 10 2017 14:25:01
[14:25:16] console.log: id :1 at : 1494393961 ==> : Wed May 10 2017 14:26:01
[14:25:16] console.log: id :2 at : 1494394021 ==> : Wed May 10 2017 14:27:01
[14:25:16] console.log: id :3 at : 1494394081 ==> : Wed May 10 2017 14:28:01
[14:25:16] console.log: id :4 at : 1494394141 ==> : Wed May 10 2017 14:29:01
[14:25:16] console.log: id :5 at : 1494394201 ==> : Wed May 10 2017 14:30:01
[14:25:16] console.log: id :6 at : 1494394261 ==> : Wed May 10 2017 14:31:01
[14:25:16] console.log: id :7 at : 1494394321 ==> : Wed May 10 2017 14:32:01
[14:25:16] console.log: id :8 at : 1494394381 ==> : Wed May 10 2017 14:33:01
[14:25:16] console.log: id :9 at : 1494394441 ==> : Wed May 10 2017 14:34:01

Ask for help.