Android 批量卸载手机上的apk
Step1:把要卸载的APK包名保存到一个文件中,本文称之为file,保存格式如下
ubei.tingshu
cn.amazon.mShop.android
cn.wps.moffice_eng
com.adobe.reader
com.android.chrome
com.android.packagename
com.blossomapps.thelion
com.blovestorm
com.clov4r.android.nil
com.devuni.flashlight
com.dolphin.smartspeaker
com.dropbox.android
com.dsi.ant.service.socket
com.estrongs.android.pop
com.evernote.widget
com.example.android.apis
com.forthblue.pool
com.gamestar.pianocnperfect
com.google.android.apps.currents
com.google.android.apps.docs
#!/bin/shecho "begin to uninstall .....";cat $1 | while read line; doif [ -z $line ]; thencontinueelseecho "$line";adb uninstall $line -lfidone
echo "uninstall over.............";
~
sudo chmodd a+x uninstall
Step4: 运行卸载程序
./uninstall file
检查下有没有卸载干净。
本文来自互联网用户投稿,文章观点仅代表作者本人,不代表本站立场,不承担相关法律责任。如若转载,请注明出处。 如若内容造成侵权/违法违规/事实不符,请点击【内容举报】进行投诉反馈!
