Question: You launch your app, and when you navigate to a new screen it crashes, Which action will NOT help you diagnose the issue?

  1. Set breakpoints and then step through the code line by line
  2. Use the profiler tools in Android Studio to detect anomalies CPU, and network usage.
  3. Add a Thread.sleep() call before you start the new activity.
  4. inspect the logs in Logcat.

Answer: The correct answer of the above question is Option C:Add a Thread.sleep() call before you start the new activity.