I tried updating an APK using this code:
Process process;
process = Runtime.getRuntime().exec(new String[] {"su", "-c", "pm install -r -d"+MyApk.apk});
but it does not work.
This works well when I use it with adb like:
adb shell su -c pm install -r -d /system/app/Community-debug.apk
It also works fine if it has to ask for user permission in order to install like using the intent method.
Your solution will only work on rooted devices.
In order for it to run on all devices, firstly, you need a cooperation from the device manufacturer to put your app under /system/priv-app. Putting your apk there will give you system privileges enabling you to perform the install. On top of that, you need to add android.permission.INSTALL_PACKAGES to your manifest file. Finally, add these lines to your code:
Your application would need to run as System user to access this level of commands. It cannot be done in any way if your app is distributed using standard channels, e.g. Google Play, installing from SD card, or installing by ADB. None of these would let your app breach the security.
Having said that, there is a way to get it working, but that way is for privileged distribution only. Your app must:
android:sharedUserId="android.uid.system"
in the AndroidManifest/system/app
,/system/priv-app
Once your app satisfies these requirements, it can execute commands like
pm install
, even without thesu
Needless to say that such options are only available to large bodies like telecom providers who sell their own-branded devices.