http://justanapplication.wordpress.com/2009/08/22/a-standalone-android-runtime-application-installation/

It turns out that an application can be installed, such that it can subsequently be run, simply by placing the package containing it in the data app directory. On a device this would usually be the directory

    /data/app

When it is started by the SystemServer the PackageManagerService will scan this directory and find the package containing the application. It will then ask the Installer to install the application.

The Installer in the SystemServer is simply a proxy for the installd process which can be found here

    $(ANDROID_SRC)/frameworks/base/cmds/installd

It is responsible for creating the directories for the application being installed and for changing their ownership to that of the application. This requires root privilege or something like it which is why it is being done by a standlone process rather than in the context of the SystemServer process.

The proxy in the SystemServer communicates with installd using local sockets. Neither local sockets nor some of the functionality required by installd are available in standard Java but we can mimic enough that the installation of the application succeeds.

更多相关文章

  1. 代码中设置drawableleft
  2. android 3.0 隐藏 系统标题栏
  3. Android开发中activity切换动画的实现
  4. Android(安卓)学习 笔记_05. 文件下载
  5. Android中直播视频技术探究之—摄像头Camera视频源数据采集解析
  6. 技术博客汇总
  7. android 2.3 wifi (一)
  8. AndRoid Notification的清空和修改
  9. Android中的Chronometer

随机推荐

  1. Android(安卓)出现的小问题 an internal
  2. 几本适合新手的Android电子书(提供下载)
  3. Android(安卓)通过经纬度获取地理位置信
  4. android手势左右滑动
  5. Android(安卓)Tips Round-Up, Part 4
  6. 收集的一些android open source app
  7. Android(安卓)文件打开方式
  8. [置顶] Android(安卓)[Dex Loader] Unabl
  9. android带彩色下划线的tab移动导航
  10. android PopupWindow例程