Skip to content

Instantly share code, notes, and snippets.

@saurabharora90
Created June 19, 2020 18:50
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save saurabharora90/d256c257454f1f7b2f417a466360c661 to your computer and use it in GitHub Desktop.
Save saurabharora90/d256c257454f1f7b2f417a466360c661 to your computer and use it in GitHub Desktop.
var completableList: MutableList<Completable> = ArrayList<Completable>()
for (initializer in appComponent.getInitializers()) {
completableList.add(initializer.initialize(context))
}
Completable.mergeDelayError(completableList)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment