Created
November 26, 2019 10:47
-
-
Save albertodebortoli/5aa2ef059624e974651a7305a87843eb to your computer and use it in GitHub Desktop.
used by 'A Smart Feature Flagging System for iOS' article on Medium
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
{ | |
"ui_customization": { | |
"display_red_view": { | |
"Title": "Display Red View", | |
"Description": "shows a red view in the main view controller", | |
"Group": "UI Customization", | |
"Value": false | |
}, | |
... | |
"red_view_alpha_component": { | |
"Title": "Red View Alpha Component", | |
"Description": "defines the alpha level of the red view", | |
"Group": "UI Customization", | |
"Value": 1.0 | |
}, | |
"label_text": { | |
"Title": "Label Text", | |
"Description": "the title of the main label", | |
"Group": "UI Customization", | |
"Value": "Test value" | |
} | |
}, | |
"general": { | |
"greet_on_app_did_become_active": { | |
"Title": "Greet on app launch", | |
"Description": "shows an alert on applicationDidBecomeActive", | |
"Group": "General", | |
"Value": false | |
}, | |
... | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment