2020-12-08 22:33:20 +08:00
|
|
|
#!/bin/bash
|
|
|
|
|
2021-07-11 16:08:01 +08:00
|
|
|
PLATFORM_TOOLS=~/AppData/Local/Android/Sdk/platform-tools
|
|
|
|
|
|
|
|
if [ "$(uname)" == "Darwin" ]; then
|
|
|
|
PLATFORM_TOOLS=~/Library/Android/sdk/platform-tools
|
|
|
|
elif [ "$(expr substr $(uname -s) 1 5)" == "Linux" ]; then
|
|
|
|
PLATFORM_TOOLS=~/Android/sdk/platform-tools
|
|
|
|
fi
|
|
|
|
|
|
|
|
cd ${PLATFORM_TOOLS} || exit
|
2021-04-10 15:29:31 +08:00
|
|
|
./adb shell monkey -v -p com.calcitem.sanmill --pct-touch 100 --pct-trackball 0 --pct-nav 0 --pct-majornav 0 --pct-syskeys 0 --pct-anyevent 0 --throttle 500 10000000
|