Debugging on a mobile device
It is possible to remotely start the debugger for an app running on a mobile device.
Basics
When an app was created with debug mode and is running on a device, it is possible to attach to
the runtime system on the mobile for debug purpose, by using the
fgldb -m host[:port]
command.
The app must have been created in debug mode: Check out how to build mobile apps with debug mode in the Deploying mobile apps section.
On iOS devices, after installing the app, make sure that the debug port is enabled in the app settings. Otherwise, the app will not listen to the debug port.
The fgldb command line tool takes two arguments: The host (or IP address) of
the mobile device, and an optional TCP port number to connect to. For mobile devices, the debug TCP
port is 6400
. Note that this is the same port the mobile front-end is listening to
for GUI connection, when working in GUI client/server mode.
When attaching to the mobile app with fgldb, the app will
typically be executing a dialog instruction waiting for user interaction. If you need to debug app
code before the first dialog instruction, add a temporary MENU
statement before the
code to be inspected. When the code is fixed, remove the MENU
statement.
Before starting a debug session, make sure that you fulfill the prerequisites for debugging.
Debugging an app running on a physical device
192.168.1.23
", and the
application is running locally on a physical mobile device, you can open a debug
session from the development machine as
follows:$ fgldb -m 192.168.1.23:6400
108 DISPLAY ARRAY contlist TO sr.*
(fgldb)
(fgldb)
prompt indicates that you are now connected to the
fglrun process on mobile device, and the program flow is suspended.
To continue with the program flow, enter the "continue
" debugger
command:(fgldb) continue
Continuing.
...
Continuing.
^CINTERRUPT
108 DISPLAY ARRAY contlist TO sr.*
(fgldb)
(fgldb) b 427
Breakpoint 2 at 0x00000000: file contacts.4gl, line 427.
(fgldb) continue
Continuing.
Breakpoint 2, edit_contact() at contacts.4gl:427
427 IF new THEN
(fgldb)
detach
"
debugger command:(fgldb) detach
Connection closed by foreign host.
Debugging an app running on an Android device emulator
When the mobile application is executing on an Androidâ„¢ device emulator in the same machine as the development environment, you must first forward the 6400 TCP port.
$ adb forward tcp:6400 tcp:6400
$ adb forward tcp:6480 tcp:6480