# File lib/mobileesp_converted/user_agent_info.rb, line 426
    def detect_android_phone()

      if (!detect_android())
        return false
      end


      if (user_agent.include?(MOBILE))
        return true
      end


      if (detect_opera_mobile())
        return true
      end

      return false
    end