Private messaging on the Lux Network - A fork of Session Android
Lux Messenger Android is a fork of Session Android, intended to connect to the Lux Network's SessionVM instead of the Oxen network. This app provides end-to-end encrypted messaging with post-quantum cryptographic protection.
Integration Status: In Progress
The Android app currently uses libsession-util for networking, which has hardcoded network endpoints. Full integration with the Lux SessionVM requires modifications to the underlying C++ library.
- Building and running the app
- Core messaging functionality (against Session mainnet)
- Network configuration to connect to Lux SessionVM
- libsession-util modifications for custom network support
- Branding updates (Lux Messenger)
- Android Studio Arctic Fox or later
- Android SDK 21+
- JDK 11+
- Clone the repository:
git clone https://github.com/lux-tel/session-android
cd session-android-
Open in Android Studio
-
Sync Gradle dependencies
-
Build and run
./gradlew assembleDebugSession Android
├── app/ # Main application module
├── libsession-util/ # JNI bindings to C++ library
├── libsignal/ # Signal protocol implementation
└── core-utils/ # Shared utilities
Network Layer
└── libsession-util (C++ via JNI)
└── Hardcoded network endpoints
Similar to iOS, Android uses libsession-util for networking with hardcoded endpoints.
To enable Lux network connectivity:
-
Modify libsession-util (
lux-tel/libsession-util)- Add environment-based configuration
- Support custom seed node URLs
- Support custom file server URLs
-
Update Android JNI bindings
- Pass Lux network configuration to LibSession
- Update UI branding
| Repository | Description |
|---|---|
| luxfi/session | Go SessionVM + API layer |
| luxcpp/session | C++ storage server |
| lux-tel/libsession-util | Native library (needs modification) |
| lux-tel/session-desktop | Desktop client (configured) |
| lux-tel/session-ios | iOS client |
| Directory | Description |
|---|---|
app/src/main/java/org/thoughtcrime/securesms/ |
Main application code |
libsession-util/ |
JNI bindings to C++ library |
libsession/ |
Session-specific crypto/network |
./gradlew assemblePlayDebug./gradlew test- Fork the repository
- Create a feature branch
- Make your changes
- Submit a pull request
GPL-3.0 - Same as upstream Session Android
This project is a fork of Session Android by the Session Technology Foundation.