android debugger does not stop at breakpoints

前端 未结 5 1157
心在旅途
心在旅途 2021-02-11 15:06

I am seeing debug statements in the console but the debugger does not stop on any breakpoints. I tried clearing all breakpoints and adding them back in. Not sure how this can

5条回答
  •  执念已碎
    2021-02-11 15:51

    Have you set the debuggable flag in the AndroidManifest? If you miss that, do so by adding android:debuggable="true" in the application tag. It should look like that in the end:

    
    

提交回复
热议问题