Android
This project doesn't have an Android app yet, but you can run the specifically built python script on Termux ( an Android app that provides linux environment )
First, download Termux
from Google Play Store.
In termux, run the following commands:
shell
pkg update && pkg upgrade
pkg install python termux-api
Grant accessing all files permission:
shell
termux-setup-storage
Run the script:
shell
cd path/to/your/client/folder
pip install -r requirements.txt
python termux.py
Running in the Background
If you want this script to run in the background, you can use tmux
shell
pkg install tmux
Create a new session:
shell
tmux
Run the script, use Ctrl+B & D
to detach from the session