Skip to content

Instantly share code, notes, and snippets.

@PetkevichPavel
Last active August 24, 2019 08:27
Show Gist options
  • Save PetkevichPavel/ba9f4c1fb3af00bc541c82f5b46db74e to your computer and use it in GitHub Desktop.
Save PetkevichPavel/ba9f4c1fb3af00bc541c82f5b46db74e to your computer and use it in GitHub Desktop.
AN_Cloud Function: Example of handleRcUpdate override in MainActivity.
override fun handleRcUpdate(isItServiceUpdate: Boolean,
isFeatureOnBoardingVisible: Boolean) {
super.handleRcUpdate(isItServiceUpdate, isFeatureOnBoardingVisible)
when {
isItServiceUpdate -> updateUrls()
isFeatureOnBoardingVisible ->
navigateToOnBoardingMenu(true)
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment