To disable back button in Android put one of the codes below in your app.js in the .run function.
// app.js
// Disable Back in Entire App
$ionicPlatform.registerBackButtonAction(function(){
event.preventDefault();
}, 100);
Or Conditionally Disable Back:
// app.js
$ionicPlatform.registerBackButtonAction(function(){
if($ionicHistory.currentStateName === 'someStateName'){
event.preventDefault();
}else{
$ionicHistory.goBack();
}
}, 100);
