mirror of https://github.com/espruino/BangleApps
20 lines
580 B
JSON
20 lines
580 B
JSON
{ "id": "contacts",
|
|
"name": "Contacts",
|
|
"version":"0.01",
|
|
"description": "Provides means of storing user contacts, viewing/editing them on device and from the App loader",
|
|
"icon": "app.png",
|
|
"tags": "tool",
|
|
"supports" : ["BANGLEJS2"],
|
|
"allow_emulator": true,
|
|
"readme": "README.md",
|
|
"interface": "interface.html",
|
|
"dependencies": {"textinput":"type"},
|
|
"storage": [
|
|
{"name":"contacts.app.js","url":"contacts.app.js"},
|
|
{"name":"contacts.img","url":"app-icon.js","evaluate":true}
|
|
],
|
|
"data": [
|
|
{"name":"contacts.json","url":"contacts.json"}
|
|
]
|
|
}
|