|
@@ -114,12 +114,6 @@ class MainActivity : BaseActivity() {
|
|
|
private lateinit var navigator: Navigator
|
|
|
|
|
|
override fun onCreate(savedInstanceState: Bundle?) {
|
|
|
- // Do not let the launcher create a new activity http://stackoverflow.com/questions/16283079
|
|
|
- if (!isTaskRoot) {
|
|
|
- finish()
|
|
|
- return
|
|
|
- }
|
|
|
-
|
|
|
// Prevent splash screen showing up on configuration changes
|
|
|
val splashScreen = if (savedInstanceState == null) installSplashScreen() else null
|
|
|
|
|
@@ -142,6 +136,12 @@ class MainActivity : BaseActivity() {
|
|
|
false
|
|
|
}
|
|
|
|
|
|
+ // Do not let the launcher create a new activity http://stackoverflow.com/questions/16283079
|
|
|
+ if (!isTaskRoot) {
|
|
|
+ finish()
|
|
|
+ return
|
|
|
+ }
|
|
|
+
|
|
|
// Draw edge-to-edge
|
|
|
WindowCompat.setDecorFitsSystemWindows(window, false)
|
|
|
|