标签: android android-studio debugging android-emulator
从Android Studio(针对仿真器)调试应用程序时,我在函数中设置了一个断点。调用该函数后,调试器将停止。
解决此问题的唯一方法是设置<application android:vmSafeMode="true">,以使Android Runtime在VM安全模式下运行(这将禁用JIT编译/ ART / Dex-2-Oat优化),但随后是应用程序运行慢很多。 如果未设置vmSafeMode,调试器是否应该无法正确调试?
<application android:vmSafeMode="true">
vmSafeMode