[][src]Struct lib_cargo_apk::config::AndroidConfig

pub struct AndroidConfig {
    pub cargo_package_name: String,
    pub cargo_package_version: String,
    pub manifest_path: PathBuf,
    pub sdk_path: PathBuf,
    pub ndk_path: PathBuf,
    pub build_targets: Vec<AndroidBuildTarget>,
    pub android_jar_path: PathBuf,
    pub target_sdk_version: u32,
    pub min_sdk_version: u32,
    pub build_tools_version: String,
    pub release: bool,
    pub default_target_config: TomlAndroidTarget,
    // some fields omitted
}

Fields

cargo_package_name: String

Name of the cargo package

cargo_package_version: String

Version of the cargo package

manifest_path: PathBuf

Path to the manifest

sdk_path: PathBuf

Path to the root of the Android SDK.

ndk_path: PathBuf

Path to the root of the Android NDK.

build_targets: Vec<AndroidBuildTarget>

List of targets to build the app for. Eg. armv7-linux-androideabi.

android_jar_path: PathBuf

Path to the android.jar for the selected android platform

target_sdk_version: u32

Version of android:targetSdkVersion (optional). Default Value = android_version

min_sdk_version: u32

Version of android:minSdkVersion (optional). Default Value = android_version

build_tools_version: String

Version of the build tools to use

release: bool

Should we build in release mode?

default_target_config: TomlAndroidTarget

Target configuration settings that are associated with a specific target

Methods

impl AndroidConfig[src]

pub fn resolve(
    &self,
    target: (TargetKind, String)
) -> CargoResult<AndroidTargetConfig>
[src]

Builds the android target config based on the default target config and the specific target configs defined in the manifest

Trait Implementations

impl Clone for AndroidConfig[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> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,