[][src]Struct creator_tools::Aapt2

pub struct Aapt2;

Implementations

impl Aapt2[src]

pub fn compile(self) -> Aapt2Compile[src]

Compiles resources to be linked into an apk.

Links resources into an apk.

pub fn dump(self) -> Aapt2Dump[src]

Used for printing information about the APK you generated using the link command.

pub fn diff(self)[src]

Prints the differences in resources of two apks. https://gerrit.pixelexperience.org/plugins/gitiles/frameworks_base/+/refs/tags/android-10.0.0_r2/tools/aapt2/cmd/Diff.cpp

pub fn optimize(self) -> Aapt2Optimize[src]

Preforms resource optimizations on an apk.

pub fn convert(self) -> Aapt2Convert[src]

Converts an apk between binary and proto formats.

pub fn version(self) -> String[src]

Prints the version of aapt.

pub fn daemon(self)[src]

Runs aapt in daemon mode. Each subsequent line is a single parameter to the command. The end of an invocation is signaled by providing an empty line.

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.

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