Pre installing android application

后端 未结 2 1613
暗喜
暗喜 2020-12-30 13:48

Hi guys I would like to ask how to Pre-install android application.

Because I have specific device and I wanted to make my application pre-installed.

Thank y

2条回答
  •  长情又很酷
    2020-12-30 14:49

    First we need all the pre-requisites needed.

    1. We need to root our device to have super user capability, In my case I root my nexus one

      • Im not responsible if your device brick so be careful. (http://forum.xda-developers.com/showthread.php?t=611829)
    2. install superuser (http://www.appbrain.com/app/superuser/com.noshufou.android.su)

    3. Install BusyBox (to do shell command "cp") -- available in android market (http://www.appbrain.com/app/busybox/stericson.busybox)

    4. Execute the following commands in the terminal emulator to remount the /system directory as read/write and to install the application into the /system/app directory (http://www.nexusforum.net/nexus-one-application-day/524-nexus-one-app-day-2-8-10-powermanager.html):

      • adb shell
      • su
      • mount -o remount,rw -t yaffs2 /dev/block/mtdblock3 /system
      • cp /sdcard/sample.apk /system/app

    Thanks for all those who helped me.

提交回复
热议问题