UNPKG

cordova-plugin-foreground-service

Version:
10 lines (9 loc) 349 B
var exec = require('cordova/exec'); module.exports = { start: function(title, text, icon, importance, notificationId) { exec(null, null, "ForegroundPlugin", "start", [title || "", text || "", icon || "", importance || "1", notificationId || ""]); }, stop: function() { exec(null, null, "ForegroundPlugin", "stop", []); } };