This commit is contained in:
hyb1996
2017-12-11 19:10:01 +08:00
parent 6e6cefbb24
commit 25e9c90bf4
4 changed files with 36 additions and 4 deletions

View File

@@ -48,7 +48,7 @@ public class AppUtils {
@ScriptInterface
public boolean launchApp(String appName) {
String pkg = getPackageName(appName);
if(pkg == null)
if (pkg == null)
return false;
return launchPackage(pkg);
}