此为ps静默卸载
2022-02-23 11:56:17 19B ps
1
需要framework.jar包。调用方法:Intent intent =new Intent(this,MyService.class); intent.putExtra("package",packet.getPackagename()); startService(intent);
2022-02-23 09:16:44 4KB Android免Root静默卸载
1
详情见:Android 静默安装和静默卸载(系统层) http://blog.csdn.net/zhouyuanjing/article/details/78507606 安装: Intent intent = new Intent("android.intent.action.SILENT_PACKAGE_INSTALL"); intent.putExtra("silent_install_file", "/sdcard/Helloworld.apk"); intent.putExtra("silent_install_auto_start", true);//是否安装并启动 intent.putExtra("silent_install_start_clazz", "com.example.helloworld.MainActivity");//如果安装并启动,则需指定activityName sendBroadcast(intent); 卸载: Intent intent = new Intent("
2021-11-06 13:54:22 75KB 静默安装卸载
1
Android 调用系统代码实现静默安装及卸载(基于api 25)
2021-09-18 17:04:03 112.91MB 静默安装 静默卸载 安卓7.1 非root权限
1
8.0 9.0 10.0静默安装和卸载的功能
一个静默卸载Chrome浏览器小工具
1
Office2013静默卸载
2021-08-22 13:03:01 447KB Office2013静默卸载
1
Office_Project_2013_professional静默卸载
2021-08-22 13:03:00 447KB project2013静默卸载 project卸载
1
Office_Visio_2013_professional静默卸载
2021-08-22 13:02:59 447KB Visio Visio卸载 Visio_2013静默卸载
1
详情见:Android 静默安装和静默卸载(系统层) http://blog.csdn.net/zhouyuanjing/article/details/78507606 安装: Intent intent = new Intent("android.intent.action.SILENT_PACKAGE_INSTALL"); intent.putExtra("silent_install_file", "/sdcard/Helloworld.apk"); intent.putExtra("silent_install_auto_start", true);//是否安装并启动 intent.putExtra("silent_install_start_clazz", "com.example.helloworld.MainActivity");//如果安装并启动,则需指定activityName sendBroadcast(intent); 卸载: Intent intent = new Intent("android.intent.action.SILENT_PACKAGE_DELETE"); intent.putExtra("silent_delete_package", "com.example.helloworld");//指定需要卸载apk的包名 sendBroadcast(intent);
2021-05-28 16:43:54 104KB 静默安装卸载
1