How does androidx app startup improve the cold start time?

Viewed 297

In newly released library of App startup in android jetpack , I am confused in the point of Content Provider what is the role of the content provider while initializing the library when the application starts ? Can anyone explain in brief about this?

1 Answers

App Startup provides a more performant way to initialize components at app startup and explicitly define their dependencies. which is better than using content providers

Related