aboutsummaryrefslogtreecommitdiffstats
path: root/src/main/AndroidManifest.xml
diff options
context:
space:
mode:
authorChristian Schneppe <christian@pix-art.de>2019-01-25 23:16:28 +0100
committerChristian Schneppe <christian@pix-art.de>2019-01-25 23:16:28 +0100
commit52ff46043c9ad94fe55ddd0b6db323ec951456f2 (patch)
treeadd46ef8bae3a216fbfd68a77ded0bd59b273736 /src/main/AndroidManifest.xml
parentce2cf51df08b8b0ad4250c3396975108aa3f5085 (diff)
provide Set as Profile intent
Diffstat (limited to 'src/main/AndroidManifest.xml')
-rw-r--r--src/main/AndroidManifest.xml12
1 files changed, 12 insertions, 0 deletions
diff --git a/src/main/AndroidManifest.xml b/src/main/AndroidManifest.xml
index 9e92dd8bb..cca2c6569 100644
--- a/src/main/AndroidManifest.xml
+++ b/src/main/AndroidManifest.xml
@@ -180,6 +180,17 @@
android:name=".ui.ChangePasswordActivity"
android:label="@string/change_password_on_server" />
<activity
+ android:name=".ui.ChooseAccountForProfilePictureActivity"
+ android:enabled="false"
+ android:label="@string/choose_account">
+ <intent-filter android:label="@string/set_profile_picture">
+ <action android:name="android.intent.action.ATTACH_DATA" />
+ <category android:name="android.intent.category.DEFAULT" />
+
+ <data android:mimeType="image/*" />
+ </intent-filter>
+ </activity>
+ <activity
android:name=".ui.ManageAccountActivity"
android:label="@string/title_activity_manage_accounts"
android:launchMode="singleTask" />
@@ -217,6 +228,7 @@
<intent-filter>
<action android:name="android.intent.action.SEND" />
<action android:name="android.intent.action.SEND_MULTIPLE" />
+
<category android:name="android.intent.category.DEFAULT" />
<data android:mimeType="text/plain" />
</intent-filter>