Does android supports double tap?

Guys, does android supports double tap? And when I say that, I mean can I use
tapCount == 2
in android games without any errors? Because I’ve read that you can use tapCount only for iPhones.

There are several types of touch screens:

  1. those like the iPhone that can read multiple input
  2. those like the lower-end android that only can read one input at a time.

Some Android phones can read multiple, but not all. According to the Unity docs you should be able to use touchcount:

Mobile Devices:
iOS and Android devices are capable of tracking multiple fingers touching the screen simultaneously. You can access data on the status of each finger touching screen during the last frame by accessing the Input.touches property array.