• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1{
2  "module": {
3    "name": "com.acts.abilitymultiinstanced",
4    "type": "entry",
5    "srcEntrance": "./ets/Application/AbilityStage.ts",
6    "description": "$string:phone_entry_dsc",
7    "mainElement": "MainAbility",
8    "deviceTypes": [
9        "default",
10        "tablet"
11    ],
12    "deliveryWithInstall": true,
13    "installationFree": false,
14    "uiSyntax": "ets",
15    "pages": "$profile:main_pages",
16    "abilities": [
17      {
18        "name": "com.acts.abilitymultiinstanced.MainAbility",
19        "srcEntrance": "./ets/MainAbility/MainAbility.ts",
20        "description": "$string:phone_entry_main",
21        "icon": "$media:icon",
22        "label": "$string:entry_label",
23        "visible": true,
24        "orientation": "portrait",
25        "launchType": "specified",
26        "skills": [
27          {
28            "actions": [
29              "action.system.home"
30            ],
31            "entities": [
32              "entity.system.home"
33            ]
34          }
35        ]
36      },
37      {
38        "name": "com.acts.abilitymultiinstanced.SecondAbility",
39        "srcEntrance": "./ets/SecondAbility/SecondAbility.ts",
40        "description": "$string:phone_entry_main",
41        "icon": "$media:icon",
42        "label": "$string:entry_label",
43        "visible": true,
44        "orientation": "portrait",
45        "launchType": "standard",
46        "skills": [
47          {
48            "actions": [
49              "action.system.home"
50            ],
51            "entities": [
52              "entity.system.home"
53            ]
54          }
55        ]
56      },
57      {
58        "name": "com.acts.abilitymultiinstanced.ThirdAbility",
59        "srcEntrance": "./ets/ThirdAbility/ThirdAbility.ts",
60        "description": "$string:phone_entry_main",
61        "icon": "$media:icon",
62        "label": "$string:entry_label",
63        "visible": true,
64        "orientation": "portrait",
65        "launchType": "singleton",
66        "skills": [
67          {
68            "actions": [
69              "action.system.home"
70            ],
71            "entities": [
72              "entity.system.home"
73            ]
74          }
75        ]
76      }
77    ]
78  }
79}
80