zoukankan      html  css  js  c++  java
  • 【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 

  • 相关阅读:
    验证码工具包使用
    log4j记录sql语句
    解读redis
    获取选中select的值
    android黑科技系列——Apk混淆成中文语言代码
    android黑科技系列——Xposed框架实现拦截系统方法详解
    android黑科技系列——应用市场省流量更新(增量升级)原理解析
    android黑科技系列——爆破一款应用的签名验证问题
    android黑科技系列——防自动抢红包外挂原理解析
    android黑科技系列——Wireshark和Fiddler分析Android中的TLS协议包数据(附带案例样本)
  • 原文地址:https://www.cnblogs.com/jidan/p/3189889.html
Copyright © 2011-2022 走看看