Кажется, что AndroidEnvironment.UnhandledExceptionRaiser
- это то, что вы ищете:
//that's a dirty-code example, do not use as-is! :)
AndroidEnvironment.UnhandledExceptionRaiser += (sender, args) =>
{
File.AppendAllText("tmp.txt", args.Exception.ToString());
};