- Rename test-apps to base-apps with proper manifest.json for each app - Add is_system_app flag to app discovery and Lua API - Fix icon path resolution for /system/icons/ paths - Add layout.lua and layout.rcss for reusable UI components - Update home screen to dynamically load all apps from manifests - Update all app RML files to use layout components - Comprehensive testing framework documentation with JSON action format - Add tests/ directory structure for automated UI testing
20 lines
380 B
JSON
20 lines
380 B
JSON
{
|
|
"id": "com.mosis.camera",
|
|
"name": "Camera",
|
|
"version": "1.0.0",
|
|
"version_code": 1,
|
|
"entry": "camera.rml",
|
|
"icon": "/system/icons/camera.tga",
|
|
"description": "Camera and photo capture",
|
|
"developer": {
|
|
"name": "Mosis Team",
|
|
"email": "dev@mosis.dev"
|
|
},
|
|
"is_system_app": true,
|
|
"permissions": [
|
|
"camera",
|
|
"storage"
|
|
],
|
|
"min_api_version": 1
|
|
}
|