I am trying to install a system app from my java code, and so far, I haven't had any success.
Following is what I have done so far:
- My device is rooted.
- My "installer" app is installed as a system app. (copied it manually to /system/app)
- I have signed the installer apk with platform key, and I have
android:sharedUserId="android.uid.system"
in the Manifest. I have been trying (and trying, and then some more) for
Runtime.getRuntime.exec("su")
. I intend to mount the system partition asrw
, do acat
for the apk, and then make system partitionro
. Following is the list of commands:mount -o remount,rw -t yaffs2 /dev/block/mtdblock3 /system<br> cat /sdcard/application.apk > /system/app/application.apk<br> mount -o remount,ro -t yaffs2 /dev/block/mtdblock3 /system<br><br>The application.apk here is the app being installed from the installer app. This app is also signed with platform key, and has the sharedUserId configured.
- I have requested for the
INSTALL_PACKAGES
permission in the manifest.
I have tried a number of variations of the exec("") format, including using 'su -c'
with every command. I have gotten the Broken Pipe exception and Security exception. Sometimes, I don't get an exception, but the file isn't copied.
Please let me know what I am missing here. Has anyone got this working?
Thanks!