BAAS Docs
Reference

Reporting Issues and Uninstalling

Prepare logs, screenshots, profile information, reproduction steps, and uninstall BAAS cleanly.

When reporting an issue, the goal is not to describe a feeling; it is to help maintainers locate the failing layer: Tauri client, backend service, ADB/emulator, screenshot recognition, task logic, scheduler, or update source.

Check Before Reporting

Before opening an issue or asking for help, confirm:

CheckNotes
VersionClient and backend are up to date
ConfigurationEmulator, server, screenshot method, and control method match the docs
ReproductionThe issue is repeatable or its pattern is clear
LogsFull logs are preserved, not only the final line
ScreenshotsGame screen, config dialog, and BAAS logs are included
RiskResource-spending tasks are stopped

What to Provide

Issue TypeRequired Material
Stuck on a page1280x720 game screenshot, BAAS logs, task name
Stage route stuckScreen recording from task start to stuck point, with game and logs visible
Configured task did not runFeature config screenshot, scheduler screenshot, logs
Unconfigured task ranCurrent profile, queue, scheduler settings, logs
ADB cannot connectEmulator type, ADB port, detection result, backend logs
Update failedUpdate source, SHA test result, installer logs

Screenshot guidance

Prefer lossless PNG for game screenshots. For recordings, keep the game window and BAAS logs visible together.

Locate Profile Files

Backend profiles usually live under the backend install directory's config folder. Each subdirectory maps to a profile; config.json contains the name shown in the UI.

Legacy documentation example for locating BAAS profile files

The current Tauri client should use profile export when possible. Export a .zip, then review it for secrets before sharing.

Privacy and Safety

Do not publish:

  • BAAS key.
  • MirrorC CDK.
  • Private repository, proxy, or acceleration source.
  • Local usernames or paths you do not want public.
  • Sensitive game account details.

If maintainers need a profile, send it privately and include the task name plus reproduction steps.

Uninstall

BAAS has two parts:

PartUninstall Method
Tauri clientUse the system app uninstaller, or delete the portable directory
BAAS backend directoryStop backend and ADB processes, then delete the backend install directory

If the backend directory cannot be removed:

  1. Close BAAS Tauri.
  2. Open Task Manager.
  3. End remaining python.exe, adb.exe, and emulator-related processes.
  4. Delete the backend install directory again.

For migration to another computer, prefer profile export/import. Copying the whole backend directory can work but also carries local paths, runtime files, and cache.

On this page