美文网首页Android
adb shell pm 命令

adb shell pm 命令

作者: act262 | 来源:发表于2017-08-07 22:56 被阅读586次

    adb shell pm 命令

    Tags: adb_shell


    pm命令对应的是PackageManager

    • 列出所有的已安装包
     shell pm list packages
    
    • 清空指定应用的数据(/data/data/package)
      pm clear PACKAGE
    
    • 启用/禁用app或者组件,需要su执行
    pm enable [--user USER_ID] PACKAGE_OR_COMPONENT
    pm disable [--user USER_ID] PACKAGE_OR_COMPONENT
    
    • 重置所有应用的权限
    pm reset
    

    相关文章

      网友评论

        本文标题:adb shell pm 命令

        本文链接:https://www.haomeiwen.com/subject/mfdzlxtx.html