You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/apps/creating-apps.md
+5-1Lines changed: 5 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -51,7 +51,7 @@ In `MANIFEST.JSON`, put:
51
51
"long_description": "Demonstrates the simplest app.",
52
52
"fullname": "com.micropythonos.helloworld",
53
53
"version": "0.0.2",
54
-
"category": "development",
54
+
"categories": ["Development"],
55
55
"activities": [
56
56
{
57
57
"entrypoint": "hello.py",
@@ -67,6 +67,10 @@ In `MANIFEST.JSON`, put:
67
67
}
68
68
```
69
69
70
+
Use `"categories"` (always a list, even for a single category). Each category string is normalized to title case automatically.
71
+
72
+
The deprecated single-string `"category"` field is still supported but may be removed in a future release. Apps should migrate to `"categories"`.
73
+
70
74
### Services
71
75
72
76
Apps can also declare **services** — background components that run at boot time with no user interface. Services are defined in the `"services"` array of the manifest:
0 commit comments