zoukankan      html  css  js  c++  java
  • adb安装和卸载apk的方式

    昨天在使用adb卸载程序,结果死活卸载不了。我输入的命令和系统提示如下:

    1. D: estApk>adb uninstall HelloWorld
    2. Failure

    后来发现原来卸载程序时,只adb uninstall 后边的参数不应该是.apk文件,而是包名,即AndroidMainifest.xml文件中<manifest>节点下,package元素所指定的名字,如下所示

    1. D: estApk>adb uninstall org.crazyit.helloword
    2. Success

    安装apk的方式:

    1. adb install -r  Android-gateway-nightly.apk   

       如果安装apk到rom中,提示 “exsit 。。。”  的提示信息,可以加上  - r 参数 ,可以替换原有的apk 

    2. adb shell pm clean com.cvte.health 

       可以清除 某个包apk的数据,就是相当于清除数据

    附加:

    adb install [-l] [-r] [-s] <file> - 

    EN

     push this package file to the device and install it
    - 

    CHS

     给设备安装软件
    ('-l' means forward-lock the app) #锁定该程序
    ('-r' means reinstall the app, keeping its data) #重新安装该程序,保存数据
    ('-s' means install on SD card instead of internal storage) #安装在SD卡内,而不是设备内部存储
    
    adb uninstall [-k] <package> - 

    EN

     remove this app package from the device
    - 

    CHS

     从设备删除程序包
    ('-k' means keep the data and cache directories) #不删除程序运行所产生的数据和缓存目录(如软件的数据库文件)
  • 相关阅读:
    turtle 绘制爱心
    数据库总结
    anconda安装使用
    爬虫之存储库MongoDB
    【python】代码换行的几种方法
    【python】 合并列表的方法
    【notebook】常用在线notebook总结
    【PDF】PDF无法注释的一种解决方案
    【课程】MIT深度学习课程:架起理论与实践的桥梁
    【今日CV 视觉论文速览】Thu, 21 Feb 2019
  • 原文地址:https://www.cnblogs.com/blogofwu/p/4524561.html
Copyright © 2011-2022 走看看