🔥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.
能否支持延迟初始化?
如果支持: 假设 A 延迟初始化, B 依赖了 A ,( A, B 都必须运行在主线程) 那么 B 会等到 A 延迟初始化完毕 ,B 才会执行吗?