Skip to content

Commit

Permalink
chore(): added additional Android Emulator logging
Browse files Browse the repository at this point in the history
  • Loading branch information
tyllark committed Feb 7, 2025
1 parent 5b59e16 commit 4313f54
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions actions/lib/src/android/avd_manager.dart
Original file line number Diff line number Diff line change
Expand Up @@ -151,9 +151,11 @@ final class AvdManager {
onRetry: (e) async {
core.info(e.toString());

await ShellScript(
'''ls $androidAvdHome''',
).run();
final createRes = await _avdmanager(
['list'],
stdinCmd: 'echo n',
);
createRes.stdout;

final devices = await _adb(['devices', '-l']);
if (devices.exitCode != 0) {
Expand Down

0 comments on commit 4313f54

Please sign in to comment.