Struct crossbundle_tools::tools::GetDeviceSpec
source · [−]pub struct GetDeviceSpec { /* private fields */ }Expand description
Generate and use device specification JSON files
Bundletool is capable of generating an APK set that targets a device configuration
specified by a JSON file. To first generate a JSON file for a connected device, run
the following command:
`bundletool get-device-spec --output=/tmp/device-spec.json`bundletool creates a JSON file for your device in the directory the tool is located.
You can then pass it to bundletool to generate a set of APKs that target only the
configuration described in that JSON file as follows:
`bundletool build-apks --device-spec=/MyApp/pixel2.json`
`--bundle=/MyApp/my_app.aab --output=/MyApp/my_app.apks`Implementations
sourceimpl GetDeviceSpec
impl GetDeviceSpec
Trait Implementations
sourceimpl Debug for GetDeviceSpec
impl Debug for GetDeviceSpec
sourceimpl PartialEq<GetDeviceSpec> for GetDeviceSpec
impl PartialEq<GetDeviceSpec> for GetDeviceSpec
sourcepub fn eq(&self, other: &GetDeviceSpec) -> bool
pub fn eq(&self, other: &GetDeviceSpec) -> bool
This method tests for self and other values to be equal, and is used
by ==. Read more
sourcepub fn ne(&self, other: &GetDeviceSpec) -> bool
pub fn ne(&self, other: &GetDeviceSpec) -> bool
This method tests for !=.
sourceimpl PartialOrd<GetDeviceSpec> for GetDeviceSpec
impl PartialOrd<GetDeviceSpec> for GetDeviceSpec
sourcepub fn partial_cmp(&self, other: &GetDeviceSpec) -> Option<Ordering>
pub fn partial_cmp(&self, other: &GetDeviceSpec) -> Option<Ordering>
This method returns an ordering between self and other values if one exists. Read more
1.0.0 · sourcefn lt(&self, other: &Rhs) -> bool
fn lt(&self, other: &Rhs) -> bool
This method tests less than (for self and other) and is used by the < operator. Read more
1.0.0 · sourcefn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for self and other) and is used by the <=
operator. Read more
impl StructuralPartialEq for GetDeviceSpec
Auto Trait Implementations
impl RefUnwindSafe for GetDeviceSpec
impl Send for GetDeviceSpec
impl Sync for GetDeviceSpec
impl Unpin for GetDeviceSpec
impl UnwindSafe for GetDeviceSpec
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcepub fn borrow_mut(&mut self) -> &mut T
pub fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more