aboutsummaryrefslogtreecommitdiffstats
path: root/src/main/AndroidManifest.xml
diff options
context:
space:
mode:
authorChristian Schneppe <christian@pix-art.de>2018-04-23 21:13:12 +0200
committerChristian Schneppe <christian@pix-art.de>2018-04-23 21:13:12 +0200
commit80064f6040cab219702d8221a052eace5f47661c (patch)
tree67c0676deebe0a6f899989eac3a96db5f4f2a167 /src/main/AndroidManifest.xml
parent44cf4a0ecbfef6303872316d20e4b18444f6932f (diff)
support contact shortcuts
* support contact shortcuts * make ShortcutActivity extends AbstractSearchableListItemActivity * Draw the app icon in the corner of the icon and modify the name of the widget * updated label and icon size
Diffstat (limited to 'src/main/AndroidManifest.xml')
-rw-r--r--src/main/AndroidManifest.xml10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/main/AndroidManifest.xml b/src/main/AndroidManifest.xml
index 28e47675b..c28dbbafe 100644
--- a/src/main/AndroidManifest.xml
+++ b/src/main/AndroidManifest.xml
@@ -131,6 +131,9 @@
android:label="@string/title_activity_start_conversation"
android:configChanges="orientation|screenSize"
android:launchMode="singleTop">
+ <intent-filter>
+ <action android:name="android.intent.action.VIEW" />
+ </intent-filter>
</activity>
<activity
android:name=".ui.WelcomeActivity"
@@ -261,6 +264,13 @@
android:launchMode="singleTask"
android:theme="@style/ConversationsTheme">
</activity>
+ <activity
+ android:name=".ui.ShortcutActivity"
+ android:label="@string/contact">
+ <intent-filter>
+ <action android:name="android.intent.action.CREATE_SHORTCUT" />
+ </intent-filter>
+ </activity>
<activity android:name="com.soundcloud.android.crop.CropImageActivity" />
<activity android:name=".ui.MemorizingActivity" />
<service android:name=".services.ExportLogsService" />