Simplified Chinese | English
AndroidTreeView is a desktop tool for inspecting, testing, and managing Android devices through ADB. The full app shows device cards, detail pages, mirroring, tools, settings, and updates. The Mini app stays resident, watches for devices, and starts mirroring automatically after authorization.
Current version: v1.0.5. Current verification target: solution build passes, all tests pass, and GitHub Actions creates Windows x64 and macOS Apple Silicon ZIP artifacts for both App and Mini.
- Card-first device overview with serial, model, Android version, battery, charging, temperature, cycle count, connection state, root state, and last refresh time.
- Device detail pages for Overview, Hardware, Battery, System, Storage, Network, Root, Logcat, and Raw Properties.
- Shared scrcpy and ADB stack between the full app and Mini, so mirroring behavior stays in sync.
- Mirror window supports tap/swipe control, Back/Home/Recents buttons, and drag-and-drop APK installation.
- Mini listens for devices and starts mirroring automatically after USB debugging is authorized.
- Main and Mini share ADB, scrcpy, settings, update checks, and update installation services.
- Update automation downloads packages, verifies SHA-256 metadata when available, extracts Windows x64 ZIP packages, and starts a local update script so users are not asked to manually replace files.
- Simplified Chinese and English UI, with Light / Dark / System theme modes.
src/
AndroidTreeView.Models
AndroidTreeView.Core
AndroidTreeView.Adb
AndroidTreeView.Infrastructure
AndroidTreeView.Shared
AndroidTreeView.App
AndroidTreeView.Mini
AndroidTreeView.Mini.Mac
tests/
AndroidTreeView.*.Tests
packaging/
win-x64 / osx-arm64 ZIP packaging and optional WiX MSI packaging
build/
Shared MSBuild targets
Requires the .NET 10 SDK:
dotnet restore AndroidTreeView.sln
dotnet build AndroidTreeView.sln
dotnet test AndroidTreeView.sln
dotnet run --project src/AndroidTreeView.App
dotnet run --project src/AndroidTreeView.MiniIf ADB is not found, the app opens an ADB setup screen. Install Android platform-tools and add it to PATH, or choose adb.exe manually.
- Open Settings > About phone and tap Build number seven times.
- Open Developer options and enable USB debugging.
- Connect the device and accept the USB debugging prompt.
- If the device is Unauthorized or Offline, re-authorize it, check the cable, or restart ADB.
See docs/adb-requirements.md for platform-tools setup and troubleshooting.
- Launch AndroidTreeView.
- Connect an Android device with USB debugging enabled and authorized.
- Use the device cards for status, mirroring, CLI access, and non-destructive tools.
- Use Settings or About to check and install updates.
The product version is currently 1.0.5 and is kept in sync across runtime version, App/Mini assembly metadata, manifest, and the ZIP build script. Official releases are produced only by the GitHub Actions Publish workflow.
Local commands are for packaging validation only:
./packaging/build-update-zip.ps1 -Product App -Rid win-x64
./packaging/build-update-zip.ps1 -Product Mini -Rid win-x64Example output:
artifacts/AndroidTreeView-1.0.5-win-x64.zip
artifacts/AndroidTreeView-1.0.5-osx-arm64.zip
artifacts/AndroidTreeView-Mini-1.0.5-win-x64.zip
artifacts/AndroidTreeView-Mini-1.0.5-osx-arm64.zip
- Full app update key:
android-tree-view-app. - Mini update key:
android-tree-view-mini. NekoIndexUpdateServicechecks the internal update channel and compares semantic versions.UpdateInstallerdownloads, verifies, extracts, and launches the local update script.- Supported Windows updater packages are x64 ZIP files with
release.json; GitHub Releases also contain macOS Apple Silicon ZIPs. - Loose-file ZIP replacement is intentionally rejected.
dotnet build src/AndroidTreeView.App/AndroidTreeView.App.csproj --no-restore
dotnet build src/AndroidTreeView.Mini/AndroidTreeView.Mini.csproj --no-restore
dotnet build src/AndroidTreeView.Mini.Mac/AndroidTreeView.Mini.Mac.csproj --no-restore
dotnet test AndroidTreeView.sln --no-restoreAndroidTreeView is open source under the MIT License.
