Hi, my name is Marcos Maresch and I started few days ago to develop mobile apps with Tokyo.
I'm using tradicional Try... Exception... to handle errors in my apps, but Android simply ignore it.
Try
wsServico := GetIService;
except
on E: Exception do
begin
showmessage(E.Message);
exit;
end;
end;
Am I doing something wrong or there's another way to handle errors in Firemonkey?
Thanks, regards, Maresch