No description
Find a file
2019-12-05 00:08:33 +01:00
.github update contribute docs 2019-10-11 11:40:02 +02:00
.tx add traditional chinese 2019-06-18 15:08:23 +02:00
assets remove unused apn database and tools 2018-11-30 16:50:27 +01:00
docs no version number needed, use wildcard instead. assumes that the wildcard only fits one file... 2019-12-05 00:08:33 +01:00
gradle/wrapper update gradle wrapper and gradle plugin version 2019-07-09 18:46:52 +02:00
jni update deltachat-core-rust submodule 2019-12-04 10:15:56 +01:00
res update translations 2019-12-04 21:48:03 +01:00
src fix locale key 2019-12-04 12:19:39 +01:00
store fix minor typos 2019-09-25 01:35:34 +02:00
tools add a tool to cleanup core 2019-10-30 10:44:43 +01:00
.gitattributes Initial commit 🌱 2018-08-14 17:20:46 +02:00
.gitignore add x86_64 target 2019-10-02 21:50:16 +02:00
.gitmodules delete old submodule 2019-10-02 22:07:30 +02:00
AndroidManifest.xml remove unused SET_WALLPAPER permission 2019-12-03 16:21:25 +01:00
build.gradle bump version 2019-12-04 11:32:54 +01:00
CHANGELOG.md bump version 2019-12-04 11:32:54 +01:00
Dockerfile Initial commit 🌱 2018-08-14 17:20:46 +02:00
gradle.properties upgrade to androidx support libraries 2019-11-08 01:22:28 +01:00
gradlew Initial commit 🌱 2018-08-14 17:20:46 +02:00
gradlew.bat Initial commit 🌱 2018-08-14 17:20:46 +02:00
LICENSE Initial commit 🌱 2018-08-14 17:20:46 +02:00
ndk-make.sh support sdk20-18 (android4.4-4.3, kitkat and partly jelly bean) 2019-11-14 20:52:36 +01:00
README.md update readme 2019-11-14 12:50:14 +01:00
standards.md fix broken link 2019-09-17 13:36:07 +02:00

Delta Chat Android Client

This is the Android client for Delta Chat. It is available on F-Droid and the Google Play Store. The APK can also be downloaded from GitHub (only for experienced users).

For the core library and other common info, please refer to the Delta Chat Core Library.

Screenshot Chat List Screenshot Chat View

Build

When checking out deltachat-android, make sure also to check out the subproject deltachat-core-rust:

  • When using Git, you can do this initially by $ git clone --recursive https://github.com/deltachat/deltachat-android or later by git submodule update --init --recursive. If you do this in your home directory, this results in the folder ~/deltachat-android which is just fine.

Then, open ndk-make.sh in an editor and follow the instructions to set up a rust build environment. This is needed only once.

After that, call ./ndk-make.sh in the root directory to build core-rust. Afterwards run the project in Android Studio. The project requires API 25.

With chance, that's it :) - if not, read on how to set up a proper development environment.

Install Development Environment

  1. Some libs required by Android Studio may be missing on 64 bit Linux machines Source], so for Ubuntu execute $ sudo apt-get install libc6:i386 libncurses5:i386 libstdc++6:i386 lib32z1 libbz2-1.0:i386 and for Fedora execute $ sudo yum install zlib.i686 ncurses-libs.i686 bzip2-libs.i686.

  2. Download Android Studio from https://developer.android.com (android-studio-ide-...-linux.zip) and unpack the archive which contains a single folder called android-studio; move this folder e.g. to ~/android-studio.

  3. To launch Android Studio for the first time, open a terminal, navigate to ~/android-studio/bin, execute ./studio.sh and use all the standard values from the wizard.

  4. Android Studio now asks you if you want to open an existing project; choose ~/deltachat-android as created in the "Build" chapter (Android Studio starts to build the project, however, there are some steps missing before this will succeed).

  5. If components are missing, click on the corresponding error message and install eg. required SDKs and the "Build-Tools" (you should also find the option at "Tools / Android / SDK Manager / SDK Platforms"). Now the build should succeed - but the app still misses the native part.

  6. Download Android NDK from NDK Archives and extract the archive containing a single folder called android-ndk-r…; move this folder e.g. to ~/android-ndk-r….

  7. Export the folder path to your environment as ANDROID_NDK and add it to PATH. You can achieve this e.g. by adding the following lines to .bashrc export ANDROID_NDK=/home/USERNAME/android-ndk-r… export PATH=$PATH:$ANDROID_NDK.

Credits

The user interface classes are based on the Signal messenger.

License

Licensed GPLv3+, see the LICENSE file for details.

Copyright © 2017-2019 Delta Chat contributors.