diff options
author | Daniel Gultsch <daniel.gultsch@rwth-aachen.de> | 2014-01-30 16:42:35 +0100 |
---|---|---|
committer | Daniel Gultsch <daniel.gultsch@rwth-aachen.de> | 2014-01-30 16:42:35 +0100 |
commit | 6c5c3ac2decac75ec3208d47912e67c4e1a33548 (patch) | |
tree | c6cdcc5d76608369da08eb76891c48ffefbb9a48 /src/de/gultsch/chat/ui | |
parent | ad11dab6359a1eb2b6921d36117093066999fb96 (diff) |
first draft on xml parser and communication. a long way to go. code definitly not perfect. will refactor asap
Diffstat (limited to 'src/de/gultsch/chat/ui')
-rw-r--r-- | src/de/gultsch/chat/ui/XmppActivity.java | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/de/gultsch/chat/ui/XmppActivity.java b/src/de/gultsch/chat/ui/XmppActivity.java index ce65ab5e..66c92b72 100644 --- a/src/de/gultsch/chat/ui/XmppActivity.java +++ b/src/de/gultsch/chat/ui/XmppActivity.java @@ -31,6 +31,7 @@ public abstract class XmppActivity extends Activity { @Override protected void onStart() { + startService(new Intent(this, XmppConnectionService.class)); super.onStart(); if (!xmppConnectionServiceBound) { Intent intent = new Intent(this, XmppConnectionService.class); |