Instalar Telega en Android con Termux

¿Por qué? Porque está permitido.

Asumiré que sabes algo de Emacs

  1. Instala Termux desde F-Droid https://f-droid.org/es/packages/com.termux/
  2. Entra a Termux e ingresa:
pkg update
pkg install git emacs make cmake gperf

3. Clona y compila tdlib (Puedes reemplazar el 1 por el número de núcleos de tu dispositivo):

git clone https://github.com/tdlib/td.git
cd td
mkdir build && cd build && cmake ../
make -j1
make DESTDIR="/data/data/com.termux/files/usr" install

4. Edita o crea en /data/data/com.termux/files/home/.emacs.d/init.el

(require 'package)
(add-to-list 'package-archives '("melpa" . "https://melpa.org/packages/") t)
;; Comment/uncomment this line to enable MELPA Stable if desired.  See `package-archive-priorities`
;; and `package-pinned-packages`. Most users will not need or want to do this.
;;(add-to-list 'package-archives '("melpa-stable" . "https://stable.melpa.org/packages/") t)
(package-initialize) 

5. En Emacs:

M-x package-refresh-contents
M-x package-install RET telega

6. Ahora en init.el agrega al final:

(setq telega-server-libs-prefix "/data/data/com.termux/files/usr/local")

7. Inicia Telega en Emacs:

M-x telega RET

Al menos así me sirvió a mí. Espero que te sea útil, ¡saludos!