Created
March 1, 2022 00:46
-
-
Save takahirom/e36b98f74637b468c97a3557337b7d9a to your computer and use it in GitHub Desktop.
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
class HogeActivity { | |
val featureFlags = FeatureFlags() | |
@OptIn(AmazingFeature::class) | |
fun onClick() { | |
if (featureFlags.isAmazingFeaturesEnabled()) { | |
brokenAmazingFeatures() | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment