While there is no standalone rtl_433 Android app, rtl_433 can be successfully cloned, compiled and executed in Termux app.
Install:
# open Termux shell
# install Ubuntu via command from AnLinux
# start ubuntu
./start-ubuntu.sh
# install dependencies, compile and install rtl_433 or follow detailed instruction from rtl_433 build guide
apt update
apt install git sudo libtool libusb-1.0-0-dev librtlsdr-dev rtl-sdr build-essential autoconf cmake pkg-config
git clone https://github.com/merbanan/rtl_433
cd rtl_433/
mkdir build
cd build
cmake ..
make
make install
Run rtl_433
# manually start "SDR driver" app and in Advanced mode start the rtl_tcp server
# or start the driver automatically from Termux shell via Intent command:
am start "iqsrc://-a 127.0.0.1 -p 14423 -d 443920000 -s 1024000"
sleep 4
# run the rtl_433
~/start-ubuntu.sh rtl_433 -C si -G -M newmodel -d rtl_tcp:127.0.0.1:14423I followed the steps. I lauched SDR driver in Android then the rtl_tcp server..and rtl_433 no successThe SDR driver waits for a client to connect...but rtl_433 doesn't connectAny help pleaseRegards