[fixbug] 更新adb地址

This commit is contained in:
lichx 2025-01-14 23:53:25 +08:00
parent fffc1daed7
commit fc676746cf
2 changed files with 4 additions and 2 deletions

View File

@ -74,11 +74,12 @@ cp.Command("maa self update")
# fire it up # fire it up
cp.Command("docker stop redroid") cp.Command("docker stop redroid")
redroid_path = os.getenv('redroid_path', "/home/lichx/.config/redroid-rk3588/") redroid_path = os.getenv('redroid_path', "/home/lichx/.config/redroid-rk3588/")
adb_address = os.getenv('adb_address', "localhost:5555")
os.chdir(redroid_path) os.chdir(redroid_path)
cp.Command("docker compose up -d") cp.Command("docker compose up -d")
time.sleep(15) time.sleep(15)
cp.RetryCommand("adb connect localhost:5555") cp.RetryCommand(f"adb connect {adb_address}")
cp.RetryCommand("adb -s localhost:5555 shell am start --windowingMode 4 com.hypergryph.arknights/com.u8.sdk.U8UnityContext") cp.RetryCommand(f"adb -s {adb_address} shell am start --windowingMode 4 com.hypergryph.arknights/com.u8.sdk.U8UnityContext")
# run maa # run maa
haveError |= TaskFailRetry("maa run startup") != 0 haveError |= TaskFailRetry("maa run startup") != 0
haveError |= TaskFailRetry("maa run recruit") != 0 haveError |= TaskFailRetry("maa run recruit") != 0

View File

@ -1,5 +1,6 @@
{ {
"connection": { "connection": {
"address": "172.17.0.1:5555",
"preset": "ADB" "preset": "ADB"
}, },
"instance_options": { "instance_options": {