Pre installing android application

后端 未结 2 1592
暗喜
暗喜 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:32

    I'm assuming you're talking about a rom here.

    If you want the user to be able to delete the application you should put the .apk file in "/data/app" If you want to have the app behave like a system app (like e-mail or calendar) you can put the .apk in "/system/app"

    0 讨论(0)
  • 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.

    0 讨论(0)
提交回复
热议问题