ReClashDownload

Downloads

Build it or download it

Below is a live file list of the latest release, straight from GitHub. If there is no release yet the page says so instead of handing you a dead link.

GPL-3.04 platformsSHA256

01latest release

Your platform

Detecting…

Guessed from your browser and can be wrong — the full file list is always below.

All releasesGitHub

Asking GitHub…
02what runs where

Four platforms, one set of rules.

Windows

Installer or portable ZIP

  • x64
  • ARM64

Windows 10 and later. The portable build needs no administrator rights, but TUN mode does.

macOS

DMG

  • Apple silicon
  • Intel

The build is not App Store signed: on first launch open it from the context menu → “Open”.

Linux

AppImage (x64), DEB, RPM, pacman

  • x64
  • ARM64

The AppImage runs without installing — remember chmod +x. DEB and RPM set up the TUN helper themselves.

Android

APK

  • arm64-v8a
  • armeabi-v7a
  • x86_64

For most phones — arm64-v8a. Ships a Quick Settings tile, home-screen widgets and Always-on VPN.

There is no iOS build: the App Store does not admit clients of this kind without a separate developer programme. Claiming one here would be a lie.

03verification

Downloaded it? Check it.

Every release ships a SHA256SUMS file. Thirty seconds of checking is worth it: a tampered VPN client is the worst thing that can happen to your traffic.

The file is not uploaded anywhere — the hash is computed right in your browser.

Expected hash or SHA256SUMS contents

Choose a file to compute its hash.

If the hash matches, the file is the right one. If it does not — do not run it, and report it in issues.

…or verify in a terminal

Linux / macOS

sha256sum -c SHA256SUMS --ignore-missing

Windows (PowerShell)

Get-FileHash .\ReClash-<version>-windows-amd64-setup.exe -Algorithm SHA256
04from source

Do not wait for a release — build it.

This is the most honest way to trust a client: you can see what you are building.

  • Flutter (stable channel) and Go — the mihomo core is built from source.
  • Windows: GCC and Inno Setup for the installer.
  • macOS: Node.js for appdmg.
  • Linux: the packager asks for administrator rights to pull native dependencies.
git clone https://github.com/Hoxiee/ReClash.git
cd ReClash
flutter pub get
dart run setup.dart            # host platform
dart run setup.dart android    # APK
# → dist/

Details are in CONTRIBUTING.md.