pip3 install frida-tools
# Check frida version
frida --version
Download and Install Frida Server on Android
# Download frida server from here
https://github.com/frida/frida/releases
# Send the frida apk to android using adb
$ adb root # might be required
$ adb push frida-server /data/local/tmp/
$ adb shell "chmod 755 /data/local/tmp/frida-server"
$ adb shell "/data/local/tmp/frida-server &"