From 937ab7eebcc30ff1de6da4cefb61f1fc967fb803 Mon Sep 17 00:00:00 2001 From: Alex Styl <1665273+alexstyl@users.noreply.github.com> Date: Fri, 28 Nov 2025 19:18:06 +0700 Subject: [PATCH 1/5] Add Compose Unstyled to the list of users (#457) --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 7512a75c..a17c0045 100644 --- a/README.md +++ b/README.md @@ -270,5 +270,6 @@ These are some of the open-source projects using (or used) **Android Emulator Ru - [bitfireAT/davx5-ose](https://github.com/bitfireAT/davx5-ose/blob/dev-ose/.github/workflows/test-dev.yml) - [robolectric/robolectric](https://github.com/robolectric/robolectric/blob/master/.github/workflows/tests.yml) - [home-assistant/android](https://github.com/home-assistant/android/blob/master/.github/workflows/pr.yml) +- [composablehorizons/compose-unstyled](https://github.com/composablehorizons/compose-unstyled/tree/main/.github/workflows) If you are using **Android Emulator Runner** and want your project included in the list, please feel free to open a pull request. From 001613e8566bd40e853996984bddc5bb8908fef2 Mon Sep 17 00:00:00 2001 From: Yang Date: Fri, 6 Feb 2026 17:13:30 +1100 Subject: [PATCH 2/5] Replace deprecated `macos-13` runner with `macos-15-intel`. (#460) --- .github/workflows/main.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index e8cd13b3..2bf7eaa9 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -27,7 +27,7 @@ jobs: api-level: 24 target: playstore arch: x86 - - os: macos-13 + - os: macos-15-intel api-level: 31 target: default arch: x86_64 From 29b35ed1351e57f26ffab1f33834037d0b35a084 Mon Sep 17 00:00:00 2001 From: Mike Hardy Date: Fri, 6 Feb 2026 01:13:54 -0500 Subject: [PATCH 3/5] fix: remove problematic / unneeded `--abi` option in avd creation (#456) --- lib/emulator-manager.js | 2 +- src/emulator-manager.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/emulator-manager.js b/lib/emulator-manager.js index d57b97e9..1b4da885 100644 --- a/lib/emulator-manager.js +++ b/lib/emulator-manager.js @@ -48,7 +48,7 @@ function createAvd(arch, avdName, cores, diskSize, enableHardwareKeyboard, force const profileOption = profile.trim() !== '' ? `--device '${profile}'` : ''; const sdcardPathOrSizeOption = sdcardPathOrSize.trim() !== '' ? `--sdcard '${sdcardPathOrSize}'` : ''; console.log(`Creating AVD.`); - yield exec.exec(`sh -c \\"echo no | avdmanager create avd --force -n "${avdName}" --abi '${target}/${arch}' --package 'system-images;android-${systemImageApiLevel};${target};${arch}' ${profileOption} ${sdcardPathOrSizeOption}"`); + yield exec.exec(`sh -c \\"echo no | avdmanager create avd --force -n "${avdName}" --package 'system-images;android-${systemImageApiLevel};${target};${arch}' ${profileOption} ${sdcardPathOrSizeOption}"`); } if (cores || ramSize || heapSize || enableHardwareKeyboard || diskSize) { const configEntries = []; diff --git a/src/emulator-manager.ts b/src/emulator-manager.ts index 5a816162..d5f5d7ef 100644 --- a/src/emulator-manager.ts +++ b/src/emulator-manager.ts @@ -27,7 +27,7 @@ export async function createAvd( const sdcardPathOrSizeOption = sdcardPathOrSize.trim() !== '' ? `--sdcard '${sdcardPathOrSize}'` : ''; console.log(`Creating AVD.`); await exec.exec( - `sh -c \\"echo no | avdmanager create avd --force -n "${avdName}" --abi '${target}/${arch}' --package 'system-images;android-${systemImageApiLevel};${target};${arch}' ${profileOption} ${sdcardPathOrSizeOption}"` + `sh -c \\"echo no | avdmanager create avd --force -n "${avdName}" --package 'system-images;android-${systemImageApiLevel};${target};${arch}' ${profileOption} ${sdcardPathOrSizeOption}"` ); } From 969c9896d30e4dd5306cd1da9a655cf80e399c7a Mon Sep 17 00:00:00 2001 From: Michael MIGLIORE Date: Thu, 26 Feb 2026 12:44:03 +0100 Subject: [PATCH 4/5] Add F3D in the list of projects (#462) --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index a17c0045..8c8c638c 100644 --- a/README.md +++ b/README.md @@ -271,5 +271,6 @@ These are some of the open-source projects using (or used) **Android Emulator Ru - [robolectric/robolectric](https://github.com/robolectric/robolectric/blob/master/.github/workflows/tests.yml) - [home-assistant/android](https://github.com/home-assistant/android/blob/master/.github/workflows/pr.yml) - [composablehorizons/compose-unstyled](https://github.com/composablehorizons/compose-unstyled/tree/main/.github/workflows) +- [f3d-app/f3d-android](https://github.com/f3d-app/f3d-android/blob/master/.github/workflows/ci.yml) If you are using **Android Emulator Runner** and want your project included in the list, please feel free to open a pull request. From 38164a29c17ab378156ee05ac94862c90799427d Mon Sep 17 00:00:00 2001 From: Yang Date: Wed, 11 Mar 2026 23:15:24 +1100 Subject: [PATCH 5/5] Prepare for release 2.36.0. --- CHANGELOG.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 9acefecd..7a0ef4bc 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,11 @@ ## Unreleased +## v2.36.0 + +* Remove `--abi` option to better support 16-KB-based system images (#456). + + ## v2.35.0 * Optimize config.ini updates and efficiency improvements report (#436).