[][src]Struct ndk_build::manifest::Manifest

pub struct Manifest {
    pub package_name: String,
    pub package_label: String,
    pub version_name: String,
    pub version_code: u32,
    pub target_name: String,
    pub target_sdk_version: u32,
    pub min_sdk_version: u32,
    pub opengles_version: (u8, u8),
    pub features: Vec<Feature>,
    pub permissions: Vec<Permission>,
    pub intent_filters: Vec<IntentFilter>,
    pub icon: Option<String>,
    pub fullscreen: bool,
    pub orientation: Option<String>,
    pub launch_mode: Option<String>,
    pub debuggable: bool,
    pub split: Option<String>,
    pub application_metadatas: Vec<ApplicationMetadata>,
    pub activity_metadatas: Vec<ActivityMetadata>,
}

Fields

package_name: Stringpackage_label: Stringversion_name: Stringversion_code: u32target_name: Stringtarget_sdk_version: u32min_sdk_version: u32opengles_version: (u8, u8)features: Vec<Feature>permissions: Vec<Permission>intent_filters: Vec<IntentFilter>icon: Option<String>fullscreen: boolorientation: Option<String>launch_mode: Option<String>debuggable: boolsplit: Option<String>application_metadatas: Vec<ApplicationMetadata>activity_metadatas: Vec<ActivityMetadata>

Implementations

impl Manifest[src]

pub fn to_string(&self) -> String[src]

pub fn write_to(&self, dir: &Path) -> Result<(), NdkError>[src]

Trait Implementations

impl Debug for Manifest[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.