1
0
mirror of https://github.com/bitwarden/mobile synced 2025-12-13 14:53:18 +00:00

secondary menu on groupings page

This commit is contained in:
Kyle Spearrin
2019-05-30 00:29:00 -04:00
parent 67970afc1e
commit 3f8f29dfe7
6 changed files with 94 additions and 1 deletions

View File

@@ -101,6 +101,10 @@ namespace Bit.Droid
{
RestartApp();
}
else if(message.Command == "exit")
{
ExitApp();
}
});
}
@@ -283,5 +287,11 @@ namespace Bit.Droid
alarmManager.Set(AlarmType.Rtc, triggerMs, pendingIntent);
Java.Lang.JavaSystem.Exit(0);
}
private void ExitApp()
{
FinishAffinity();
Java.Lang.JavaSystem.Exit(0);
}
}
}