Skip to content

Commit

Permalink
fix: Update emulator host in dev.nix for IDX (#1893)
Browse files Browse the repository at this point in the history
* IDX emulator implementation was change to localhost:5555

Co-authored-by: alexyfchen <[email protected]>
  • Loading branch information
Fructokinase and alexyfchen authored Nov 25, 2024
1 parent 0b8caa6 commit 26e5bd3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions open-in-idx-template/devNix.j2
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,11 @@
idx = {
workspace = {
onCreate = {
build-and-wait = "./gradlew assembleDebug && adb -s emulator-5554 wait-for-device";
build-and-wait = "./gradlew assembleDebug && adb -s localhost:5555 wait-for-device";
default.openFiles = [ "README.md" ];
};
onStart = {
wait-for-adb = "adb -s emulator-5554 wait-for-device";
wait-for-adb = "adb -s localhost:5555 wait-for-device";
};
};
previews = {
Expand Down

0 comments on commit 26e5bd3

Please sign in to comment.