Child pages
  • Debugging Mobile

Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

While in the debugger of chrome you have a few tabs where you can inspect stuff, like:

  • the resources tab to see the loaded or stored resources, the console tab where you can see the console output the client generates or 
  • the sources tab where you can start debugging your actual code that is running in the mobile client, 
    • The navigator (the arrow button on the left) gives you access to all the sources.
    • Under localhost:8080 section you will find the same scripts you also have in the developer. You can open them to set breakpoints, these will now be hit when you hit that code in the mobile client.

...