之前很多人吐槽谷歌服务耗电(其实我的几乎不费电,就是看着他运行难受,就用adb停用了)
先下载adb工具包,自行搜索adb shell,下载adb kits (adb.exe, AdbWinApi.dll, AdbWinUsbApi.dll),下载后在文件夹里shift+右键,“在此处打开powershell窗口”,输入“cmd”,确认。手机进入开发者选项,打开USB调试,连接电脑。
在窗口输入adb devices查询已连接设备,确认手机已经连接
停用Google One Time Init
adb shell pm disable --user com.google.android.onetimeinitializer
停用Google Play Services for AR
adb shell pm disable --user com.google.ar.core
停用Google Play服务
adb shell pm disable --user com.google.android.gms
停用Google Play服务更新程序
adb shell pm disable --user com.android.vending
停用Google 备份传输
adb shell pm disable --user com.google.android.backuptransport
停用Google 服务框架
adb shell pm disable --user com.google.android.gsf
停用Google合作伙伴设置
adb shell pm disable --user com.google.android.partnersetup
停用Google通讯录同步
adb shell pm disable --user com.google.android.syncadapters.contacts
以上亲测停用后均未发现问题,其它预装的oppo应用可以查询对应的包名,如果想卸载,将disable改为uninstall即可,不过不建议卸载,出了问题恢复出厂设置都回不来。
我觉得我写得够详细的了
先下载adb工具包,自行搜索adb shell,下载adb kits (adb.exe, AdbWinApi.dll, AdbWinUsbApi.dll),下载后在文件夹里shift+右键,“在此处打开powershell窗口”,输入“cmd”,确认。手机进入开发者选项,打开USB调试,连接电脑。
在窗口输入adb devices查询已连接设备,确认手机已经连接
停用Google One Time Init
adb shell pm disable --user com.google.android.onetimeinitializer
停用Google Play Services for AR
adb shell pm disable --user com.google.ar.core
停用Google Play服务
adb shell pm disable --user com.google.android.gms
停用Google Play服务更新程序
adb shell pm disable --user com.android.vending
停用Google 备份传输
adb shell pm disable --user com.google.android.backuptransport
停用Google 服务框架
adb shell pm disable --user com.google.android.gsf
停用Google合作伙伴设置
adb shell pm disable --user com.google.android.partnersetup
停用Google通讯录同步
adb shell pm disable --user com.google.android.syncadapters.contacts
以上亲测停用后均未发现问题,其它预装的oppo应用可以查询对应的包名,如果想卸载,将disable改为uninstall即可,不过不建议卸载,出了问题恢复出厂设置都回不来。
我觉得我写得够详细的了



