Reputation: 2318
On linux i have an Android ARM emulator running. I wanted to see the log output, so i started ddms on the command line. After ddms opened i selected the device. Then after two or three seconds DDMS freezes. It freezes only after i select the device.
Upvotes: 0
Views: 238
Reputation: 9574
Its a common issue with ddms. You can try to adb kill-server
, adb start-server
. This should work.
Upvotes: 0