🔥The Android Startup library provides a straightforward, performant way to initialize components at the application startup. Both library developers and app developers can use Android Startup to streamline startup sequences and explicitly set the order of initialization.
一般首次启动app时,有些启动任务需要在用户同意隐私服务条款后才能进行。 所以启动任务需要分为两组,首先启动一组不需要授权的任务。当用户点击授权后,再启动另一组需要授权的任务。 当我使用两组startUpBuilder.build(this).start().await()启动任务时,会出现任务依赖的问题。 请问能否实现分组执行启动任务?