Sorry about the generic error message.
If haven’t done so yet, could you please try with this version? (Install both the Android and Desktop versions)
If it still doesn’t work
Getting some log would be necessary to troubleshoot what’s happening.
The Android app doesn’t store log messages itself so using ADB is necessary.
You would need to do these steps:
- Get ADB and enable USB debugging
- Open a terminal
- Confirm that your device is available via the command
adb devices
- Type
adb logcat --clear
to remove all the previous logs - Type
adb logcat > logcat-output.txt
to write the new logs to a file - In the Android App, try to connect to the server via USB tethering
- In the terminal, stop the log collection by doing
CTRL C
- Post the
logcat-output.txt
file here
There should be the real error message inside the log file.
Let me know if you need help with the instructions.