Last active
May 30, 2020 08:25
-
-
Save juliuscanute/0651fca32f3c48974dbd1cc0ce400ceb to your computer and use it in GitHub Desktop.
Configure Android
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
appConfig { | |
config("FREE") {/*...*/} | |
config("PREMIUM") { | |
switch { | |
key = "A" | |
description = "Set text visibility" | |
switchValue = false | |
} | |
range { | |
key = "B" | |
description = "Set text size" | |
min = 16 | |
max = 72 | |
currentValue = 50 | |
} | |
editable { | |
key = "C" | |
description = "Set current text" | |
currentValue = "Hello iOS!" | |
} | |
choice { | |
key = "D" | |
description = "Set text color" | |
currentChoiceIndex = 0 | |
item { | |
description = "RED" | |
} | |
item { | |
description = "GREEN" | |
} | |
item { | |
description = "BLUE" | |
} | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment