11

Is there a way to test vibrations on the Virtual Devices that come with Android Studio?

I tried searching logcat and it seems like there isn't any indication of when the Android device is vibrating or not.

Marcin Orlowski
  • 72,056
  • 11
  • 123
  • 141
Eric Fox
  • 111
  • 1
  • 3

1 Answers1

0

Did you try this?

logcat -b system

(Look into this answer: Debug Android vibration)

Othere than that, if you are writing the code, the vibration is called with the method

Vibrator.vibrate(). 

You could write a wrapper around this or create your own vibrator class to add some specific logging next to the vibration call itself.

ChrisN
  • 74
  • 3