Debugging the Future: Exploring Coroutine Debugger Tools | Nikita Nazarov

Поделиться
HTML-код
  • Опубликовано: 17 ноя 2024

Комментарии • 4

  • @urosjarc3450
    @urosjarc3450 4 месяца назад +5

    Nikita has so gentle and pleasant voice. I really like this talk!

  • @lppedd
    @lppedd 4 месяца назад +2

    Another pro tip. Enable -Xdebug only while you develop, via Gradle parameters: I like to pass in a "is.release" project parameter, which is read in the build script. If it's false (or absent) enable the flag, otherwise we're building for production and we don't need to de-optimize.

  • @TarekBuhdeima
    @TarekBuhdeima 4 месяца назад +1

    Thank you, this was greatly needed !!

  • @lppedd
    @lppedd 4 месяца назад +3

    Pro tip: use Force Step Over instead of Step Over, and your debug session won't terminate (99% of the times).
    But I think debugging enhancements are going to land soon anyway.