So I was trying my app on my phone. When I tryed clicking my phones back button it did nothing so it brought me to this question. How can I use my phones back button to go back
Escape should work fine on android.
if (Input.GetKeyDown(KeyCode.Escape))
{
//do something
}
2 Likes
Thanks @kmgr