android单步调试

如果需要断点单步调试,则在AndroidManifest.xml文件中加入 android:debuggable=”true”,如下:

<application android:icon=”@drawable/icon”

 android:label=”@string/app_name”                   

  android:debuggable=”true” >

转载于:https://www.cnblogs.com/wwicked/articles/4353657.html