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
* master:
Prepare for release 2.8.0.
Add support for specifying a custom name used for creating AVD.
Fix typo
Add list of projects using android-emulator-runner.
Bump kotlin and AGP for test fixture project.
Copy file name to clipboardExpand all lines: CHANGELOG.md
+4Lines changed: 4 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,5 +1,9 @@
1
1
# Change Log
2
2
3
+
## v2.8.0
4
+
5
+
* Added support for specifying a custom name used for creating the **AVD** - [#59](https://github.com/ReactiveCircus/android-emulator-runner/issues/59).
6
+
3
7
## v2.7.0
4
8
5
9
* Added support for specifying versions of **NDK** and **CMake** to install.
|`api-level`| Required | N/A | API level of the platform system image - e.g. 23 for Android Marshmallow, 29 for Android 10. **Minimum API level supported is 15**. |
94
96
|`target`| Optional |`default`| Target of the system image - `default` or `google_apis`. |
95
97
|`arch`| Optional |`x86`| CPU architecture of the system image - `x86` or `x86_64`. Note that `x86_64` image is only available for API 21+. |
96
98
|`profile`| Optional | N/A | Hardware profile used for creating the AVD - e.g. `Nexus 6`. For a list of all profiles available, run `$ANDROID_HOME/tools/bin/avdmanager list` and refer to the results under "Available Android Virtual Devices". |
99
+
|`avd-name`| Optional |`test`| Custom AVD name used for creating the Android Virtual Device. |
97
100
|`emulator-options`| Optional | See below | Command-line options used when launching the emulator (replacing all default options) - e.g. `-no-window -no-snapshot -camera-back emulated`. |
98
101
|`disable-animations`| Optional |`true`| Whether to disable animations - `true` or `false`. |
99
102
|`emulator-build`| Optional | N/A | Build number of a specific version of the emulator binary to use e.g. `6061023` for emulator v29.3.0.0. |
_Please note that if you are running on a Linux VM, `-no-accel` will be added to the `emulator-options` to make sure hardware acceleration is turned off._
111
+
112
+
## Who is using Android Emulator Runner?
113
+
114
+
These are some of the open-source projects using (or used) **Android Emulator Runner**:
description: 'whether to disable animations - true or false'
24
27
default: 'true'
25
28
emulator-build:
26
-
description: 'build number of a specific version of the emulator binary to use - e.g. `6061023` for emulator v29.3.0.0.'
29
+
description: 'build number of a specific version of the emulator binary to use - e.g. `6061023` for emulator v29.3.0.0'
27
30
working-directory:
28
-
description: 'A custom working directory - e.g. `./android` if your root Gradle project is under the `./android` sub-directory within your repository.'
31
+
description: 'A custom working directory - e.g. `./android` if your root Gradle project is under the `./android` sub-directory within your repository'
29
32
ndk:
30
33
description: 'version of NDK to install - e.g. 21.0.6113669'
0 commit comments