Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
java中是否有任何技术可以通过它进入android设备并打开其USB调试模式。
我希望不是。启用它显然是一种固有的安全风险,因此只有在您确实确定自己在做什么时才应启用(例如,如果您是测试应用程序的开发人员)。
出于安全考虑,这仅适用于系统应用程序。如果您的设备已植根,您可以这样调用:
Settings.Secure.putInt(getActivity().getContentResolver(),Settings.Secure.ADB_ENABLED, 1);