cordova-plugin-foreground-service
Version:
Foreground service with ongoing notification.
10 lines (9 loc) • 349 B
JavaScript
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", []);
}
};