A form engine for android, aim to create a codeless JSON only way of creating android form, for data intake from android device. The form will be reconfigurable, easy to setup and logic enabled. This project is in early development and some of the key component may change in future.
app folder contain a sample app along with UI testing activites.
To create a simple form with checkbox and text input use the following json config
{
"formId": "sample",
"fields": [
{
"@type": "text",
"fieldId": "sampletext",
"name": "Preferred Name"
},
{
"@type": "checkbox",
"fieldId": "samplecb",
"name": "Read and Agree"
}
]
}
MIT