diff options
Diffstat (limited to 'README.md')
-rw-r--r-- | README.md | 27 |
1 files changed, 21 insertions, 6 deletions
@@ -1,6 +1,6 @@ #Conversations -Conversations is an open source XMPP (formerly known as Jabber) client for -Android 4.0+ smart phones. +Conversations - the very last word in instant messaging + [![Google Play](http://developer.android.com/images/brand/en_generic_rgb_wo_45.png)](https://play.google.com/store/apps/details?id=eu.siacs.conversations) ![screenshots](https://raw.githubusercontent.com/siacs/Conversations/master/screenshots.png) @@ -8,18 +8,20 @@ Android 4.0+ smart phones. ##Design principles * Be as beautiful and easy to use as possible without sacrificing security or privacy -* Rely on existing, well established protocols +* Rely on existing, well established protocols (XMPP) * 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 +* Intuitive UI that follows Android Design guidelines +* Syncs with desktop client +* Conferences (with support for bookmarks) * Address book integration * Multiple Accounts / unified inbox +* Very low impact on battery life + ###XMPP Features Conversations works with every XMPP server out there. However XMPP is an extensible @@ -56,6 +58,7 @@ These XEPs are - as of now: * [Aitor Beriain](https://github.com/beriain) (Basque) * [Ilia Rostovtsev](https://github.com/rostovtsev) (Russian) * [Jelmer Vernooij](https://github.com/jelmer) (Dutch) +* [Anders Sandblad](https://github.com/andersruneson) (Swedish) ##FAQ ###General @@ -190,9 +193,21 @@ git submodule update --init --recursive ant clean ant debug ``` +####How do I debug Conversations +If something goes wrong Conversations usually exposes very little information in +the UI. (Other than the fact that something didn't work) +However with adb (android debug bridge) you squeeze some more information out of +Conversations. These information are especially useful if you are experiencing +troubles with your connection or with file transfer. +```` +adb -d logcat -v time -s xmppService +```` ####I found a bug Please report it to our issue tracker. If your app crashes please provide a stack trace. If you are experiencing missbehaviour please provide detailed steps to reproduce. Always mention whether you are running the latest Play Store version or the current HEAD. +If you are having problems connecting to your XMPP server your file tranfer +doesn’t work as expected please always include a logcat debug output with your +issue. (See above) |