zoukankan      html  css  js  c++  java
  • Android:安装时提示:INSTALL_FAILED_INSUFFICIENT_STORAGE

    在将程序发布到手机上时提示该错误:

    INSTALL_FAILED_INSUFFICIENT_STORAGE


    解决方法:


    1. adb shell

    2. #df 

    1. # df  
    2. df  
    3. Filesystem             Size   Used   Free   Blksize  
    4. /dev                    98M    60K    98M   4096  
    5. /mnt/asec               98M     0K    98M   4096  
    6. /mnt/obb                98M     0K    98M   4096  
    7. /system                250M   184M    65M   4096  
    8. /data                  170M   154M    15M   4096  
    9. /cache                  60M     1M    58M   4096  
    10. /system/secro            1M   776K   376K   4096  
    11. /mnt/sdcard            953M   155M   798M   16384  
    12. /mnt/secure/asec       953M   155M   798M   16384  

    发现/data下空间不足,原来是安装了太多应用程序导致。

    3. 删除一些不需要的程序即可。





  • 相关阅读:
    Docker 安装 MySQL
    Docker安装
    Thymeleaf语法总结
    SpringBoot总结之事务和AOP
    SpringBoot总结之Spring Data Jpa
    SpringBoot总结之属性配置
    Spring总结之SpringMvc下
    Spring总结之SpringMvc上
    Spring总结之事务
    在什么情况下使用@ResponseBody 注解?
  • 原文地址:https://www.cnblogs.com/jeffen/p/6706622.html
Copyright © 2011-2022 走看看