/** * Clean Command * Releases all file locks on the project folder so it can be deleted. * * What locks an Android project folder on Windows * ───────────────────────────────────────────────── * 1. Gradle daemons — background JVMs watching build outputs * 2. VS Code language servers — Kotlin LS, Gradle for Java, Java LS * (all run as java.exe and open file handles inside .gradle / .kotlin) * 3. Node.js / npx watchers — jetstart dev file watcher (chokidar) * * Fixes 1+2 by killing every java.exe (they restart automatically when * VS Code needs them). Fix 3 by killing Node processes whose command line * contains the project path. If VS Code has the folder open in its Explorer * panel the user also needs to run File → Close Folder in VS Code. */ interface CleanOptions { build?: boolean; daemonsOnly?: boolean; delete?: boolean; } export declare function cleanCommand(options?: CleanOptions, projectArg?: string): Promise; export {}; //# sourceMappingURL=clean.d.ts.map