Created
October 15, 2019 16:30
-
-
Save Danyaga/1a60ff080efe9c75c5ae555406450a17 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
DeepLinks.prepareWith(this) { | |
GJPoolsManager.main { | |
if (GJPrepareContentProvider.isPrepared) { | |
this.log("${GJPrepareContentProvider::class.java.simpleName} is prepared, go forward.") | |
this.handleRouting() | |
return@main | |
} | |
GJPrepareContentProvider.onPrepared = { | |
this.log("${GJPrepareContentProvider::class.java.simpleName} has completed preparation phase, go forward.") | |
GJPoolsManager.main { this.handleRouting() } | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment