打开 APP @param packageName 应用包名 @return true success, false fail
(final String packageName)
| 1833 | * @return {@code true} success, {@code false} fail |
| 1834 | */ |
| 1835 | public static boolean launchApp(final String packageName) { |
| 1836 | return startActivity(IntentUtils.getLaunchAppIntent(packageName)); |
| 1837 | } |
| 1838 | |
| 1839 | /** |
| 1840 | * 打开 APP |
nothing calls this directly
no test coverage detected