Last active
August 24, 2019 08:27
-
-
Save PetkevichPavel/ba9f4c1fb3af00bc541c82f5b46db74e to your computer and use it in GitHub Desktop.
AN_Cloud Function: Example of handleRcUpdate override in MainActivity.
This file contains 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
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