卸载应用 @param packageName 应用包名 @return true success, false fail
(final String packageName)
| 1768 | * @return {@code true} success, {@code false} fail |
| 1769 | */ |
| 1770 | public static boolean uninstallApp(final String packageName) { |
| 1771 | return startActivity(IntentUtils.getUninstallAppIntent(packageName)); |
| 1772 | } |
| 1773 | |
| 1774 | /** |
| 1775 | * 卸载应用 |
nothing calls this directly
no test coverage detected