-
Notifications
You must be signed in to change notification settings - Fork 0
/
build-profile.json5
53 lines (52 loc) · 1.14 KB
/
build-profile.json5
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
{
"app": {
"products": [
{
"name": "default",
"signingConfig": "flySignRelease",
"compatibleSdkVersion": "5.0.0(12)",
"buildOption": {
"strictMode": {
"useNormalizedOHMUrl": true
}
},
//指定HarmonyOS应用/服务目标版本。若没有设置,默认为compatibleSdkVersion
"runtimeOS": "HarmonyOS"
},
{
"name": "debug",
"signingConfig": "flySignDebug",
"compatibleSdkVersion": "5.0.0(12)",
"buildOption": {
"strictMode": {
"useNormalizedOHMUrl": true
}
},
//指定HarmonyOS应用/服务目标版本。若没有设置,默认为compatibleSdkVersion
"runtimeOS": "HarmonyOS"
}
],
"signingConfigs": [
]
},
"modules": [
{
"name": "entry",
"srcPath": "./entry",
"targets": [
{
"name": "default",
"applyToProducts": [
"default"
]
},
{
"name": "debug",
"applyToProducts": [
"debug"
]
}
]
}
]
}