summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--app/src/main/AndroidManifest.xml7
1 files changed, 5 insertions, 2 deletions
diff --git a/app/src/main/AndroidManifest.xml b/app/src/main/AndroidManifest.xml
index cff85e905..0c3685ed1 100644
--- a/app/src/main/AndroidManifest.xml
+++ b/app/src/main/AndroidManifest.xml
@@ -47,10 +47,13 @@
<activity
android:name=".activity.SplashActivity"
- android:configChanges="keyboardHidden|orientation|screenSize"
- android:launchMode="singleTask"
android:label="@string/app_name"
+ android:configChanges="keyboardHidden|orientation|screenSize"
android:theme="@style/Theme.AntennaPod.Dark.Splash">
+ <!-- android:launchMode="singleTask" removed for #2948, so that
+ when app is launched again, the app will go to the last activity users use
+ (if the app has been used recently, e.g., last 30 minutes),
+ rather than always go to MainActivity (launched by SplashActivity here) -->
<intent-filter>
<action android:name="android.intent.action.MAIN"/>
<category android:name="android.intent.category.LAUNCHER"/>