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> 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