back to home

wireapp / wire-android

🤖 Wire client for Android

234 stars
46 forks
9 issues
KotlinShellGroovy

AI Architecture Analysis

This repository is indexed by RepoMind. By analyzing wireapp/wire-android in our AI interface, you can instantly generate complete architecture diagrams, visualize control flows, and perform automated security audits across the entire codebase.

Our Agentic Context Augmented Generation (Agentic CAG) engine loads full source files into context on-demand, avoiding the fragmentation of traditional RAG systems. Ask questions about the architecture, dependencies, or specific features to see it in action.

Source files are only loaded when you start an analysis to optimize performance.

Embed this Badge

Showcase RepoMind's analysis directly in your repository's README.

[![Analyzed by RepoMind](https://img.shields.io/badge/Analyzed%20by-RepoMind-4F46E5?style=for-the-badge)](https://repomind.in/repo/wireapp/wire-android)
Preview:Analyzed by RepoMind

Repository Overview (README excerpt)

Crawler view

Wire™ This repository is part of the source code of Wire. You can find more information at wire.com or by contacting opensource@wire.com. You can find the published source code at github.com/wireapp/wire, and the apk of the latest release at https://wire.com/en/download/. For licensing information, see the attached LICENSE file and the list of third-party licenses at wire.com/legal/licenses/. If you compile the open source software that we make available from time to time to develop your own mobile, desktop or web application, and cause that application to connect to our servers for any purposes, we refer to that resulting application as an “Open Source App”. All Open Source Apps are subject to, and may only be used and/or commercialized in accordance with, the Terms of Use applicable to the Wire Application, which can be found at https://wire.com/legal/#terms. Additionally, if you choose to build an Open Source App, certain restrictions apply, as follows: a. You agree not to change the way the Open Source App connects and interacts with our servers; b. You agree not to weaken any of the security features of the Open Source App; c. You agree not to use our servers to store data for purposes other than the intended and original functionality of the Open Source App; d. You acknowledge that you are solely responsible for any and all updates to your Open Source App. For clarity, if you compile the open source software that we make available from time to time to develop your own mobile, desktop or web application, and do not cause that application to connect to our servers for any purposes, then that application will not be deemed an Open Source App and the foregoing will not apply to that application. No license is granted to the Wire trademark and its associated logos, all of which will continue to be owned exclusively by Wire Swiss GmbH. Any use of the Wire trademark and/or its associated logos is expressly prohibited without the express prior written consent of Wire Swiss GmbH. Wire Android What is included in the open source client The project in this repository contains the Wire for Android client project. You can build the project yourself. However, there are some differences with the binary Wire client available on the Play Store. These differences are: • the open source project does not include the API keys of 3rd party services. • the open source project links against the open source Wire audio-video-signaling (AVS) library. The binary Play Store client links against an AVS version that contains proprietary improvements for the call quality. Required software In order to build Wire for Android locally, it is necessary to have the following tools installed: • JDK 21 • Android SDK • Android NDK Gradle These are the available tasks via command line: • : Compiles the Wire Android Client • : Assembles the Wire Android Client • : Assembles and runs the Wire Android Client in the connected device. • : Runs all Unit Tests. • : Runs all Acceptance Tests in the connected device. • : Generates a report for test code coverage • : Runs static code analysis on the Wire Android codebase Android Studio Import the project as a gradle project by browsing to the root path of the file of your project's directory. Typical build issues It might be that after cloning the Android project, some build issues appear on your IDE (IntelliJ or Android studio). To avoid most of these, make sure that: • After cloning the Android project, you have run (to init any needed configuration within the embedded Kalium submodule project) • There is a valid SDK path on your AND files pointing to the Android SDK folder. In Mac, that folder can be usually found under . The IDE **will not** create automatically, so you might want to copy/paste the one in the project root • When you've already started working on the project adding some commits, it might occur that your local build breaks, if that is the case, make sure you've updated the submodule reference by running: App flavours We have a few different app flavours with different intended usages. Each app flavour has a different icon background colour to enable easier distinction. To see how they are customised in details, check the flavour configuration file. > [!NOTE] > For custom builds, we overwrite some of the flags, strings, and icons. Check the CUSTOMIZATION.md for details. | Name | Icon background colour | Description / Intended Usage | Logging Enabled | Default Backend | |----------|------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------|-----------------| | Dev | 🔴 (Red) | For developing new features. Bleeding edge. Unstable. Staging Backend. Eats experimental features for breakfast and drinks developers tears as dessert. | ✅ | Wire Staging | | Staging | 🟡 (Orange) | Mainly for QA to test a release-like app with a staging backend. Imitates the Production/Release application, having features flags following the Prod/White app below, but with extra dev tools. | ✅ | Wire Staging | | Internal | 🟢 (Green) | Currently unused (?). It was used in the past and _probably_ should be deleted any time soon. | ✅ | Wire Prod | | Beta | 🔵 (Blue) | Used by internal users within the company as dogfood. Some features that are not yet ready for the general public might be tested here first. | ✅ | Wire Prod | | Prod | ⚪ (White) | The production app available to the general public. | ✖️ | Wire Prod | | F-Droid | ⚪ (White) | Also a production app available to the general public. Published on the F-Droid store, but without any closed-source software. | ✖️ | Wire Prod | Logging > [!IMPORTANT] > Logs on all builds except Prod and F-Droid will be uploaded to a third party service for developer analysis. > > Logs on Prod and F-Droid can be enabled within the application, but they are **…