Skip to main content
Masamune logo

Masamune

Local, verified Morphe APK builds configured and monitored from a terminal UI.

GitHub | Releases | Issues

Python Java uv


Masamune is a Textual terminal interface for building Morphe APKs from local APK/split inputs or verified stock downloads.

It verifies inputs, merges splits, resolves Morphe tooling, applies patches, signs outputs, and optionally packages modules. Downloads are explicit; Start build never performs network activity.

Preview

Masamune preview

Requirements

Requirement Version Notes
Python 3.11–3.13 Runtime and development support.
Java 21+ Required by Morphe CLI, APKEditor, and uber-apk-signer.
uv latest Recommended for installation and development.

Windows and Linux are supported. Morphe CLI, patch bundles, APKEditor, and uber-apk-signer are prepared in the user cache when a build starts.

Features

  • Local APK input: native APK and folder pickers; build input stays local-only.
  • Explicit verified downloads: Google Play → APKMirror → Direct, available from Downloads and tracked in the Downloaded library view.
  • Input verification: package identity, version, version code, architecture, split coverage, hashes, and signing certificates are checked before use.
  • Config-driven builds: apps, architectures, versions, patch sources, and build modes live in morphe.toml.
  • Morphe patch workflow: discover patches, select exact patch sets, and edit configurable patch options.
  • APK and module output: build patched APKs plus optional deterministic Magisk/KernelSU modules.
  • Background execution: current stage, per-job status, redacted events, and build logs remain visible while tools run.
  • Signing controls: auto-generated per-user keystore, or an explicit private keystore for real signing.
  • Build history: completed, failed, and cancelled builds remain available with output paths and summaries.
  • Safe cache cleanup: inspect cache areas and remove only disposable data.
  • Atomic publication: existing outputs are never overwritten; failed builds publish nothing.
  • Terminal-native UI: keyboard navigation, command palette, themes, compact sidebar, and reduced-motion support.

Install

From PyPI

uv tool install masamune-tui
masamune

From source

git clone https://github.com/Villoh/masamune.git
cd masamune
uv sync
uv run masamune

Running masamune without arguments opens the TUI. The explicit masamune tui form accepts launch options.

Configure local APKs

Create morphe.toml:

[toolchain]
morphe-source = "MorpheApp/morphe-desktop"
morphe-version = "latest"
patches-source = "MorpheApp/morphe-patches"
patches-version = "latest"

[[apps]]
package = "com.google.android.youtube"
name = "YouTube"
source-dir = "C:/Users/me/Downloads/youtube-splits"
version = "auto"
arch = "arm64-v8a"
build-mode = "apk"
include-patches = ["GmsCore support", "SponsorBlock"]

source-dir is optional. Build source precedence is:

  1. Configured source-dir.
  2. Matching verified APK/split set from Downloads.
  3. Native picker if no verified download exists.

Select an APK to use its containing directory, or select a folder directly. Use {arch}, {abi}, or {module} placeholders for architecture-specific local directories.

The TUI writes validated configuration changes atomically. Unsupported TOML fields remain safe to edit manually.

Launch options

masamune tui \
  --config morphe.toml \
  --cache /path/to/cache \
  --output build
Option Default Meaning
--config PATH User config path Configuration displayed and edited by TUI.
--cache PATH Platform cache root Toolchain, patch, and build cache.
--output PATH build Atomic build publication directory.
--keystore PATH Generated per-user key under cache Optional external signing keystore.
--keystore-alias ALIAS masamune Signing alias.

Private keystore passwords are read only from MORPHE_KEYSTORE_PASSWORD. They are never displayed or stored by TUI.

Interface

View Key Purpose
Dashboard 1 Inspect and edit configured applications.
Bundles 2 Discover supported applications from patch sources.
Downloads 3 Resolve versions and download verified stock APKs.
Downloaded 4 Browse, verify, open, and delete downloaded APK sets.
Build 5 Review parameters, start builds, and monitor results.
Builds 6 Review persisted build history and outputs.
Patches 7 Discover patches and save exact selections.
Cache 8 Inspect cache paths and remove disposable work.
Key Action
Ctrl+B Toggle compact sidebar.
Ctrl+P Open command palette.
? Show available keys.
T Open theme selector.
Q Quit.

Download flow

