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

ApkManifest

import type { ApkManifest } from "https://googleapis.deno.dev/v1/testing:v1.ts";
interface ApkManifest {
applicationLabel?: string;
intentFilters?: IntentFilter[];
maxSdkVersion?: number;
metadata?: Metadata[];
minSdkVersion?: number;
packageName?: string;
services?: Service[];
targetSdkVersion?: number;
usesFeature?: UsesFeature[];
usesPermission?: string[];
versionCode?: bigint;
versionName?: string;
}

§Properties

§
applicationLabel?: string
[src]

User-readable name for the application.

§
intentFilters?: IntentFilter[]
[src]
§
maxSdkVersion?: number
[src]

Maximum API level on which the application is designed to run.

§
metadata?: Metadata[]
[src]

Meta-data tags defined in the manifest.

§
minSdkVersion?: number
[src]

Minimum API level required for the application to run.

§
packageName?: string
[src]

Full Java-style package name for this application, e.g. "com.example.foo".

§
services?: Service[]
[src]

Services contained in the tag.

§
targetSdkVersion?: number
[src]

Specifies the API Level on which the application is designed to run.

§
usesFeature?: UsesFeature[]
[src]

Feature usage tags defined in the manifest.

§
usesPermission?: string[]
[src]

Permissions declared to be used by the application

§
versionCode?: bigint
[src]

Version number used internally by the app.

§
versionName?: string
[src]

Version number shown to users.