Skip to content

Commit 9d0dad9

Browse files
committed
Prepare for release 2.0.0.
1 parent 0d276b9 commit 9d0dad9

File tree

2 files changed

+8
-5
lines changed

2 files changed

+8
-5
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
# Change Log
22

3+
## v2.0.0
4+
5+
* Added action input `emulator-options` for providing command-line options used when launching the emulator. Default value is `-no-window -no-snapshot -noaudio -no-boot-anim`.
6+
* Removed `headless` action input which is equivalent to specifying `-no-window` in the new `emulator-options` action input (included by default).
7+
38
## v1.0.2
49

510
* Increased emulator boot timeout to **5 mins**.

README.md

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ jobs:
3737
fetch-depth: 1
3838
3939
- name: run tests
40-
uses: reactivecircus/android-emulator-runner@v1
40+
uses: reactivecircus/android-emulator-runner@v2
4141
with:
4242
api-level: 29
4343
script: ./gradlew connectedCheck
@@ -60,7 +60,7 @@ jobs:
6060
fetch-depth: 1
6161
6262
- name: run tests
63-
uses: reactivecircus/android-emulator-runner@v1
63+
uses: reactivecircus/android-emulator-runner@v2
6464
with:
6565
api-level: ${{ matrix.api-level }}
6666
target: ${{ matrix.target }}
@@ -81,6 +81,4 @@ jobs:
8181
| `disable-animations` | Optional | `true` | Whether to disable animations - `true` or `false`. |
8282
| `script` | Required | N/A | Custom script to run - e.g. to run Android instrumented tests on the emulator: `./gradlew connectedCheck` |
8383

84-
Default `emulator-options`:
85-
86-
`-no-window -no-snapshot -noaudio -no-boot-anim`
84+
Default `emulator-options`: `-no-window -no-snapshot -noaudio -no-boot-anim`.

0 commit comments

Comments
 (0)