簡體   English   中英

如何以編程方式卸載android系統應用程序?

[英]How to uninstall android system app programmatically?

我可以獲得安裝的應用程序列表(用戶和系統應用程序)。 我也可以卸載用戶應用程序,但是不能卸載系統應用程序。

有什么方法可以卸載系統應用程序? 如果手機已經扎根,那么以下代碼可以工作嗎?

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

您可以使用以下命令執行根命令:

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訪問權限才能刪除systemvendor應用程序。

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

在Rooted Device上嘗試...有效

        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();

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM