( @Parameters(paramLabel = "apkDir", description = "Directory that contains apk") String apkDirStr )
| 238 | * and put it in a folder with the same name as [package_name] |
| 239 | */ |
| 240 | @Command(name = "install", description = "install all apk in a folder") |
| 241 | void Install( |
| 242 | |
| 243 | @Parameters(paramLabel = "apkDir", description = "Directory that contains apk") String apkDirStr |
| 244 | |
| 245 | ) throws IOException{ |
| 246 | |
| 247 | Adb adb = new Adb(); |
| 248 | Adb.Output out = adb.InstallApk(apkDirStr); |
| 249 | out.strings.forEach(System.out::println); |
| 250 | |
| 251 | } |
| 252 | } |
| 253 | |
| 254 | // |
nothing calls this directly
no test coverage detected