Shano 4 Posted March 26 (edited) Does anyone know how to speed up the Delphi 12.2 Debugger? I have an Android device connected to my Delphi, and if I set a breakpoint in the FormCreate and set a breakpointin the FormShow. It takes 4 minutes to reach the FormShow event, which is a ridiculous amount of time and makes debugging utterly useless. procedure TMainForm.FormCreate(Sender: TObject); var i : integer; begin // breakpoint here i := 0; end; procedure TMainForm.FormShow(Sender: TObject); begin // breakpoint here ShowMessage('FormShow'); end; If you run the application without debugging, it takes seconds to see the FormShow message on the screen. Thank you in advance. Edited March 26 by Shano Share this post Link to post
Dave Nottage 605 Posted March 26 16 minutes ago, Shano said: Any ideas @Dave Nottage The debugger for Android has been unusable* for me for some time now. I have learned to live with using log statements and a logcat viewer, such as Device Lens. *I guess that aligns with not being able to debug on iOS, too. 1 1 Share this post Link to post
Shano 4 Posted March 26 Just now, Dave Nottage said: The debugger for Android has been unusable* for me for some time now. I have learned to live with using log statements and a logcat viewer, such as Device Lens. *I guess that aligns with not being able to debug on iOS, too. I, too, have been using Log.d and Monitor.bat I just thought there had to be a better way, as waiting for the debugger to start is such a waste of time. Share this post Link to post