module Browser::Platform

def android?

Detect if browser is Android.
def android?
  !!(ua =~ /Android/ && !opera?)
end