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?
Please sign in to leave a comment.
You shouldn't rely on specific execution order or even parallelism here. Please combine them into one activity.
I see. Thanks for the reply.