Build Instructions

Classification: Developer · Last updated: April 2026

SecureChat is currently a website and documentation project. The Android app source code will be published when Phase 1 development is complete (Q2-Q3 2026). In the meantime, you can build the Chameleon overlay encryption component from source.

Requirements

Prerequisites

Development Environment

The following tools are required to build SecureChat and Chameleon from source.

SecureChat

Main Application

Clone the Repository

$ git clone https://github.com/NeaBouli/securechat $ cd securechat

Note: SecureChat is currently a website + documentation project. The Android app source code will be published when Phase 1 development is complete (Q2-Q3 2026). The repository currently contains the project website, wiki, privacy policy, and technical documentation.

Chameleon

Overlay Encryption

Build from Source

Chameleon is the overlay encryption component that provides an additional encryption layer for SecureChat messages. It can be built independently.

$ git clone https://github.com/NeaBouli/chameleon $ cd chameleon $ ./gradlew assembleDebug # Output APK location: app/build/outputs/apk/debug/app-debug.apk

Verification

Security

Verify Release Signatures

All release builds are signed with the project's release key. You can verify the APK signature using Android's apksigner tool.

$ apksigner verify --print-certs app-release.apk