-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.json
More file actions
29 lines (29 loc) · 753 Bytes
/
Copy pathconfig.json
File metadata and controls
29 lines (29 loc) · 753 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
{
"endpoint" : "webapp" ,
"method" : "POST",
"schema": [
{
"type" : "edittext",
"hint" : "App Name",
"id" : "appname",
"regex" : "[a-zA-Z0-9]",
"maxLength" : "15",
"minLength" : "8",
"default_value" : "Gamoss",
"isRequired" : true,
"note" : "Don't include any special characters"
} ,
{
"type" : "textview",
"size" : "16sp",
"text" : "Programming is love if you know",
"gravity" : "start"
} ,
{
"type" : "button" ,
"action" : "pickImage" ,
"text" : "Pick App Icon" ,
"id" : "icon"
}
]
}