How to make a StartupActivity to wait for another StartupActivity to finish?
已回答
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?
请先登录再写评论。
You shouldn't rely on specific execution order or even parallelism here. Please combine them into one activity.
I see. Thanks for the reply.