Skip to content

Latest commit

 

History

History
87 lines (60 loc) · 2.08 KB

ANDROID.md

File metadata and controls

87 lines (60 loc) · 2.08 KB

ANDROID

ANDROID Actions

Action 1

Select Emulator

You'll be prompted with a selection list of emulator after selecting ANDROID List consists of emulator names that you created beforehand.

Select an emulator
> Nexus_5_API_30
  Pixel_4_API_30
  etc...

🌈 Tip: Emulator list extracted using emulator executable in Library/Android/sdk/emulator

Action 2

Select an action

You'll be prompted with a selection list of actions that can be performed

Select a process for Nexus_5_API_30
> Boot
  Shutdown
  Wipe Data
  Open with debug tags
  Open with logcat tags
  Standalone logcat window

🦄 Available Options

Boot:

Boots the selected simulator

Shutdown:

Closes the selected simulator

Wipe Data:

Wipes data for selected emulator. (Just like in Android Studio)

Open with debug tags:

Starts the emulator with any debug tags that you've entered after selecting this action.

Example:

? Enter debug tags(Seperate with comma)
eg: init,metrics: __
  • You can enter multiple debug tags by seperating each flag with a comma. (example: init,metrics)
  • You can refer to Android CLI documentation for more information.
  • Or you can just run:
$ emulator -help-debug-tags

Open with logcat tags:

Starts the emulator with any logcat tags that you've entered after selecting this action.

Example:

? Enter logcat tags(E,V): __
  • You can enter multiple debug tags by seperating each flag with a comma. (example: init,metrics)

  • You can refer to Android CLI documentation for more information.

Available logcat logtags

  • v - verbose
  • d - debug
  • i - informative
  • w - warning log level
  • e - error
  • s - silent