MCPcopy Create free account
hub / github.com/KuhakuPixel/AceTheGame / Install

Method Install

Modder/modder/src/main/java/modder/App.java:240–251  ·  view source on GitHub ↗
(

			@Parameters(paramLabel = "apkDir", description = "Directory that contains apk") String apkDirStr

	)

Source from the content-addressed store, hash-verified

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//

Callers

nothing calls this directly

Calls 1

InstallApkMethod · 0.95

Tested by

no test coverage detected