Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

AndroidVersion

import type { AndroidVersion } from "https://googleapis.deno.dev/v1/testing:v1.ts";

A version of the Android OS.

interface AndroidVersion {
apiLevel?: number;
codeName?: string;
distribution?: Distribution;
id?: string;
releaseDate?: Date;
tags?: string[];
versionString?: string;
}

§Properties

§
apiLevel?: number
[src]

The API level for this Android version. Examples: 18, 19.

§
codeName?: string
[src]

The code name for this Android version. Examples: "JellyBean", "KitKat".

§
distribution?: Distribution
[src]

Market share for this version.

§
id?: string
[src]

An opaque id for this Android version. Use this id to invoke the TestExecutionService.

§
releaseDate?: Date
[src]

The date this Android version became available in the market.

§
tags?: string[]
[src]

Tags for this dimension. Examples: "default", "preview", "deprecated".

§
versionString?: string
[src]

A string representing this version of the Android OS. Examples: "4.3", "4.4".