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§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for GetDeviceSpec
impl RefUnwindSafe for GetDeviceSpec
impl Send for GetDeviceSpec
impl Sync for GetDeviceSpec
impl Unpin for GetDeviceSpec
impl UnwindSafe for GetDeviceSpec
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more