A secure, open-source chat app built on the Nostr protocol.
Available on Android · iOS · macOS · Linux · Windows.
Since Nostr servers are heavily spammed, for reliable media hosting we recommend self-hosting your own media distributor using Originless and adding it as your own server in 0xchat.
Requires Flutter 3.29.3.
1. Install dependencies
sh ox_pub_get.sh2. iOS / macOS — install CocoaPods dependencies
cd ios && pod install # iOS
cd macos && pod install # macOS3. Build
flutter build apk # Android
flutter build ios # iOS
flutter build macos # macOS
flutter build linux # Linux
flutter build windows # WindowsBuild and test with Docker (Linux only)
Use the included Dockerfile to build and test in a clean container without installing Flutter or system build dependencies on your machine.
docker build -t oxchat-linux-builder . && docker run --rm -v "$PWD":/workspace -v /tmp/oxchat-pub-cache:/root/.pub-cache oxchat-linux-builder && ./build/linux/x64/release/bundle/oxchat_app_main