Module: Ronin::Web::UserAgents::OS::Android Private

Defined in:
lib/ronin/web/user_agents/os/android.rb

Overview

This module is part of a private API. You should avoid using this module if possible, as it may be removed or be changed in the future.

Defines information about the Android Operating System (OS).

Constant Summary collapse

VERSIONS =

This constant is part of a private API. You should avoid using this constant if possible, as it may be removed or be changed in the future.

Known Android versions.

%w[
  10
  10.0
  11
  11.0
  12
  12.1
  4.0.4
  4.1.2
  4.2.2
  4.4.2
  4.4.4
  5.0
  5.0.2
  5.1
  5.1.1
  6.0
  6.0.1
  7.0
  7.1.1
  7.1.2
  8.0
  8.0.0
  8.1
  8.1.0
  9
  9.0
]
ARCHES =

This constant is part of a private API. You should avoid using this constant if possible, as it may be removed or be changed in the future.

Architectures supported by Android.

{
  arm:   'arm',
  arm64: 'arm_64',

  nil => nil
}
DEVICES =

This constant is part of a private API. You should avoid using this constant if possible, as it may be removed or be changed in the future.

Known Android devices.

File.readlines(
  File.join(DATA_DIR,'android','devices.txt'), chomp: true
)