I have a requirement that goes like this: We have custom Android devices with custom ROM installed on them. I need to be able to install an update for this custom ROM through an app.
What I was thinking to solve this problem was to download the custom rom from a server via ftp and then issue "some kind of command" to execute the ROM from my app, but the problem is I don't know what command to issue in order to execute this ROM.
Do you know how can I install that custom rom programmatically?
The only way you can do that is to 'interface' with the the Custom Recovery (CWM/TWRP) installed on the device. It would mostly be a Shell command directing the phone to boot into recovery and install the update.zip at a given location on the sdcard.
I suggest you look into the source code of CMUpdater.apk or other updater apps like Goo.im manager, etc (if available) and see how it is done. You'll be needing 'root' access to make such an app though.
If you do find any solution, do post it here for others to benefit from it !