4243444546474849505152
all.add(app); } public void add(String path) { if (path.endsWith(".ipa")) { IPAApplication app = IPAApplication.createFrom(new File(path)); all.add(app); } else if (path.endsWith(".app")) { all.add(new APPIOSApplication(path)); } }