You are currently viewing How to close the app and remove from the history in Xamarin Android?
Xamarin

How to close the app and remove from the history in Xamarin Android?

How to close the app and remove from the history in Xamarin Android?

Here is the code that helps you to close the app and remove it from the history or resent app using Xamarin Android.

if (Build.VERSION.SdkInt >= Android.OS.BuildVersionCodes.Lollipop)
                          {
                              this.FinishAndRemoveTask();
                          }
                          else
                          {
                              this.Finish();
                          }