This plugin allows you to listen to the hardware buttons on Android devices.
cordova plugin add cordova-plugin-buttons
ionic cordova plugin add cordova-plugin-buttons
npm install cordova-plugin-buttons
Buttons
.subscribe(function(button) {
// your callback
})
.then(function () {
// started
})
.catch(function (err) {
// something broke
});Buttons
.unsubscribe()
.then(function () {
// stopped
})
.catch(function (err) {
// something broke
});