Downloads require an explicit action in Downloads (3). User can choose Automatic (Google Play → APKMirror → Direct), Google Play, APKMirror, or Direct. Destination is fixed at %LOCALAPPDATA%\\masamune\\downloads on Windows (and the platform data equivalent). Downloads view resolves versions from Morphe patch compatibility and lets the user choose any supported version manually. The Downloaded view lists verified APK/split sets and supports opening, verifying, and deleting them. Credentials come from goopdl environment variables and never appear in TUI, logs, or provenance. Press Resolve versions to query Morphe patch compatibility, then choose a supported version manually. Every result is independently verified before atomic publication. Builds can use matching downloaded sources automatically when source-dir is not configured; configuration is never changed implicitly.

Build flow

  1. Add or select an application.
  2. Configure source-dir, or download a verified stock APK/split set.
  3. Review source, version, architecture, patches, output, and signing key.
  4. Confirm the build.
  5. TUI verifies inputs, merges splits, applies Morphe patches, signs outputs, and publishes verified artifacts atomically.

Build view reports:

  • pending, running, success, failed, and cancelled states;
  • current stage and per-job state;
  • redacted, scrollable subprocess events;
  • output paths and artifact names;
  • build.log and provenance files in each published build directory.

Only one build runs at a time. Stop build requests cancellation after the current build operation and cleans temporary staging; it does not interrupt arbitrary external tools.

Patch bundles and individual patches

Bundles provides discovery data for supported applications from public patch sources. Add an application to the dashboard or assign a patch source to an existing app without replacing unrelated configuration.

Patches resolves the configured source, lists compatible patches, and saves an exact selection. Configurable patches expose boolean, numeric, and free-text options with upstream defaults and suggestions.

Patch resolution may download Morphe metadata and toolchains into the external cache. It never downloads stock APKs.

Safety model

  • Start build performs no network activity or provider fallback.
  • Downloads run only after user confirmation in Downloads.
  • Google Play, APKMirror, and explicit Direct URLs are independently verified.
  • Original local split APKs remain unchanged.
  • APK metadata, hashes, architecture, and signer identity are verified.
  • Existing output directories are never overwritten.
  • Signing keys are protected from cache cleanup.
  • Sensitive passwords and subprocess output are redacted.
  • Failed builds publish no partial output.

Generated keys are for local builds only. Use an explicit private keystore for distributable builds.

Current limits

The TUI intentionally does not provide:

  • credential storage or display;
  • raw/free-form TOML editing;
  • GitLab patch-source assignment;
  • parallel builds;
  • web mode;
  • runtime PNG rendering;
  • hard cancellation of every external subprocess.

Use the CLI or a text editor for automation and unsupported configuration fields.

Development

uv sync
uv run python -m unittest discover -s tests
uv lock --check
uv build

Detailed interface notes live in docs/tui.md.

License

MIT. See LICENSE.

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

masamune_tui-1.1.0.tar.gz (148.2 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

masamune_tui-1.1.0-py3-none-any.whl (115.8 kB view details)

Uploaded Python 3

File details

Details for the file masamune_tui-1.1.0.tar.gz.

File metadata

  • Download URL: masamune_tui-1.1.0.tar.gz
  • Upload date:
  • Size: 148.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.14

File hashes

Hashes for masamune_tui-1.1.0.tar.gz
Algorithm Hash digest
SHA256 dec4a2281eaf98baaa3384119bd8085f5e48f4796fe86cb4118b39bd81e2971e
MD5 06b78e4c8629332ac26c0ea950d17ee7
BLAKE2b-256 1eb7ae5f7a12450a23e2ea793418b0e2cf696105eed78bb89d41a84df3cd5190

See more details on using hashes here.

Provenance

The following attestation bundles were made for masamune_tui-1.1.0.tar.gz:

Publisher: publish.yml on Villoh/masamune

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file masamune_tui-1.1.0-py3-none-any.whl.

File metadata

  • Download URL: masamune_tui-1.1.0-py3-none-any.whl
  • Upload date:
  • Size: 115.8 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.14

File hashes

Hashes for masamune_tui-1.1.0-py3-none-any.whl
Algorithm Hash digest
SHA256 c49a63bb1a91caed2c29dff84b4dd707803cb37df13b173a8199232902ea67de
MD5 5edd679d4d4b05dadc4de93730d7ddcd
BLAKE2b-256 3a9ced29fb24d819a1983774866fe746331431f2bf77d0f8849a38abae1f3248

See more details on using hashes here.

Provenance

The following attestation bundles were made for masamune_tui-1.1.0-py3-none-any.whl:

Publisher: publish.yml on Villoh/masamune

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page