--- a/AndroidManifest.xml Thu Apr 21 21:05:25 2011 +0200
+++ b/AndroidManifest.xml Sat May 07 12:26:45 2011 +0200
@@ -56,6 +56,15 @@
<action
android:name="com.beem.project.beem.service.XmppConnectionAdapter.CONNECTION_CLOSED" />
</intent-filter>
+ <intent-filter
+ android:label="Beem Account">
+ <action
+ android:name="android.intent.action.VIEW" />
+ <category
+ android:name="android.intent.category.DEFAULT" />
+ <data
+ android:mimeType="vnd.android.cursor.item/vnd.com.beem.project.beem.android.profile" />
+ </intent-filter>
</activity>
<activity
android:name=".ui.ChangeStatus"
@@ -137,8 +146,10 @@
-->
<provider
android:name=".providers.AvatarProvider"
+ android:label="Avatar Provider"
android:authorities="com.beem.project.beem.providers.avatarprovider"
- android:exported="false" />
+ android:syncable="true"
+ android:exported="true" />
<service
android:name=".account.AuthenticatorService"
android:exported="true"
@@ -162,6 +173,9 @@
<meta-data
android:name="android.content.SyncAdapter"
android:resource="@xml/sync_contacts" />
+ <meta-data
+ android:name="android.provider.CONTACTS_STRUCTURE"
+ android:resource="@xml/contacts" />
</service>
<service
android:name="BeemService"