if you're on Windows:
npm install --global --production windows-build-tools
git clone https://github.com/r2-studio/robotmon-desktop.git
cd app
npm install
./node_modules/.bin/electron-rebuild
npm start
- Only support Android
- No need to root
- Download on Google Play.
- Enable USB Debugging on your phone
- Connect your phone to your computer over a USB cable
- Enable the service by using Robotmon Service Manager or Robotmon Desktop or CLI
- Download Robotmon-service-manager and unzip it
- In the bin directory, open the folder that matches your operation system
- Double click start to enable the service. A successful start would show message as below:
- Click
掃描 Scan
- Click
啟動 Start
adb shell 'nohup sh -c "LD_LIBRARY_PATH=/system/lib:/data/app/com.r2studio.robotmon-1/lib/arm:/data/app/com.r2studio.robotmon-2/lib/arm CLASSPATH=/data/app/com.r2studio.robotmon-1/base.apk:/data/app/com.r2studio.robotmon-2/base.apk app_process32 /system/bin com.r2studio.robotmon.Main $@" > /dev/null 2> /dev/null &'
$ adb shell 'ps | grep app_process'
shell 16035 16032 2295692 40508 futex_wait ab35c858 S app_process32
# find pid
adb shell ps app_process
# or
adb shell 'ps | grep app_process'
# kill it
adb shell kill <pid>
- Check
LD_LIBRARY_PATH
,CLASSPATH
, andapp_process32
is correct/exists - Thers is no
nohub
in some devices, you may remove it and try again - Using
app_process
instead ofapp_process32
in old phones
Brand | Model |
---|---|
HTC | U11, 10, X9, A9, E9+, M9, Eye, Butterfly 3, Butterfly 2, Butterfly |
Samsung | Note 8, S7 |
Asus | ZenFone 2, ZenFone 3 |
Sony | Xperia XZ |
Xiaomi | Redmi |
OnePlus | 3T |
Emulator | Nox App Player, BlueStacks |
Learn more about Robotmon APIs on robotmon-scripts repository.