12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 |
- {
- "module": {
- "name": "app",
- "type": "entry",
- "description": "$string:module_desc",
- "mainElement": "AppAbility",
- "deviceTypes": [
- "phone",
- "tablet",
- "2in1"
- ],
- "deliveryWithInstall": true,
- "installationFree": false,
- "pages": "$profile:main_pages",
- "abilities": [
- {
- "name": "AppAbility",
- "srcEntry": "./ets/appability/AppAbility.ets",
- "description": "$string:AppAbility_desc",
- "icon": "$media:layered_image",
- "label": "$string:AppAbility_label",
- "startWindowIcon": "$media:startIcon",
- "startWindowBackground": "$color:start_window_background",
- "exported": true,
- "skills": [
- {
- "entities": [
- "entity.system.home"
- ],
- "actions": [
- "action.system.home"
- ]
- }
- ]
- }
- ],
- "extensionAbilities": [
- {
- "name": "AppBackupAbility",
- "srcEntry": "./ets/appbackupability/AppBackupAbility.ets",
- "type": "backup",
- "exported": false,
- "metadata": [
- {
- "name": "ohos.extension.backup",
- "resource": "$profile:backup_config"
- }
- ],
- }
- ]
- }
- }
|