1.1.0 • Published 4 years ago

easy-android-emulator v1.1.0

Weekly downloads
21
License
MIT
Repository
github
Last release
4 years ago

EasyAndroidEmulator

oclif Version Downloads/week License

Create and run android emulators in a quick & easy manner with just device name/model. Use the various flags to customize the emulator as per your requirements.

Setting up the dependency

Install using npm

$ npm install easy-android-emulator -g

sdkmanager, avdmanager & emulator need to be accessible via command line

Refer to Setup tutorial article if needed.

Usage

Just call emulate to emulate the default device

$ emulate

Pass in Device Name or Model as the argument to emulate specific device

$ emulate "Pixel 4 XL"

Details of the device are automatically fetched, but if needed, they can be customized using the appropriate flags.

Flags

FlagDescription
-h, --helpshow CLI help
--versionshow CLI version
-v, --verboseshow verbose logs
-n, --namename of the AVD to be (created &) used
-p, --persistpersist the created avd (makes it faster for subsequent runs)
-f, --forceforce recreation of the emulator avd
--androidset the android API level for the AVD (Use along with -f flag if AVD already exists)
--abiset the preferred ABI for the AVD (Use along with -f flag if AVD already exists)
-r, --resolutionset the resolution of the AVD (Use along with -f flag if AVD already exists). Eg: -r 1080x2160
-d, --densityset the density of the AVD (Use along with -f flag if AVD already exists). Eg: -d 440

Examples

  1. Create emulator with Samsung Galaxy M51 Specs, but with 800x1280 resolution & 240 density, which is persisted for future reuse.
$ emulate m51 -r 800x1280 -d 240 -p
  1. Create emulator with Pixel 4 Specs, but with android API 25 and x86_64 ABI. (With verbose logs)
$ emulate "Pixel 4" --android 25 --abi x86_64 -v

Bugs and Feedback

For bugs, questions and discussions please use the Github Issues.

License

MIT License

Copyright (c) 2020 Jem

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
1.1.0

4 years ago

1.0.3

4 years ago

1.0.2

4 years ago

1.0.1

4 years ago

1.0.0

4 years ago