# File lib/mobileesp_converted/user_agent_info.rb, line 452
    def detect_android_tablet()

      if (!detect_android())
        return false
      end


      if (detect_opera_mobile())
        return false
      end


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