From 3dd5fe4fb79078a92fda9b2c0a1c227a47eed99e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jaime=20Guti=C3=A9rrez=20Alfaro?= <593829+jamescr@users.noreply.github.com> Date: Fri, 28 Aug 2020 19:32:57 -0600 Subject: [PATCH] Update CONTRIBUTING.md Add a command for display a valid AVD names list. --- CONTRIBUTING.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 664a22a72..8acbc3aed 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -17,7 +17,7 @@ It's recommended to run the tests locally before making a new pull request to ma - Make sure you are at the *root directory of the project* - `$ cd YOUR_PATH/osmtracker-android` - For running **instrumentation** tests it's needed to previously start up an emulator (or real device), you can do it from Android Studio but also without it using the command line. For that, you need to move to the Android SDK installation directory and look for a folder called `emulator` once there, start any already created emulator by typing: - - `$ ./emulator -avd NAME` to start the emulator called *NAME* + - `$ ./emulator -avd NAME` to start the emulator called *NAME* (run `$ ./emulator -list-avds` for a valid list of AVD names) - When it's up, go back to the root project folder and run the instrumentation tests with - `$ ./gradlew connectedAndroidTest`