{% extends 'layout.html' %} {% block content %}
Initial connection
Please select the device and select the correct one in the list below.
Searching for devices

My device is not showing up
  • #1 Make sure the device is properly connected (only when using a USB cable)
  • #2 Make sure USB debugging is enabled. For more information please refer to https://developer.android.com/studio/debug/dev-options
  • #3 Check your device to see if it requires Authorization (also select "Always allow from this computer")
  • #4 Check if ADB is installed correctly and is accessible system-wide.
    You may also set the adb command location in the config.py file
  • If you are running Aparoid in a docker container you can sometimes only connect to remote devices. You can connect the device to your host machine and execute the following commands:
    adb tcpip 5555

    Whenever you are using a physical device you must set up a reverse port forward using:
    adb forward tcp:5555 tcp:5555
    . Afterwards, you can use "Connect to remote instance" to connect to host.docker.internal on port 5555.
{% endblock %} {% block subscripts %} {% endblock %}