Browse Source

README.md update; added vga_arbiter to docker-compose.yml

master
chodak166 2 months ago
parent
commit
b6f67e65f6
  1. 7
      README.md
  2. 1
      docker-compose.yml

7
README.md

@ -45,7 +45,12 @@ Found 5 connected devices:
export ADB_TRACE=info
In case of any issues try `adb kill-server` and then `adb start-server`. Run `export ADB_TRACE=all` to see verbose output.
You can also check open 5037 port with `fuser 5037/tcp`. Processes using this port can be killed with `fuser -k 5037/tcp`.
You can also check open 5037 port with `fuser 5037/tcp` and kill it with `-k`. So on **host machine** try:
```
fuser -k 5037/tcp
adb start-server
```
### Targeting Android SDK versions

1
docker-compose.yml

@ -29,6 +29,7 @@ services:
- ${XDG_RUNTIME_DIR}/pulse:${XDG_RUNTIME_DIR}/pulse
- /run/user/1000/at-spi:/run/user/1000/at-spi #TODO: pass UID?
- /dev/shm:/dev/shm
- /dev/vga_arbiter:/dev/vga_arbiter
- ./dev-init:/opt/dev-init # debug
- .:/host # debug

Loading…
Cancel
Save