QML Profiler fails to connect to server

前端 未结 1 439
感情败类
感情败类 2021-02-13 13:14

I\'m trying to use QML Profiler to find out what is slowing my program down, but when I start it, I get this message:

QML Profiler: Connecting to de         


        
相关标签:
1条回答
  • 2021-02-13 13:45

    I met the same issue today when remote device profiling, it's caused by the qmlprofiler port was already been used.

    I found the error message: QML Debugger: Unable to listen to port 10000

    then check port on my device: lsof -i :10000, there indeed a process is using port 10000.

    so I changed the qmlprofiler port to 10001 in below, the problem solved:

    0 讨论(0)
提交回复
热议问题