1
0
Fork 0

No issue: correct position of StartupTimeline; add warning.

master
Michael Comella 2020-07-08 16:39:07 -07:00 committed by Michael Comella
parent 445593b719
commit fcb84d940a
2 changed files with 3 additions and 2 deletions

View File

@ -207,7 +207,6 @@ open class HomeActivity : LocaleAwareAppCompatActivity(), NavHostActivity {
webExtensionPopupFeature,
StartupTimeline.homeActivityLifecycleObserver
)
StartupTimeline.onActivityCreateEndHome(this)
if (shouldAddToRecentsScreen(intent)) {
intent.removeExtra(START_IN_RECENTS_SCREEN)
@ -215,6 +214,8 @@ open class HomeActivity : LocaleAwareAppCompatActivity(), NavHostActivity {
}
captureSnapshotTelemetryMetrics()
StartupTimeline.onActivityCreateEndHome(this) // DO NOT MOVE ANYTHING BELOW HERE.
}
@CallSuper

View File

@ -38,7 +38,7 @@ class IntentReceiverActivity : Activity() {
intent.stripUnwantedFlags()
processIntent(intent)
StartupTimeline.onActivityCreateEndIntentReceiver()
StartupTimeline.onActivityCreateEndIntentReceiver() // DO NOT MOVE ANYTHING BELOW HERE.
}
fun processIntent(intent: Intent) {