Update android to support the emulator command#538
Open
JollyFrolics wants to merge 1 commit intob3nj5m1n:mainfrom
Open
Update android to support the emulator command#538JollyFrolics wants to merge 1 commit intob3nj5m1n:mainfrom
JollyFrolics wants to merge 1 commit intob3nj5m1n:mainfrom
Conversation
The emulator launches the android emulators based on saved AVDs(Android Virtual Device). It looks at `ANDROID_AVD_HOME` to determine the location according to this error log from `emulator` ``` ERROR | (Note: Directories are searched in the order $ANDROID_AVD_HOME, $ANDROID_SDK_HOME/avd and $HOME/.android/avd) ``` So, `ANDROID_AVD_HOME` has been suggested to set to `$XDG_DATA_HOME/android/avd`. Alternatively, it could have been saved to `$ANDROID_USER_HOME/avd`. But in accordance to the style in `adb`'s alias suggestion this was not done.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
The emulator launches the android emulators based on saved AVDs(Android Virtual Device). It looks at
ANDROID_AVD_HOMEto determine the location according to this error log fromemulatorSo,
ANDROID_AVD_HOMEhas been suggested to be set to$XDG_DATA_HOME/android/avd.Alternatively, it could have been saved to
$ANDROID_USER_HOME/avd. But in accordance to the style inadb's alias suggestion this was not done.