Go to file
iNPUTmice 236453295c version bump 2014-06-01 19:53:36 +02:00
docs formating 2014-03-23 16:57:47 +01:00
libs Use git submodule with openpgp-api-lib only 2014-05-07 18:52:11 +02:00
res unified crypto messages and made lock icon work for conferences 2014-06-01 19:08:42 +02:00
src/eu/siacs/conversations linked openkeychain install dialog from decrypt messages box 2014-06-01 19:29:57 +02:00
.gitignore added gen dir to gitignore 2014-03-05 21:05:00 +01:00
.gitmodules Use git submodule with openpgp-api-lib only 2014-05-07 18:52:11 +02:00
.project rename in project file 2014-03-05 21:03:46 +01:00
AndroidManifest.xml version bump 2014-06-01 19:53:36 +02:00
CHANGELOG.md updated changelog and readme for the 0.3 release 2014-06-01 19:48:44 +02:00
LICENSE added license file 2014-03-25 01:47:08 +01:00
README.md updated changelog and readme for the 0.3 release 2014-06-01 19:48:44 +02:00
build.xml antifizieren 2014-03-05 16:23:38 +01:00
custom_rules.xml prepared release 2014-03-15 16:42:04 +01:00
proguard-project.txt inital commit 2014-01-24 02:04:05 +01:00
project.properties Use git submodule with openpgp-api-lib only 2014-05-07 18:52:11 +02:00
screenshots.png higher res and different position 2014-03-21 21:50:00 +01:00

README.md

#Conversations Conversations is an open source XMPP (formerly known as Jabber) client for Android 4.0+ smart phones. Google Play

screenshots

##Design principles

  • Be as beautiful and easy to use as possible without sacrificing security or privacy
  • Rely on existing, well established protocols
  • Do not require a Google Account or specifically Google Cloud Messaging (GCM)
  • Require as little permissons as possible

##Features

  • End-to-end encryption with either OTR or openPGP
  • Sending and receiving images
  • Holo UI
  • Syncs with your desktop client
  • Group Chats
  • Address book integration
  • Multiple Accounts / unified inbox

###XMPP Features Conversations works with every XMPP server out there. However XMPP is an extensible protocol. These extensions are standardized as well in so called XEPs. Conversations supports a couple of those to make the overall userexperience better. There is a chance that your current XMPP server does not support these extensions. Therefore to get the most out of Conversations you should consider either switching to an XMPP server that does or - even better - run your own XMPP server for you and your friends. These XEPs are - as of now:

  • XEP-0065: SOCKS5 Bytestreams - or rather mod_proxy65. Will be used to tranfer files if both parties are behind a firewall (NAT).
  • XEP-0138: Stream Compression saves bandwith
  • XEP-0198: Stream Management allows XMPP to surive small network outages and changes of the underlying TCP connection.
  • XEP-0280: Message Carbons which automatically syncs the messages you send to your desktop client and thus allows you to switch seamlessly from your mobile client to your desktop client and back within one conversation.
  • XEP-0237: Roster Versioning mainly to save bandwith on poor mobile connections

##Contributors (In order of appearance)

###Code

###Translations

##FAQ ###General ####How do I install Conversations? Conversations is entirely open source and licensed under GPLv3. So if you are a software developer you can check out the sources from github and use ant to build your apk file.

The more convenient way - which not only gives you automatic updates but also supports the further development of Conversations - is to buy the App in the Google Play Store.

####How do I create an account? XMPP like email for example is a federated protocol which means that there is not one company you can create your 'official xmpp account' with but there are hundreds or even thousands of provider out there. To find one use a web search engine of your choice. Or maybe your univeristy has one. Or you can run your own. Or ask a friend to run one. Once you found one you can use Conversations to create an account. Just select 'register new account on server' within the create account dialog. ####How does the address book integration work? The address bock integration was designed to protect your privacy. Conversations neither uploads contacts from your address book to your server nor fills your address book with unnecessary contacts from your online roster. If you manually add a Jabber ID to your phones address book Conversations will use the name and the profile picture of this contact. To make the process of adding Jabber IDs to your address book easier you can click on the profile picture in the contact detais within Conversations. This will start an add to address book intent with the jabber ID as payload. This doesnt require Conversations to have write permissions on your address book but also doesnt require you to copy past Jabber ID from one app to another. ####How can I change my status You can set an account offline by long pressing on it and select temporarily disable account from the context menu. Other statuses like away, DND and N/A are not supported for simplicity reasons. Users tend to forget their status, other users ignore them and setting the status automatically would mean too much of an impact on privacy. ###Security ####Why are there to end-to-end encryption methods and which one should I choose? In most cases OTR should be the encryption method of choice. It works out of the box with most contacts as long as they are online. However PGP can be in some cases (carbonated messages to multiple clients) be more flexible. ####How do I use openPGP Before you continue reading you should notice that the openPGP support in Conversations is marked as experimental. This is not because it will make the app unstable but because the fundamental concepts of PGP aren't ready for a widespread use. The way PGP works is that you trust Key IDs instead of XMPP- or email addresses. So in theory your contact list should consist of Public-Key-IDs instead of email addresses. But of course no email or xmpp client out there implements these concepts. Plus PGP in the context of instant messaging has a couple of downsides. It is vulnerable to replay attacks, it is rather verbose, and decryping and encrypting takes longer than OTR. It is however asynchronous and works well with carbonated messages.

To use openpgp you have to install the opensource app OpenKeychain (www.openkeychain.org) and then long press on the account in manage accounts and choose renew PGP announcement from the contextual menu. ####How does the encryption for conferences work? For conferences the only supported encryption method is OpenPGP. (OTR does not work with multiple participents.) Every participant has to announce their OpenPGP key. (See answer above). If you would like to send encrypted messages to a conference you have to make sure that you have every participants public key in your OpenKeychain. Right now there is no check in Conversations to ensure that. You have to take care of that yourself. Go to the conference details and touch every key id (The hexadecimal number below a contact). This will send you to OpenKeychain which will assist you on adding the key. This works best in very small conferences with contacts you are already using OpenPGP with. This feature is regarded experimental. Conversations is the only client that uses XEP-0027 with confercenes. (The XEP neither specifically allows nor disallows this.) ###Development ####How do I build Conversations Make sure to have ANDROID_HOME point to your Android SDK

git clone https://github.com/siacs/Conversations.git
cd Conversations
git submodule update --init --recursive
ant clean
ant debug