很早之前也尝试了一波p2p暴雷的经历,几千块钱换来了一个啥也没用的r1音响,之前小讯还是半死不活的时候装了投屏助手,现在都是用airplay投放音乐的。
但是有时候大半夜的 突然来句音响未绑定,能吓死人,就停用可一段时间
后面逛论坛发现是小讯助手的问题,可以通过禁用或者完全卸载解决,
首选是禁用
先通过adb 链接上r1

adb connect ip 

链接成功会提示 successfully

接下来就一步步执行 禁用的命令 (重启音响恢复)

adb shell am force-stop com.phicomm.speaker.launcher

adb shell am force-stop com.phicomm.speaker.productiontest

adb shell am force-stop com.phicomm.speaker.bugreport

adb shell am force-stop com.phicomm.speaker.otaservice

adb shell am force-stop com.phicomm.speaker.player

adb shell am force-stop com.phicomm.speaker.device     

卸载(长按顶部按键插入电源恢复 这个我没有尝试)

adb shell /system/bin/pm uninstall --user 0 com.phicomm.speaker.launcher

adb shell /system/bin/pm uninstall --user 0 com.phicomm.speaker.productiontest

adb shell /system/bin/pm uninstall --user 0 com.phicomm.speaker.bugreport

adb shell /system/bin/pm uninstall --user 0 com.phicomm.speaker.otaservice

adb shell /system/bin/pm uninstall --user 0 com.phicomm.speaker.player

adb shell /system/bin/pm uninstall --user 0 com.phicomm.speaker.device 

原文