We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 07c588a commit 7e82b68Copy full SHA for 7e82b68
app/src/main/AndroidManifest.xml
@@ -81,9 +81,14 @@
81
android:theme="@style/AppTheme.NoActionBar"
82
tools:ignore="GoogleAppIndexingWarning">
83
84
+ <!-- relinquishTaskIdentity is required because the intent-filter has the
85
+ DEFAULT category. If relinquishTaskIdentity is false then when the user resumes the
86
+ app from the launcher they are taken back to the SplashActivity, and consequently the
87
+ home fragment in MainActivity. -->
88
<activity
89
android:name=".SplashActivity"
90
android:exported="true"
91
+ android:relinquishTaskIdentity="true"
92
android:theme="@style/Theme.App.Starting">
93
<intent-filter>
94
<action android:name="android.intent.action.MAIN" />
0 commit comments