* Automated update of relay data - Sun Sep 21 06:21:05 UTC 2025
* Automated update of relay data - Sun Sep 28 06:20:40 UTC 2025
* refactor: new close button like ios(but not liquid glass)
* Automated update of relay data - Sun Oct 5 06:20:09 UTC 2025
* Automated update of relay data - Sun Oct 12 06:20:12 UTC 2025
* Automated update of relay data - Sun Oct 19 06:21:51 UTC 2025
* Refactor: Redesign peer and channel list as a bottom sheet
Replaced the right-hand sidebar with a Material 3 `ModalBottomSheet` for displaying mesh peers and channels. This modernizes the UI and improves usability.
- Renamed `SidebarComponents.kt` to `MeshPeerListSheet.kt`.
- Replaced the custom sidebar implementation with `ModalBottomSheet`.
- Added a floating top bar to the sheet that appears on scroll, displaying the title and a close button.
- Updated the row layouts for both channels and peers to use `Surface` for better visual grouping and selection state handling.
- Added a checkmark icon to indicate the currently selected channel or private chat peer.
- Improved styling for section headers, unread badges, and empty-state text.
- Removed the `SignalStrengthIndicator` as it was no longer used.
* Refactor: Remove sidebar state management from ViewModel
This commit removes the state management for the sidebar's visibility from `ChatViewModel` and `ChatState`.
The sidebar's visibility is now a purely UI-level concern and is no longer coupled with the ViewModel's logic. This change simplifies the ViewModel by removing unnecessary LiveData and related methods (`showSidebar`, `hideSidebar`). The back navigation handler has also been updated to remove the case for closing the sidebar.
* Refactor: Replace Sidebar with MeshPeerList Bottom Sheet
* feat: Add nested private chat sheet
* Feat: Enhance UI/UX of LocationNotesSheet
This commit refactors the `LocationNotesSheet` to more closely align with its iOS counterpart, improving both its appearance and user experience.
The layout has been updated to use a `Box` with aligned elements instead of a single `Column`, allowing for a floating input section at the bottom and a floating close button at the top right.
**Key Changes:**
- **Floating Top Bar and Input:**
- The main content is now a `LazyColumn` that scrolls underneath a new floating top bar and a floating input section at the bottom.
- The top bar's background animates from transparent to semi-opaque as the user scrolls, providing a "blur" effect.
- **iOS-Style Close Button:**
- The close button is moved from the header row to the top-right corner of the sheet, where it remains fixed.
- **Structural Refinements:**
- Replaced the main `Column` with a `Box` to manage the layout of the scrollable content, top bar, and input section.
- Removed the `onClose` parameter from `LocationNotesHeader` as the close button is now managed separately.
- Added `statusBarsPadding` to the `ModalBottomSheet` to prevent content from rendering under the system status bar.
- Adjusted spacing and padding for better visual consistency.
* refactor: Use collectAsStateWithLifecycle
Migrates LiveData observation from `observeAsState` to `collectAsStateWithLifecycle` for improved lifecycle-aware state collection in `MeshPeerListSheet`.
This also includes the following related changes:
* Removes an unused `showSidebar` state flow from `ChatViewModel`.
* Replaces fully qualified `com.bitchat.android.ui.splitSuffix` calls with a direct `splitSuffix` call.
* Updates resource string access to use the `R` import.
* feat: Add verification status indicators
- Add peer verification status icons to the peer list.
- Add a button to the channel list to show the verification QR code.
- Remove the unused `SidebarComponents.kt` file.
* Refactor: Add state for mesh peer list visibility
* Refactor: Move mesh peer list state to ViewModel
* refactor: Move QR code icon from channel items to footer
The verification (QR code) icon is relocated from being repeated on each channel list item to a single, centralized position in the sheet's footer.
This icon is now only displayed when not in a location-based channel. The `onShowVerification` parameter has been removed from `ChannelListItem` as it's no longer needed there.
* feat: Show verified status for peers
---------
Co-authored-by: GitHub Action <action@github.com>
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:
Instructions:
- Download the APK: On your Android device, navigate to the link above and download the latest
.apkfile. Open it. - 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.
- Install: Open the downloaded
.apkfile 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,/whostyle 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
-
Clone the repository:
git clone https://github.com/permissionlesstech/bitchat-android.git cd bitchat-android -
Open in Android Studio:
# Open Android Studio and select "Open an Existing Project" # Navigate to the bitchat-android directory -
Build the project:
./gradlew build -
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
- Install the app on your Android device (requires Android 8.0+)
- Grant permissions for Bluetooth and location when prompted
- Launch bitchat - it will auto-start mesh networking
- Set your nickname or use the auto-generated one
- Connect automatically to nearby iOS and Android bitchat users
- Join a channel with
/j #generalor start chatting in public - 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
@nicknameto 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
- BitchatApplication.kt: Application-level initialization and dependency injection
- MainActivity.kt: Main activity handling permissions and UI hosting
- ChatViewModel.kt: MVVM pattern managing app state and business logic
- BluetoothMeshService.kt: Core BLE mesh networking (central + peripheral roles)
- EncryptionService.kt: Cryptographic operations using BouncyCastle
- BinaryProtocol.kt: Binary packet encoding/decoding matching iOS format
- 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
-
Update version information:
// In app/build.gradle.kts defaultConfig { versionCode = 2 // Increment for each release versionName = "1.1.0" // User-visible version } -
Create a signed release build:
./gradlew assembleRelease -
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:
- Performance: Battery optimization and connection reliability
- UI/UX: Additional Material Design 3 features
- Security: Enhanced cryptographic features
- Testing: Unit and integration test coverage
- Documentation: API documentation and development guides
Support & Issues
- Bug Reports: Create an issue with device info and logs
- Feature Requests: Start a discussion
- Security Issues: Email security concerns privately
- iOS Compatibility: Cross-reference with original iOS repo
For iOS-specific issues, please refer to the original iOS bitchat repository.
