I am trying to debug inside of a LiveData Observer but the debugger says that there is
No executable code found at line ...
The following screenshot shows what it looks like after I have removed and replaced the breakpoints at the offending lines.
.gradle, .iml, app/build and .idea and restartingadb kill-server and adb start-serverI am using Android Studio 3.2.1
Any other ideas?
In my case, I was using the observer inside the fragment onActivityCreated Method. After moving code to onCreate method activity, it is started working.