I have use schedulelocalnotification for ios in below methods:
var notification = Ti.App.iOS.scheduleLocalNotification({ alertBody:"Kitchen Sink was put in background", alertAction:"Re-Launch!", userInfo:{"hello":"world"}, sound:"pop.caf", userInfo : { id : 1234 }, date:new Date(new Date().getTime() + 3000), // 3 seconds after backgrounding, repeat:"daily" }); Ti.App.iOS.addEventListener('notification',function(){ }
Now I want same thing for android version. i dont have any idea how to deal with android for localnotification part.Kindly help me.
Thanks