Preserve shortcuts to old launcher activity

Add an activity alias for RoutingActivity that points to the new
launcher activity. Fixes #2878. Closes #2887.
This commit is contained in:
Veeti Paananen 2015-04-04 02:57:28 +03:00 committed by Jake McGinty
parent efb4f388a5
commit 86253f3772
1 changed files with 7 additions and 2 deletions

View File

@ -95,14 +95,19 @@
<activity android:name=".ConversationListActivity"
android:label="@string/app_name"
android:launchMode="singleTask"
android:configChanges="touchscreen|keyboard|keyboardHidden|orientation|screenLayout|screenSize">
android:configChanges="touchscreen|keyboard|keyboardHidden|orientation|screenLayout|screenSize"
android:exported="true" />
<activity-alias android:name=".RoutingActivity"
android:targetActivity=".ConversationListActivity"
android:exported="true">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</activity-alias>
<activity android:name=".ConversationActivity"
android:windowSoftInputMode="stateUnchanged"