如何以编程方式卸载 android 系统应用程序?

How to uninstall android system app programmatically?

我可以获得已安装应用程序的列表(包括用户应用程序和系统应用程序)。我也可以卸载用户应用程序,但是无法卸载系统应用程序。

有什么办法可以卸载系统应用吗? 如果 phone 已经 root,下面的代码可以工作吗?

Intent intent = new Intent(Intent.ACTION_DELETE);
intent.setData(Uri.parse("package:"+appPackageName.getText().toString()));
                        context.startActivity(intent); 

您需要具有 root 访问权限才能删除 systemvendor 应用程序。

$ su
# rm /data/system/application.package.apk
# rm /data/data/application.package

您可以执行 root 命令:

runCommand("su");
runCommand("rm /data/system/application.package.apk");
runCommand("rm /data/data/application.package");

//when this doesn´t work try
runCommand("rm -r /data/system/application.package.apk");
runCommand("rm -r /data/data/application.package");

public static void runCommand(String command){
try {
        Process chmod = Runtime.getRuntime().exec(command);

        BufferedReader reader = new BufferedReader(
                new InputStreamReader(chmod.getInputStream()));
        int read;
        char[] buffer = new char[4096];
        StringBuffer output = new StringBuffer();
        while ((read = reader.read(buffer)) > 0) {
            output.append(buffer, 0, read);
        }
        reader.close();
        chmod.waitFor();
        outputString =  output.toString();
    } catch (IOException e) {
        throw new RuntimeException(e);
    } catch (InterruptedException e) {
        throw new RuntimeException(e);
    }
}

还有一个不错的图书馆:https://github.com/Free-Software-for-Android/RootCommands

在 Root 设备上试试这个...它有效

        Process reboot = Runtime.getRuntime().exec("su");
        DataOutputStream os = new DataOutputStream(reboot.getOutputStream());
        os.writeBytes("pm uninstall co.example.demo\n");
        os.flush();
        os.writeBytes("exit\n");
        os.flush();
        reboot.waitFor();