merge
authorDa Risk <darisk972@gmail.com>
Thu, 10 Sep 2009 16:29:28 +0200
changeset 368 b4d1b0652ddb
parent 367 284a4c4e8a11 (diff)
parent 366 76bfb3e8e129 (current diff)
child 369 952c6eeb6493
merge
--- a/AndroidManifest.xml	Tue Sep 08 16:14:44 2009 +0200
+++ b/AndroidManifest.xml	Thu Sep 10 16:29:28 2009 +0200
@@ -2,7 +2,7 @@
 <manifest xmlns:android="http://schemas.android.com/apk/res/android"
 	package="com.beem.project.beem" android:versionCode="1"
 	android:versionName="1.0">
-	<application android:label="@string/app_name" android:icon="@drawable/signal" android:theme="@style/Theme.BEEM.Default">
+	<application android:label="@string/app_name" android:icon="@drawable/signal" android:theme="@style/Theme.BEEM.Default" android:debuggable="true">
 		<activity android:name=".ui.Login" android:label="@string/app_name"
 			android:launchMode="singleTask">
 			<intent-filter>
--- a/src/com/beem/project/beem/service/Contact.java	Tue Sep 08 16:14:44 2009 +0200
+++ b/src/com/beem/project/beem/service/Contact.java	Thu Sep 10 16:29:28 2009 +0200
@@ -94,7 +94,7 @@
     public Contact(final Uri uri) {
 	if (!"xmpp".equals(uri.getScheme()))
 	    throw new IllegalArgumentException();
-	mJID = uri.getSchemeSpecificPart();
+	mJID = uri.getEncodedSchemeSpecificPart();
     }
 
     /**