• 【Android】Android apk默认安装位置设置


    在Android工程中,设置apk的默认安装位置

    在AndroidManifest.xml文件Manifest标签中添加android:installLocation属性

    android:installLocation

    这个属性设置的是默认安装位置, 共有三个有效值,auto、internalOnly、preferExternal

    对应表

    auto 表示自动,由系统决定安装位置

    internalOnly 安装在手机内存

    preferExternal 安装在外部存储中

    Constant Value Description
    auto 0 Let the system decide install location
    internalOnly 1 Explicitly request to be installed on internal phone storage only
    preferExternal 2 Perfer to be installed on SD card, There is no guarantee that the system will honor this request. The application might end up being installed on internal storage if external media is unavailable or too full

     

    <manifest xmlns:android="http://schemas.android.com/apk/res/android"
          package="com.ray"
          android:installLocation="auto"
          android:versionCode="1"
          android:versionName="1.0">

    需要注意的问题(如果遇到其他问题,后期进行补充)

    需要开启启动的程序,一定要安装到手机内存中,这里就关系到广播消息的先后顺序

    开机启动的广播消息BOOT_COMPLETE早于 SD的启动,如果将程序安装到SD卡,无法接收到开机广播。

                                                                                                                                                                                                                 

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          

    本文出自 Ray-Ray的博客

    文章地址 http://www.cnblogs.com/rayray/p/3185811.html 

    感谢大家的推荐和收藏

    你的支持! 我们的动力!

  • 相关阅读:
    corntab e 执行sql脚本
    Java批量操作及分页
    log4j.xml和log4j2.xml配置应用日志与业务日志分离
    如何将vue项目部署到nginx服务器
    从零搭建Pytorch模型教程(四)编写训练过程参数解析
    STM32Cumebx HAL库实现STM32 USB虚拟串口的收发
    js 判断数据类型的几种方法
    Win10 电脑右下角任务栏网络图标突然消失解决方案
    Navicat Premium 16 永久破解激活
    788. 逆序对的数量
  • 原文地址:https://www.cnblogs.com/rayray/p/3185811.html
Copyright © 2020-2023  润新知