You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# We also need to download precompiled binaries and headers for OpenSSL from maven, this step is a temporary hack
50
50
# and will be removed once we figure out how to integrate OpenSSL properly as a dependency
@@ -65,7 +65,7 @@ and even run tests one by one for each library:
65
65
```
66
66
./build.sh libs.tests -os Android -arch x64 -test
67
67
```
68
-
Make sure an emulator is booted (see `AVD Manager`) or a device is plugged in and unlocked.
68
+
Make sure an emulator is booted (see [`AVD Manager`](#avd-manager)) or a device is plugged in and unlocked.
69
69
`AVD Manager` tool recommends to install `x86` images by default so if you follow that recommendation make sure `-arch x86` was used for the build script.
70
70
71
71
### Running individual test suites
@@ -85,6 +85,31 @@ adb logcat -s "DOTNET"
85
85
```
86
86
Or simply open `logcat` window in Android Studio or Visual Stuido.
87
87
88
+
### AVD Manager
89
+
If Android Studio is installed, [AVD Manager](https://developer.android.com/studio/run/managing-avds) can be used from the IDE to create and start Android virtual devices. Otherwise, the Android SDK provides the [`avdmanager` command line tool](https://developer.android.com/studio/command-line/avdmanager).
90
+
91
+
Example of installing, creating, and launching emulators from the command line (where `SDK_API_LEVEL` matches the installed Android SDK and `EMULATOR_NAME_X86`/`EMULATOR_NAME_X64` are names of your choice):
0 commit comments