manager: Clean code & bump AGP version

This commit is contained in:
ShirkNeko
2025-08-25 17:28:51 +08:00
parent 1af8a87876
commit 8c8f344161
56 changed files with 27 additions and 279 deletions

View File

@@ -23,8 +23,7 @@ public class UltraShellHelper {
return result.contains("exists");
}
public static boolean CopyFileTo(String path, String target) {
String result = runCmd("cp -f '" + path + "' '" + target + "' 2>&1");
return !result.contains("cp: ");
public static void CopyFileTo(String path, String target) {
runCmd("cp -f '" + path + "' '" + target + "' 2>&1");
}
}