Clear Android Browser History

前端 未结 3 1675
北海茫月
北海茫月 2021-02-10 13:53

I am writing an application for a client that will have several devices that are open to customers to look at and play with. They want to be able to clear the browser history on

3条回答
  •  耶瑟儿~
    2021-02-10 14:31

    If your device is rooted, you can use the command below, to clear all data of the application. I don't know if this is applicable for each device, as it depends on the package manager

    Runtime.getRuntime().exec("su -c /system/bin/pm clear com.android.browser");
    

提交回复
热议问题