Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有系统级应用程序
设备没有root!INSTALL_PACKAGES并且ACTION_UNINSTALL_PACKAGE权限包含在清单中
INSTALL_PACKAGES
ACTION_UNINSTALL_PACKAGE
我可以静默安装和卸载任何 apk 吗?
我不认为你可以在没有用户确认的情况下卸载应用程序
但卸载应用程序使用以下代码。
Intent intent = new Intent(Intent.ACTION_DELETE); intent.setData(Uri.parse("package:com.example.getgoogleaccount")); startActivity(intent);