config.json 2.2 KB
Newer Older
高曦 已提交
1 2
{
  "app": {
3 4
    "bundleName": "com.acts.distributeddatamgr.pasteboardtest",
    "vendor": "example",
高曦 已提交
5
    "version": {
6
      "code": 1,
高曦 已提交
7 8 9
      "name": "1.0.0"
    },
    "apiVersion": {
10 11 12
      "compatible": 7,
      "target": 9,
      "releaseType": "Release"
高曦 已提交
13 14 15 16
    }
  },
  "deviceConfig": {},
  "module": {
17
    "package": "com.acts.distributeddatamgr.pasteboardtest",
高曦 已提交
18
    "name": ".MyApplication",
19 20
    "mainAbility": "com.acts.distributeddatamgr.pasteboardtest.MainAbility",
    "deviceType": ["phone"],
高曦 已提交
21 22 23
    "distro": {
      "deliveryWithInstall": true,
      "moduleName": "entry",
24 25
      "moduleType": "entry",
      "installationFree": true
高曦 已提交
26 27 28 29 30 31 32 33 34 35 36 37 38
    },
    "abilities": [
      {
        "skills": [
          {
            "entities": [
              "entity.system.home"
            ],
            "actions": [
              "action.system.home"
            ]
          }
        ],
39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56
        "orientation": "unspecified",
        "visible": true,
        "srcPath": "MainAbility",
        "name": ".MainAbility",
        "srcLanguage": "ets",
        "icon": "$media:icon",
        "description": "$string:description_mainability",
        "formsEnabled": false,
        "label": "$string:entry_MainAbility",
        "type": "page",
        "launchType": "standard"
      },
      {
        "orientation": "unspecified",
        "visible": true,
        "srcPath": "TestAbility",
        "name": ".TestAbility",
        "srcLanguage": "ets",
高曦 已提交
57
        "icon": "$media:icon",
58 59 60
        "description": "$string:TestAbility_desc",
        "formsEnabled": false,
        "label": "$string:TestAbility_label",
高曦 已提交
61
        "type": "page",
62
        "launchType": "standard"
高曦 已提交
63 64 65 66
      }
    ],
    "js": [
      {
67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84
        "mode": {
          "syntax": "ets",
          "type": "pageAbility"
        },
        "pages": [
          "pages/index"
        ],
        "name": ".MainAbility",
        "window": {
          "designWidth": 720,
          "autoDesignWidth": false
        }
      },
      {
        "mode": {
          "syntax": "ets",
          "type": "pageAbility"
        },
高曦 已提交
85
        "pages": [
86
          "pages/index"
高曦 已提交
87
        ],
88
        "name": ".TestAbility",
高曦 已提交
89 90 91 92 93 94 95
        "window": {
          "designWidth": 720,
          "autoDesignWidth": false
        }
      }
    ]
  }
96
}