标签:
1. 解决程序在Debugger下,不能断点情况。
一些设备设置了应用调试权限,这样的情况下,就要在应用的manifest文件中,添加程序Debugger调试的权限获取。
1 <manifest> 2 <uses-permission android:name="android.permission.SET_DEBUG_APP"> 3 </uses-permission> 4 </manifest>
标签:
原文地址:http://www.cnblogs.com/naray/p/5290068.html