--- a/AndroidManifest.xml Sun Sep 06 23:36:49 2009 +0200
+++ b/AndroidManifest.xml Thu Sep 10 16:27:25 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 Sun Sep 06 23:36:49 2009 +0200
+++ b/src/com/beem/project/beem/service/Contact.java Thu Sep 10 16:27:25 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();
}
/**