Struct google_testing1::ApkManifest[][src]

pub struct ApkManifest {
    pub min_sdk_version: Option<i32>,
    pub package_name: Option<String>,
    pub max_sdk_version: Option<i32>,
    pub application_label: Option<String>,
    pub intent_filters: Option<Vec<IntentFilter>>,
}

An Android app manifest. See http://developer.android.com/guide/topics/manifest/manifest-intro.html

This type is not used in any activity, and only used as part of another schema.

Fields

Minimum API level required for the application to run.

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

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

User-readable name for the application.

no description provided

Trait Implementations

impl Default for ApkManifest
[src]

Returns the "default value" for a type. Read more

impl Clone for ApkManifest
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for ApkManifest
[src]

Formats the value using the given formatter. Read more

impl Part for ApkManifest
[src]

Auto Trait Implementations

impl Send for ApkManifest

impl Sync for ApkManifest