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


Step2. 编写shell 脚本,批量卸载,文件名为uninstall

#!/bin/sh

echo "begin to uninstall .....";

cat $1 | while read line; do

  if [ -z $line ]; then
    continue
  else
    echo "$line";
    adb uninstall $line -l
  fi

done
echo "uninstall over.............";
~                                           


Step3. 赋予可执行权限 

sudo chmodd a+x uninstall

Step4: 运行卸载程序

./uninstall file

检查下有没有卸载干净。

你可能感兴趣的:(android,shell,File,脚本,手机)