我想在物理Android设备上配置Android应用程序,而不使用从设备到计算机的USB连接。该设备的USB端口正由我的应用程序必不可少的外围设备使用。
我正在使用Android Wifi ADB Android Studio插件,并且已成功连接设备以利用到Android Studio 3.2.1的桥接
当我尝试使用Android Profiler开始新的性能分析会话时,连接的设备似乎没有“可调试的进程”。
在没有USB连接到Android设备的情况下如何配置我的应用程序?
答案 0 :(得分:0)
您需要enable adb integration
,
转到Tools-->Android-->Check Enable ADB Integration
这是几个版本以前的默认功能,但现在默认情况下已禁用。
答案 1 :(得分:0)
感谢Unity's list of Android profilers,我找到了解决方案。
目前,在Android Studio版本3.2.1上,ADB和Android Profiler无法通过WiFi协同工作。
就我而言,我发现simpleperf
是可以接受的,该工具包含生成CPU flame graphs的功能。我专门使用了run_simpleperf_without_usb_connection.py
,as documented in the simpleperf README available here。