How to make a StartupActivity to wait for another StartupActivity to finish?

Answered

I have two dumbaware StartupActivity implementations that need to execute in a particular order. Is there a way to make one of them wait for the other to finish before executing apart from combining them into a single StartupActivity?

1
2 comments

You shouldn't rely on specific execution order or even parallelism here. Please combine them into one activity.

0

I see. Thanks for the reply.

0

Please sign in to leave a comment.