callebtc 7025009788
ui: complete the redesign — palette, top bar, composer, About, and a motion pass (#774)
* first pass

* pass 2

* cleanup

* capitalization

* strings

* input bar fixes

* fixes

* notes

* nice

* nicer

* lists

* cleanup

* button

* fixes

* animations

* Fix layout jumpiness in chat and geohash people list

Three separate causes of things moving when they should not:

- Chat lurched whenever a bottom sheet closed. Placement animation is meant
  to soften insertions and removals, but any relayout moves every item --
  a sheet's text field opening the keyboard changes the chat's IME inset,
  and closing it changes it back. Placement animation is now armed only
  briefly around a real change to the message list, so items otherwise
  track the viewport exactly.

- Anon list changed height as participants churned. Rows sized to their
  content, so any reorder could change the card's height; and the card
  sized to the live anon count, which moves constantly in a busy geohash.
  Rows now have an exact height, and a trimmed anon card reserves the full
  capped height regardless of how many are present beyond the cap.

- Anons are now their own trailing section rather than a tail on each of
  "on location" and "teleported in", which had pushed the few recognisable
  names out of view twice over. Self is never grouped as an anon.

Adds 7 tests covering the sectioning and the fixed-length behaviour.

* Group geohash people as People and Anon

Replaces the "on location" / "teleported in" / "anonymous" split with two
sections: peers who announced a nickname, then the anons.

Teleport state was never worth a section of its own -- every row already
carries it as a distinct glyph -- and splitting on it fragmented the short
list people actually read, in a channel where most participants are
anonymous anyway.

Self stays in the People section even when unnamed.

* Key message list state per conversation

Switching channels reused every piece of state in MessagesList, because none
of it was keyed on which conversation was being shown:

- The LazyListState carried the previous channel's scroll offset, so the new
  channel opened at a stale position and then corrected itself.
- hasScrolledToInitialPosition and followIncomingMessages carried over, so a
  channel entered after scrolling up in another one did not land on its
  newest message at all.
- The arrival tracker had never seen the incoming channel's ids, so a
  backlog of six or fewer messages was treated as six simultaneous arrivals
  and each one slid in.
- previousMessageCount carried over, arming placement animation for the
  relayout that the switch itself caused.

All of it is now keyed on a conversationKey derived the same way
displayMessages is. The tracker also detects a list sharing no ids with the
previous one and adopts it silently, which covers /clear and any caller that
does not supply a distinct key.

Adds 4 tests for wholesale replacement, including the case that the burst
cap cannot catch on its own.

* fix location channel layout

* icon

* location sheet

* move location error

* fix location channel lifecycle bug

* remove empty lable

* geist mono

* timestamp no seconds

* new icons

* icons

* cleanup

* mentions

* fix mentions

* grouping of geohash channel list

* colors

* fix mention colors

* Bring private and group chat headers up to the main header's layout

Both conversation headers were built on TopAppBar with a centred title, a
back arrow on the left and everything else crowded into the title slot, at
14sp with 14dp icons. Moving between the timeline and a conversation visibly
shifted the bar's height, insets and type.

Introduces ConversationHeader, built from the main header's own tokens rather
than TopAppBar: same ChatHeaderHeight, same 12/8dp edge insets, leading glyph
in a 44dp slot so it lands exactly where the brand mark does, same -6dp
optical nudge pulling the title toward it, same 17sp label.

- Drops the back button; the close action on the right is the way out.
  Leaving a channel outright already lives on its row in the network sheet,
  so it does not need a second home beside the exit.
- Leading glyph is the transport: globe over the internet, wifi/bluetooth/
  routed on the mesh, matching the main header's channel button.
- Actions are right-aligned and unweighted -- favourite, encryption state,
  close -- so a long title yields space to them instead of pushing them off
  screen.
- Private chat titles use the primary green like every other header label,
  rather than orange for Nostr-reachable peers.

Height and edge insets now belong to each header variant instead of the
ChatFloatingHeader wrapper, which was applying them a second time to the
channel header.

Adds nine spec icons in the existing 20x20 / 1.25-stroke language -- bluetooth,
wifi, routed, close, check, warning, sync, lock_open, envelope -- so the
headers and peer rows no longer mix Material glyphs into the set.

* color
2026-07-27 17:33:11 +02:00
2026-07-27 02:45:07 +02:00
2026-01-15 11:45:22 +07:00
2025-08-04 13:50:03 +02:00
2025-07-08 20:37:46 +02:00
2025-07-08 20:37:46 +02:00
2026-02-03 15:33:56 +01:00
2025-08-29 14:37:35 +02:00

Bitchat Android Logo

Warning

This software has not received external security review and may contain vulnerabilities and may not necessarily meet its stated security goals. Do not use it for sensitive use cases, and do not rely on its security until it has been reviewed. Work in progress.

bitchat for Android

A secure, decentralized, peer-to-peer messaging app that works over Bluetooth mesh networks. No internet required for mesh chats, no servers, no phone numbers - just pure encrypted communication. Bitchat also supports geohash channels, which use an internet connection to connect you with others in your geographic area.

This is the Android port of the original bitchat iOS app, maintaining 100% protocol compatibility for cross-platform communication.

Install bitchat

You can download the latest version of bitchat for Android from the GitHub Releases page.

Or you can:

Get it on Google Play

Instructions:

  1. Download the APK: On your Android device, navigate to the link above and download the latest .apk file. Open it.
  2. Allow Unknown Sources: On some devices, before you can install the APK, you may need to enable "Install from unknown sources" in your device's settings. This is typically found under Settings > Security or Settings > Apps & notifications > Special app access.
  3. Install: Open the downloaded .apk file to begin the installation.

License

This project is released into the public domain. See the LICENSE file for details.

Features

  • Cross-Platform Compatible: Full protocol compatibility with iOS bitchat
  • Decentralized Mesh Network: Automatic peer discovery and multi-hop message relay over Bluetooth LE
  • End-to-End Encryption: X25519 key exchange + AES-256-GCM for private messages
  • Channel-Based Chats: Topic-based group messaging with optional password protection
  • Store & Forward: Messages cached for offline peers and delivered when they reconnect
  • Privacy First: No accounts, no phone numbers, no persistent identifiers
  • IRC-Style Commands: Familiar /join, /msg, /who style interface
  • Message Retention: Optional channel-wide message saving controlled by channel owners
  • Emergency Wipe: Triple-tap logo to instantly clear all data
  • Modern Android UI: Jetpack Compose with Material Design 3
  • Dark/Light Themes: Terminal-inspired aesthetic matching iOS version
  • Battery Optimization: Adaptive scanning and power management

Android Setup

Prerequisites

  • Android Studio: Arctic Fox (2020.3.1) or newer
  • Android SDK: API level 26 (Android 8.0) or higher
  • Kotlin: 1.8.0 or newer
  • Gradle: 7.0 or newer

Build Instructions

  1. Clone the repository:

    git clone https://github.com/permissionlesstech/bitchat-android.git
    cd bitchat-android
    
  2. Open in Android Studio:

    # Open Android Studio and select "Open an Existing Project"
    # Navigate to the bitchat-android directory
    
  3. Build the project:

    ./gradlew build
    
  4. Install on device:

    ./gradlew installDebug
    

Development Build

For development builds with debugging enabled:

./gradlew assembleDebug
adb install -r app/build/outputs/apk/debug/app-debug.apk

Release Build

For production releases:

./gradlew assembleRelease

Android-Specific Requirements

Permissions

The app requires the following permissions (automatically requested):

  • Bluetooth: Core BLE functionality
  • Location: Required for BLE scanning on Android
  • Network: Expand your mesh through public internet relays
  • Notifications: Message alerts and background updates

Hardware Requirements

  • Bluetooth LE (BLE): Required for mesh networking
  • Android 8.0+: API level 26 minimum
  • RAM: 2GB recommended for optimal performance

Usage

Basic Commands

  • /j #channel - Join or create a channel
  • /m @name message - Send a private message
  • /w - List online users
  • /channels - Show all discovered channels
  • /block @name - Block a peer from messaging you
  • /block - List all blocked peers
  • /unblock @name - Unblock a peer
  • /clear - Clear chat messages
  • /pass [password] - Set/change channel password (owner only)
  • /transfer @name - Transfer channel ownership
  • /save - Toggle message retention for channel (owner only)

Getting Started

  1. Install the app on your Android device (requires Android 8.0+)
  2. Grant permissions for Bluetooth and location when prompted
  3. Launch bitchat - it will auto-start mesh networking
  4. Set your nickname or use the auto-generated one
  5. Connect automatically to nearby iOS and Android bitchat users
  6. Join a channel with /j #general or start chatting in public
  7. Messages relay through the mesh network to reach distant peers

Android UI Features

  • Jetpack Compose UI: Modern Material Design 3 interface
  • Dark/Light Themes: Terminal-inspired aesthetic matching iOS
  • Haptic Feedback: Vibrations for interactions and notifications
  • Adaptive Layout: Optimized for various Android screen sizes
  • Message Status: Real-time delivery and read receipts
  • RSSI Indicators: Signal strength colors for each peer

Channel Features

  • Password Protection: Channel owners can set passwords with /pass
  • Message Retention: Owners can enable mandatory message saving with /save
  • @ Mentions: Use @nickname to mention users (with autocomplete)
  • Ownership Transfer: Pass control to trusted users with /transfer

Security & Privacy

Encryption

  • Private Messages: X25519 key exchange + AES-256-GCM encryption
  • Channel Messages: Argon2id password derivation + AES-256-GCM
  • Digital Signatures: Ed25519 for message authenticity
  • Forward Secrecy: New key pairs generated each session

Privacy Features

  • No Registration: No accounts, emails, or phone numbers required
  • Ephemeral by Default: Messages exist only in device memory
  • Cover Traffic: Random delays and dummy messages prevent traffic analysis
  • Emergency Wipe: Triple-tap logo to instantly clear all data
  • Bundled Tor Support: Built-in Tor network integration for enhanced privacy when internet connectivity is available

Performance & Efficiency

Message Compression

  • LZ4 Compression: Automatic compression for messages >100 bytes
  • 30-70% bandwidth savings on typical text messages
  • Smart compression: Skips already-compressed data

Battery Optimization

  • Adaptive Power Modes: Automatically adjusts based on battery level
    • Performance mode: Full features when charging or >60% battery
    • Balanced mode: Default operation (30-60% battery)
    • Power saver: Reduced scanning when <30% battery
    • Ultra-low power: Emergency mode when <10% battery
  • Background efficiency: Automatic power saving when app backgrounded
  • Configurable scanning: Duty cycle adapts to battery state

Network Efficiency

  • Optimized Bloom filters: Faster duplicate detection with less memory
  • Message aggregation: Batches small messages to reduce transmissions
  • Adaptive connection limits: Adjusts peer connections based on power mode

Technical Architecture

Binary Protocol

bitchat uses an efficient binary protocol optimized for Bluetooth LE:

  • Compact packet format with 1-byte type field
  • TTL-based message routing (max 7 hops)
  • Automatic fragmentation for large messages
  • Message deduplication via unique IDs

Mesh Networking

  • Each device acts as both client and peripheral
  • Automatic peer discovery and connection management
  • Store-and-forward for offline message delivery
  • Adaptive duty cycling for battery optimization

Android-Specific Optimizations

  • Coroutine Architecture: Asynchronous operations for mesh networking
  • Kotlin Coroutines: Thread-safe concurrent mesh operations
  • EncryptedSharedPreferences: Secure storage for user settings
  • Lifecycle-Aware: Proper handling of Android app lifecycle
  • Battery Optimization: Foreground service and adaptive scanning

Android Technical Architecture

Core Components

  1. BitchatApplication.kt: Application-level initialization and dependency injection
  2. MainActivity.kt: Main activity handling permissions and UI hosting
  3. ChatViewModel.kt: MVVM pattern managing app state and business logic
  4. BluetoothMeshService.kt: Core BLE mesh networking (central + peripheral roles)
  5. EncryptionService.kt: Cryptographic operations using BouncyCastle
  6. BinaryProtocol.kt: Binary packet encoding/decoding matching iOS format
  7. ChatScreen.kt: Jetpack Compose UI with Material Design 3

Dependencies

  • Jetpack Compose: Modern declarative UI
  • BouncyCastle: Cryptographic operations (X25519, Ed25519, AES-GCM)
  • Nordic BLE Library: Reliable Bluetooth LE operations
  • Kotlin Coroutines: Asynchronous programming
  • LZ4: Message compression (when enabled)
  • EncryptedSharedPreferences: Secure local storage

Binary Protocol Compatibility

The Android implementation maintains 100% binary protocol compatibility with iOS:

  • Header Format: Identical 13-byte header structure
  • Packet Types: Same message types and routing logic
  • Encryption: Identical cryptographic algorithms and key exchange
  • UUIDs: Same Bluetooth service and characteristic identifiers
  • Fragmentation: Compatible message fragmentation for large content

Publishing to Google Play

Preparation

  1. Update version information:

    // In app/build.gradle.kts
    defaultConfig {
        versionCode = 2  // Increment for each release
        versionName = "1.1.0"  // User-visible version
    }
    
  2. Create a signed release build:

    ./gradlew assembleRelease
    
  3. Generate app bundle (recommended for Play Store):

    ./gradlew bundleRelease
    

Play Store Requirements

  • Target API: Latest Android API (currently 34)
  • Privacy Policy: Required for apps requesting sensitive permissions
  • App Permissions: Justify Bluetooth and location usage
  • Content Rating: Complete questionnaire for age-appropriate content

Distribution

  • Google Play Store: Main distribution channel
  • F-Droid: For open-source distribution
  • Direct APK: For testing and development

Cross-Platform Communication

This Android port enables seamless communication with the original iOS bitchat app:

  • iPhone ↔ Android: Full bidirectional messaging
  • Mixed Groups: iOS and Android users in same channels
  • Feature Parity: All commands and encryption work across platforms
  • Protocol Sync: Identical message format and routing behavior

iOS Version: For iPhone/iPad users, get the original bitchat at github.com/jackjackbits/bitchat

Contributing

Contributions are welcome! Key areas for enhancement:

  1. Performance: Battery optimization and connection reliability
  2. UI/UX: Additional Material Design 3 features
  3. Security: Enhanced cryptographic features
  4. Testing: Unit and integration test coverage
  5. Documentation: API documentation and development guides

Support & Issues

For iOS-specific issues, please refer to the original iOS bitchat repository.

Description
bluetooth mesh chat, IRC vibes
Readme
Languages
Kotlin 85.8%
Java 10.1%
Python 2.6%
Shell 1.1%
Rust 0.3%
Other 0.1%